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 Setup
- - Source Code compiled for: Arduino Uno
- - Source Code created on: 2023-12-24 12:53:21
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* Turn Fan on and off from phone */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Arduino.h>
- #include <EasyButton.h>
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- /***** DEFINITION OF PIN ASSIGNMENTS *****/
- const uint8_t BUTTON_PIN = 2;
- /****** DEFINITION OF LIBRARY CLASS INSTANCES *****/
- EasyButton button(BUTTON_PIN);
- // Button pressed callback function
- void buttonPressed()
- {
- Serial.println("Button pressed");
- // Implement code here to turn the fan on or off
- }
- // Double-click callback function
- void sequenceElapsed()
- {
- Serial.println("Double click");
- }
- void setup(void)
- {
- // Initialize Serial for debugging purposes.
- Serial.begin(115200);
- Serial.println();
- Serial.println(">>> EasyButton interrupts example <<<");
- // Initialize the button.
- button.begin();
- // Set up button pressed and double-click handlers
- button.onPressed(buttonPressed);
- button.onSequence(2, 1500, sequenceElapsed);
- // Check if the button pin supports interrupts
- if (button.supportsInterrupt())
- {
- // Enable interrupt for the button
- button.enableInterrupt(buttonPressed);
- Serial.println("Button will be used through interrupts");
- }
- // Set up the button pin as INPUT_PULLUP
- pinMode(BUTTON_PIN, INPUT_PULLUP);
- }
- void loop(void)
- {
- // Read the button state
- button.read();
- // Add your main code here to run repeatedly if needed
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement