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: EasyButton Library
- - Source Code compiled for: Arduino Uno
- - Source Code created on: 2024-05-06 18:53:23
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* volume controller for Windows with 3 buttons */
- /* (previous track, start/pause track, next track) */
- /* and 4 potenciometers (master volume, volume of */
- /* opera.exe) */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** 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 BUTTON_ONE_PIN = 2;
- const uint8_t BUTTON_TWO_PIN = 4;
- /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
- EasyButton button1(BUTTON_ONE_PIN);
- EasyButton button2(BUTTON_TWO_PIN);
- void onButton1Pressed() {
- Serial.println("Button1 pressed");
- }
- void onButton2Pressed() {
- Serial.println("Button2 pressed");
- }
- void setup(void)
- {
- // put your setup code here, to run once:
- pinMode(BUTTON_ONE_PIN, INPUT_PULLUP);
- pinMode(BUTTON_TWO_PIN, INPUT_PULLUP);
- Serial.begin(115200);
- Serial.println();
- Serial.println(">>> EasyButton multiple buttons example <<<");
- button1.begin();
- button2.begin();
- button1.onPressed(onButton1Pressed);
- button2.onPressed(onButton2Pressed);
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- button1.read();
- button2.read();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement