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: esp8266clock
- - Source Code compiled for: Arduino Uno
- - Source Code created on: 2023-11-24 13:43:39
- - Source Code generated by: vijay
- ********* Pleasedontcode.com **********/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Arduino.h>
- #include <EasyButton.h>
- /****** SYSTEM REQUIREMENT 1 *****/
- /* p10wificlock */
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- /***** DEFINITION OF DIGITAL INPUT PINS *****/
- const uint8_t p10rgb_PushButton_PIN_D2 = 2;
- const uint8_t p10rgb_PushButton_PIN_D3 = 3;
- const uint8_t p10rgb_PushButton_PIN_D4 = 4;
- /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
- EasyButton button1(p10rgb_PushButton_PIN_D2);
- EasyButton button2(p10rgb_PushButton_PIN_D3);
- EasyButton button3(p10rgb_PushButton_PIN_D4);
- void onPressed1()
- {
- // Code to be executed when button 1 is pressed
- }
- void onPressed2()
- {
- // Code to be executed when button 2 is pressed
- }
- void onPressed3()
- {
- // Code to be executed when button 3 is pressed
- }
- void setup(void)
- {
- // put your setup code here, to run once:
- pinMode(p10rgb_PushButton_PIN_D2, INPUT_PULLUP);
- pinMode(p10rgb_PushButton_PIN_D3, INPUT_PULLUP);
- pinMode(p10rgb_PushButton_PIN_D4, INPUT_PULLUP);
- button1.begin();
- button1.onPressed(onPressed1);
- button2.begin();
- button2.onPressed(onPressed2);
- button3.begin();
- button3.onPressed(onPressed3);
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- button1.read();
- button2.read();
- button3.read();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement