add info message
This commit is contained in:
parent
9f33789202
commit
2fcf6f7b73
1 changed files with 6 additions and 3 deletions
|
@ -38,6 +38,12 @@ void setup() {
|
||||||
|
|
||||||
void draw() {
|
void draw() {
|
||||||
clear();
|
clear();
|
||||||
|
|
||||||
|
textSize(30);
|
||||||
|
textAlign(LEFT);
|
||||||
|
text("Press R to start recording.\nPress S to stop recording.",20,height-70);
|
||||||
|
|
||||||
|
|
||||||
int valRange=1024; //maximum value for bargraph scale
|
int valRange=1024; //maximum value for bargraph scale
|
||||||
|
|
||||||
String[] list=readSerial();
|
String[] list=readSerial();
|
||||||
|
@ -70,9 +76,6 @@ void draw() {
|
||||||
fileoutput.flush();
|
fileoutput.flush();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue