Advertisement
pleasedontcode

LED Buzzer Control rev_01

Oct 5th, 2024
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /********* Pleasedontcode.com **********
  2.  
  3.     Pleasedontcode thanks you for automatic code generation! Enjoy your code!
  4.  
  5.     - Terms and Conditions:
  6.     You have a non-exclusive, revocable, worldwide, royalty-free license
  7.     for personal and commercial use. Attribution is optional; modifications
  8.     are allowed, but you're responsible for code maintenance. We're not
  9.     liable for any loss or damage. For full terms,
  10.     please visit pleasedontcode.com/termsandconditions.
  11.  
  12.     - Project: LED Buzzer Control
  13.     - Source Code NOT compiled for: ESP32 DevKit V1
  14.     - Source Code created on: 2024-10-05 11:59:36
  15.  
  16. ********* Pleasedontcode.com **********/
  17.  
  18. /****** SYSTEM REQUIREMENTS *****/
  19. /****** SYSTEM REQUIREMENT 1 *****/
  20.     /* The application shall read input from a push */
  21.     /* button and control two LEDs and a passive buzzer, */
  22.     /* leveraging EasyButton for button handling and */
  23.     /* ezBuzzer for sound output. */
  24. /****** END SYSTEM REQUIREMENTS *****/
  25.  
  26. /****** DEFINITION OF LIBRARIES *****/
  27. #include <EasyButton.h> // https://github.com/evert-arias/EasyButton
  28. #include <ezBuzzer.h>   // https://github.com/ArduinoGetStarted/buzzer
  29.  
  30. /****** FUNCTION PROTOTYPES *****/
  31. void setup(void);
  32. void loop(void);
  33. void updateOutputs(void);
  34.  
  35. /***** DEFINITION OF DIGITAL INPUT PINS *****/
  36. const uint8_t StartStop_PushButton_PIN_D4 = 4; // Push button pin
  37.  
  38. /***** DEFINITION OF DIGITAL OUTPUT PINS *****/
  39. const uint8_t LED1_LED_PIN_D13 = 13; // LED1 pin
  40. const uint8_t LED2_LED_PIN_D14 = 14; // LED2 pin
  41. const uint8_t Bzzz_PassiveBuzzer_Signal_PIN_D16 = 16; // Buzzer pin
  42.  
  43. /***** DEFINITION OF OUTPUT RAW VARIABLES *****/
  44. bool LED1_LED_PIN_D13_rawData = 0; // Raw data for LED1
  45. bool LED2_LED_PIN_D14_rawData = 0; // Raw data for LED2
  46. bool Bzzz_PassiveBuzzer_Signal_PIN_D16_rawData = 0; // Raw data for Buzzer
  47.  
  48. /****** DEFINITION OF LIBRARIES CLASS INSTANCES *****/
  49. // EasyButton instance for Start/Stop button
  50. EasyButton startStopButton(StartStop_PushButton_PIN_D4);
  51. // ezBuzzer instance for the buzzer, initialized with the buzzer pin
  52. ezBuzzer buzzer(Bzzz_PassiveBuzzer_Signal_PIN_D16);
  53.  
  54. void setup(void) {
  55.     // Initialize Serial for debugging purposes
  56.     Serial.begin(115200);
  57.    
  58.     // Set pin modes
  59.     pinMode(StartStop_PushButton_PIN_D4, INPUT_PULLUP); // Set button pin as input
  60.     pinMode(LED1_LED_PIN_D13, OUTPUT); // Set LED1 pin as output
  61.     pinMode(LED2_LED_PIN_D14, OUTPUT); // Set LED2 pin as output
  62.     pinMode(Bzzz_PassiveBuzzer_Signal_PIN_D16, OUTPUT); // Set Buzzer pin as output
  63.  
  64.     // Initialize the button
  65.     startStopButton.begin();
  66.     // Add callback function for button press
  67.     startStopButton.onPressed([]() {
  68.         Serial.println("Start/Stop button pressed");
  69.         // Toggle the state of the LEDs and buzzer
  70.         LED1_LED_PIN_D13_rawData = !LED1_LED_PIN_D13_rawData; // Toggle LED1
  71.         LED2_LED_PIN_D14_rawData = !LED2_LED_PIN_D14_rawData; // Toggle LED2
  72.         Bzzz_PassiveBuzzer_Signal_PIN_D16_rawData = !Bzzz_PassiveBuzzer_Signal_PIN_D16_rawData; // Toggle Buzzer
  73.         if (Bzzz_PassiveBuzzer_Signal_PIN_D16_rawData) {
  74.             buzzer.beep(100); // Beep for 100ms when button is pressed
  75.         }
  76.     });
  77. }
  78.  
  79. void loop(void) {
  80.     // Continuously read the status of the button
  81.     startStopButton.read();
  82.    
  83.     // Refresh output data
  84.     updateOutputs();
  85. }
  86.  
  87. void updateOutputs() {
  88.     // Update the state of the LEDs
  89.     digitalWrite(LED1_LED_PIN_D13, LED1_LED_PIN_D13_rawData);
  90.     digitalWrite(LED2_LED_PIN_D14, LED2_LED_PIN_D14_rawData);
  91.    
  92.     // Update buzzer state
  93.     if (Bzzz_PassiveBuzzer_Signal_PIN_D16_rawData) {
  94.         buzzer.loop(); // Call buzzer loop to handle non-blocking behavior
  95.     } else {
  96.         buzzer.stop(); // Stop the buzzer if not active
  97.     }
  98. }
  99.  
  100. /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement