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: "Buzzer Melody"
- - Source Code compiled for: Arduino Uno
- - Source Code created on: 2023-12-19 22:30:37
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* play melody of jingle bells one time. */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Arduino.h>
- #include <toneAC.h>
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- void playJingleBellsMelody(void);
- /***** DEFINITION OF DIGITAL OUTPUT PINS *****/
- const uint8_t alarm_ActiveBuzzer_output_PIN_D2 = 2;
- /***** DEFINITION OF MELODY NOTES *****/
- #define NOTE_E4 330
- #define NOTE_G4 392
- #define NOTE_C4 261
- #define NOTE_D4 294
- #define NOTE_F4 349
- void setup(void)
- {
- // Set the buzzer pin as output
- pinMode(alarm_ActiveBuzzer_output_PIN_D2, OUTPUT);
- }
- void loop(void)
- {
- // Play the jingle bells melody once
- playJingleBellsMelody();
- // Wait for a few seconds before playing again
- delay(5000);
- }
- void playJingleBellsMelody(void)
- {
- // Melody notes and durations
- const int melodyNotes[] = {NOTE_E4, NOTE_E4, NOTE_E4, NOTE_E4, NOTE_E4, NOTE_E4, NOTE_E4, NOTE_G4, NOTE_C4, NOTE_D4, NOTE_E4, NOTE_F4, NOTE_F4, NOTE_F4, NOTE_F4, NOTE_F4, NOTE_E4, NOTE_E4, NOTE_E4, NOTE_E4, NOTE_E4, NOTE_D4, NOTE_D4, NOTE_E4, NOTE_D4, NOTE_G4};
- const int melodyDurations[] = {8, 8, 4, 8, 8, 4, 8, 8, 8, 8, 8, 8, 4, 8, 8, 4, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4};
- // Play the melody
- for (int i = 0; i < sizeof(melodyNotes) / sizeof(melodyNotes[0]); i++)
- {
- toneAC(alarm_ActiveBuzzer_output_PIN_D2, melodyNotes[i], melodyDurations[i] * 100);
- delay(melodyDurations[i] * 100);
- noTone(alarm_ActiveBuzzer_output_PIN_D2);
- delay(50);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement