Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /********* Pleasedontcode.com **********
- Pleasedontcode thanks you for automatic code generation! Enjoy your code!
- - Terms and Conditions:
- You have a non-exclusive, revocable, worldwide, royalty-free license
- for personal and commercial use. Attribution is optional; modifications
- are allowed, but you're responsible for code maintenance. We're not
- liable for any loss or damage. For full terms,
- please visit pleasedontcode.com/termsandconditions.
- - Project: "Button Detection"
- - Source Code NOT compiled for: Arduino Uno
- - Source Code created on: 2025-01-10 14:43:08
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* تنفيذ نظام اكتشاف ضغط الزر باستخدام مكتبة */
- /* EasyButton، مما يضمن إدخالاً موثوقًا به من زر */
- /* الضغط المتصل بالدبوس الرقمي D2 مع تكوين السحب */
- /* لأعلى. */
- /****** END SYSTEM REQUIREMENTS *****/
- /* START CODE */
- /****** DEFINITION OF LIBRARIES *****/
- #include <EasyButton.h> //https://github.com/evert-arias/EasyButton
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- /***** DEFINITION OF DIGITAL INPUT PINS *****/
- const uint8_t w_PushButton_PIN_D2 = 2;
- /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
- EasyButton button(w_PushButton_PIN_D2); // Instance of the button
- // Callback function to be called when the button is pressed.
- void onPressed()
- {
- Serial.println("Button pressed");
- }
- void setup(void)
- {
- // put your setup code here, to run once:
- pinMode(w_PushButton_PIN_D2, INPUT_PULLUP); // Configure pin as input with pull-up
- // Initialize Serial for debugging purposes.
- Serial.begin(115200);
- Serial.println();
- Serial.println(">>> EasyButton pressed example <<<");
- // Initialize the button.
- button.begin();
- // Add the callback function to be called when the button is pressed.
- button.onPressed(onPressed);
- }
- void loop(void)
- {
- // Continuously read the status of the button.
- button.read();
- }
- /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement