/********* 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: 2024-06-06 13:35:25 ********* Pleasedontcode.com **********/ /****** SYSTEM REQUIREMENTS *****/ /****** SYSTEM REQUIREMENT 1 *****/ /* master slaver encoder motor driver output */ /****** END SYSTEM REQUIREMENTS *****/ /****** DEFINITION OF LIBRARIES *****/ #include //https://github.com/evert-arias/EasyButton /****** FUNCTION PROTOTYPES *****/ void setup(void); void loop(void); void onButtonPressed(void); /***** DEFINITION OF DIGITAL INPUT PINS *****/ const uint8_t encoder_PushButton_PIN_D2 = 2; /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/ EasyButton button(encoder_PushButton_PIN_D2); // Initialize the EasyButton object /****** CALLBACK FUNCTION *****/ void onButtonPressed() { Serial.println("Button pressed"); } void setup(void) { // Initialize Serial for debugging purposes Serial.begin(115200); Serial.println(); Serial.println(">>> EasyButton single button example <<<"); // Initialize the button button.begin(); // Add the callback function to be called when the button is pressed button.onPressed(onButtonPressed); } void loop(void) { // Continuously read the status of the button button.read(); } /* master slaver encoder motor driver output */ /* END CODE */