Ci-dessous, les différences entre deux révisions de la page.
Les deux révisions précédentes Révision précédente | |||
wiki:tutoriels:grove:light [2018/05/16 14:48] lasmartresa |
wiki:tutoriels:grove:light [2018/06/12 12:51] (Version actuelle) lasmartresa |
||
---|---|---|---|
Ligne 16: | Ligne 16: | ||
<code c> | <code c> | ||
- | A venir | + | void setup() |
+ | { | ||
+ | Serial.begin(9600); | ||
+ | } | ||
+ | |||
+ | void loop() | ||
+ | { | ||
+ | |||
+ | int value = analogRead(A0); | ||
+ | Serial.println(value); | ||
+ | delay(100); | ||
+ | } | ||
</ | </ |