Advertisement
overvolt

bitchlasagna.ino

Dec 12th, 2018
643
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*
  2.  
  3.   BITCH LASAGNA BY OVERVOLT
  4.   youtube.com/overVoltOfficial
  5.  
  6.   Primo speaker sul d8 / first speaker on d8
  7.   Secondo speaker sul d12 / first speaker on d12
  8.  
  9. */
  10.  
  11.  
  12. #include <Tone.h>
  13.  
  14. Tone tone1;
  15. Tone tone2;
  16.  
  17. void setup() {
  18.   tone1.begin(8);
  19.   tone2.begin(12);
  20. }
  21.  
  22. void loop() {
  23.   tone1.play(NOTE_FS4, 310);
  24.   tone2.play(NOTE_FS3, 795);
  25.   delay(397);
  26.   tone1.play(NOTE_FS4, 310);
  27.   delay(397);
  28.   tone1.play(NOTE_GS4, 310);
  29.   delay(397);
  30.   tone1.play(NOTE_A4, 310);
  31.   delay(200);
  32.   tone2.play(NOTE_A3, 250);
  33.   delay(197);
  34.   tone1.play(NOTE_A4, 310);
  35.   delay(397);
  36.   tone1.play(NOTE_A4, 310);
  37.   delay(397);
  38.   tone1.play(NOTE_D4, 310);
  39.   tone2.play(NOTE_D4, 400);
  40.   delay(397);
  41.   tone1.play(NOTE_D4, 310);
  42.   delay(397);
  43.   tone1.play(NOTE_CS4, 310);
  44.   tone2.play(NOTE_CS4, 750);
  45.   delay(397);
  46.   tone1.play(NOTE_CS4, 310);
  47.   delay(397);
  48.   tone1.play(NOTE_CS4, 310);
  49.   delay(397);
  50.   tone1.play(NOTE_E4, 310);
  51.   delay(207);
  52.   tone2.play(NOTE_E4, 750);
  53.   delay(190);
  54.   tone1.play(NOTE_E4, 310);
  55.   delay(397);
  56.   tone1.play(NOTE_E4, 310);
  57.   delay(397);
  58.   tone1.play(NOTE_E4, 310);
  59.   delay(397);
  60.   tone1.play(NOTE_E4, 310);
  61.   delay(397);
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement