slowing down the temp system

Cette révision appartient à :
tth 2019-01-27 14:59:26 +01:00
Parent beffb27483
révision 23a8881b5c
1 fichiers modifiés avec 2 ajouts et 1 suppressions

Voir le fichier

@ -12,6 +12,7 @@ int values[NBVAL];
void setup() {
Serial.begin(9600);
pinMode(LED_BUILTIN, OUTPUT);
Serial.print("\n");
delay(2000);
}
/* -------------------------------------------------- */
@ -20,7 +21,7 @@ void updatevalues(void)
int foo;
for (foo=0; foo<NBVAL; foo++) {
values[foo] = analogRead(A0);
delay(50);
delay(500);
}
}
/* -------------------------------------------------- */