You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
381 B
22 lines
381 B
#include "mdaEPianoData.h"
|
|
|
|
void setup() {
|
|
Serial.begin(38400);
|
|
delay(500);
|
|
Serial.println("START");
|
|
Serial.println(sizeof(epianoData),DEC);
|
|
uint32_t i;
|
|
|
|
for(i=0;i<sizeof(epianoData)/sizeof(uint16_t); i++)
|
|
{
|
|
Serial.print(i,DEC);
|
|
Serial.print(F(" "));
|
|
Serial.println(epianoData[i], DEC);
|
|
}
|
|
}
|
|
|
|
void loop() {
|
|
Serial.println("LOOP");
|
|
delay(10000);
|
|
|
|
}
|
|
|