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: Relay Control
- - Source Code NOT compiled for: Arduino Uno
- - Source Code created on: 2024-10-20 13:41:40
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* turns on relay when button is pushed */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- #include <EasyButton.h> //https://github.com/evert-arias/EasyButton
- #include <Relay.h> //https://github.com/rafaelnsantos/Relay
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- /***** DEFINITION OF DIGITAL INPUT PINS *****/
- const uint8_t Switch1_PushButton_PIN_D2 = 2;
- /***** DEFINITION OF DIGITAL OUTPUT PINS *****/
- const uint8_t Relay1_RelayModule_Signal_PIN_D3 = 3;
- /***** DEFINITION OF OUTPUT RAW VARIABLES *****/
- bool Relay1_RelayModule_Signal_PIN_D3_rawData = false; // Initialize as false (relay off)
- /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
- // Instance of the EasyButton for the push button
- EasyButton button(Switch1_PushButton_PIN_D2); // Initialize EasyButton with the push button pin
- // Instance of the Relay for the relay module
- Relay relay(Relay1_RelayModule_Signal_PIN_D3, true); // Initialize Relay with the relay pin and Normally Open configuration
- void setup(void)
- {
- Serial.begin(115200); // Initialize Serial for debugging
- Serial.println("Setup started");
- pinMode(Switch1_PushButton_PIN_D2, INPUT_PULLUP); // Set the push button pin as input with pull-up
- pinMode(Relay1_RelayModule_Signal_PIN_D3, OUTPUT); // Set the relay pin as output
- // Initialize the button
- button.begin(); // Start the EasyButton
- button.onPressed([]() { // Lambda function for button press event
- Serial.println("Button pressed");
- Relay1_RelayModule_Signal_PIN_D3_rawData = true; // Set relay state to on
- updateOutputs(); // Refresh output data
- });
- }
- void loop(void)
- {
- button.read(); // Continuously read the status of the button
- relay.loop(); // Call relay loop to manage relay timing
- }
- void updateOutputs()
- {
- digitalWrite(Relay1_RelayModule_Signal_PIN_D3, Relay1_RelayModule_Signal_PIN_D3_rawData); // Update relay state
- }
- /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement