Using the Modulino Buzzer to play a tune on the Arduino Uno Q.
- User types notes, and duration (default 250ms) into web app
- Web app submits raw notes, and duration to Python over HTTP to the
/playroute - Python converts notes to frequencies, and sends a
listof frequencies, and the duration to the sketch - The sketch receives the frequencies as a
vector, and plays each for a specified duration - The Python also exposes a
/notesroute, that shares the frequency for each note (FFU)