slowdown arduino testing sender

This commit is contained in:
tth 2018-12-29 09:49:07 +01:00
parent 654453f0db
commit 4eed817ecb
1 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ void sendvalues(void)
{ {
int foo; int foo;
Serial.print("X "); Serial.print("X");
for (foo=0; foo<NBVAL; foo++) { for (foo=0; foo<NBVAL; foo++) {
Serial.print(" "); Serial.print(" ");
Serial.print(values[foo]); Serial.print(values[foo]);
@ -48,7 +48,7 @@ void sendvalues(void)
void loop() { void loop() {
updatevalues(); updatevalues();
sendvalues(); sendvalues();
delay(1000); delay(2500);
} }
/* -------------------------------------------------- */ /* -------------------------------------------------- */