/**
Mini piano for Arduino.
You can control the colorful buttons with your keyboard:
After starting the simulation, click anywere in the diagram to focus it.
Then pres any key between 1 and 8 to play the piano (1 is the lowest note,
8 is the highest).
Copyright (c) 2021, Uri Shaked, Released under the MIT Lisence.
*/
#include "pitches.h"
#define SPEAKER_PIN 8
const uint8_t buttonPins[] = {12, 11, 10, 9, 7, 6 , 5, 4 };
const int buttonTones []
void setup() {
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
}