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: Remote
- - Source Code compiled for: Arduino Uno
- - Source Code created on: 2023-10-25 15:02:03
- - Source Code generated by: hetal
- ********* Pleasedontcode.com **********/
- /********* User code review feedback **********
- #### Feedback 1 ####
- - I want more according to my requirements
- ********* User code review feedback **********/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Arduino.h>
- #include <EasyButton.h>
- /****** SYSTEM REQUIREMENT 1 *****/
- const uint8_t Relay_PIN = 3; // Pin for controlling the relay
- const uint8_t PushButton_PIN = 2; // Pin for the push button
- EasyButton pushButton(PushButton_PIN); // Create an instance of the EasyButton library
- void setup(void)
- {
- pinMode(Relay_PIN, OUTPUT); // Set the relay pin as output
- pushButton.begin(); // Initialize the push button
- // Attach a function to be called when the button is pressed
- pushButton.onPressed([]() {
- digitalWrite(Relay_PIN, !digitalRead(Relay_PIN)); // Toggle the relay state
- });
- }
- void loop(void)
- {
- pushButton.read(); // Read the state of the push button
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement