This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset=utf-8"> | |
| <style> | |
| .on { | |
| fill: black; | |
| } | |
| .off { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <Tone.h> | |
| #include <avr/pgmspace.h> | |
| #include "pitches.h" | |
| PROGMEM const uint16_t melody[] = { | |
| NOTE_D3, 0, | |
| NOTE_G3, 0, NOTE_A3, 0, | |
| NOTE_B3, 0, 0, 0, | |
| NOTE_B3, 0, NOTE_D4, 0, | |
| NOTE_A3, 0, 0, 0, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <Tone.h> | |
| #include <avr/pgmspace.h> | |
| #include "pitches.h" | |
| PROGMEM const uint16_t melody[] = { | |
| NOTE_D3, 0, | |
| NOTE_G3, 0, NOTE_A3, 0, | |
| NOTE_B3, 0, 0, 0, | |
| NOTE_B3, 0, NOTE_D4, 0, | |
| NOTE_A3, 0, 0, 0, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <Tone.h> | |
| #include "pitches.h" | |
| const int melody[] = { | |
| NOTE_D3, 0, | |
| NOTE_G3, 0, NOTE_A3, 0, | |
| NOTE_B3, 0, 0, 0, | |
| NOTE_B3, 0, NOTE_D4, 0, | |
| NOTE_A3, 0, 0, 0, | |
| NOTE_A3, 0, NOTE_B3, 0, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "pitches.h" | |
| const int melody[] = { | |
| NOTE_D3, 0, | |
| NOTE_G3, 0, NOTE_A3, 0, | |
| NOTE_B3, 0, 0, 0, | |
| NOTE_B3, 0, NOTE_D4, 0, | |
| NOTE_A3, 0, 0, 0, | |
| NOTE_A3, 0, NOTE_B3, 0, | |
| NOTE_G3, 0, 0, 0, |