I am so confused!
I now understand how millis() is used to get the LED blinking on it's own cycle, and how it's the better way to go about it since delay() is a blocking function. But I still don't understand how to use it…
void loop {
noteOn(0,note1,100);
//millis() in here?
noteOff(0,note,100);
}
???