2019-01-13 02:26:15 +11:00
|
|
|
/*
|
|
|
|
* lecture des capteurs de temperature LM35
|
|
|
|
*/
|
|
|
|
/* -------------------------------------------------- */
|
|
|
|
|
|
|
|
#define NBVAL 4
|
2019-01-13 03:13:30 +11:00
|
|
|
#define DELAI 10000
|
2019-01-13 02:26:15 +11:00
|
|
|
|
|
|
|
int values[NBVAL];
|
|
|
|
|
|
|
|
/* -------------------------------------------------- */
|
|
|
|
void setup() {
|
|
|
|
Serial.begin(9600);
|
|
|
|
pinMode(LED_BUILTIN, OUTPUT);
|
|
|
|
delay(2000);
|
|
|
|
}
|
|
|
|
/* -------------------------------------------------- */
|
|
|
|
void updatevalues(void)
|
|
|
|
{
|
|
|
|
int foo;
|
|
|
|
for (foo=0; foo<NBVAL; foo++) {
|
|
|
|
values[foo] = analogRead(A0);
|
|
|
|
delay(50);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* -------------------------------------------------- */
|
|
|
|
void sendvalues(void)
|
|
|
|
{
|
|
|
|
int foo;
|
|
|
|
|
|
|
|
Serial.print("T");
|
|
|
|
for (foo=0; foo<NBVAL; foo++) {
|
|
|
|
Serial.print(" ");
|
|
|
|
Serial.print(values[foo]);
|
|
|
|
}
|
|
|
|
Serial.print("\n");
|
|
|
|
}
|
|
|
|
/* -------------------------------------------------- */
|
|
|
|
|
|
|
|
void loop() {
|
|
|
|
updatevalues();
|
|
|
|
sendvalues();
|
|
|
|
delay(DELAI);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -------------------------------------------------- */
|
|
|
|
|