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: "Toggle LED"
- - Source Code NOT compiled for: Arduino Pro Mini 5V
- - Source Code created on: 2024-06-15 10:33:45
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* Develop a button press detection system using the */
- /* EasyButton library. Initialize the button on pin */
- /* D2 with an internal pull-up resistor. On button */
- /* press, toggle an LED on pin D13 and print "Button */
- /* State Changed" to the serial monitor. */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- #include <EasyButton.h> // https://github.com/evert-arias/EasyButton
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- void onPressed(void);
- /***** DEFINITION OF DIGITAL INPUT PINS *****/
- const uint8_t button_PushButton_PIN_D2 = 2;
- const uint8_t led_PIN_D13 = 13;
- /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
- EasyButton button(button_PushButton_PIN_D2); // Initialize EasyButton object with the pin number
- /****** CALLBACK FUNCTION *****/
- void onPressed()
- {
- // Toggle the LED state
- static bool ledState = LOW;
- ledState = !ledState;
- digitalWrite(led_PIN_D13, ledState);
- // Print message to the serial monitor
- Serial.println("Button State Changed");
- }
- void setup(void)
- {
- // Initialize Serial for debugging purposes
- Serial.begin(115200);
- Serial.println();
- Serial.println(">>> EasyButton pressed example <<<");
- // Initialize the LED pin as an output
- pinMode(led_PIN_D13, OUTPUT);
- digitalWrite(led_PIN_D13, LOW); // Ensure the LED is off initially
- // 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