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 Rotation
- - Source Code NOT compiled for: ESP32 DevKit V1
- - Source Code created on: 2024-04-26 04:43:16
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* rotate left or right after press push button */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- #include <EasyButton.h> // https://github.com/evert-arias/EasyButton
- /****** FUNCTION PROTOTYPES *****/
- void setup();
- void loop();
- /***** DEFINITION OF DIGITAL INPUT PINS *****/
- const uint8_t Sensor_PushButton_PIN_D4 = 4;
- /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
- EasyButton button(Sensor_PushButton_PIN_D4); // Instantiate EasyButton object for the push button
- void setup()
- {
- // Setup the push button pin
- pinMode(Sensor_PushButton_PIN_D4, INPUT_PULLUP);
- // Initialize the EasyButton object
- button.begin();
- }
- void loop()
- {
- // Read the state of the button
- button.read();
- // Check if the button is pressed
- if (button.isPressed())
- {
- // Perform action to rotate left or right after pressing the push button
- // Add your code here for rotating left or right
- }
- }
- /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement