Difference between revisions of "Tuniot: analogRead"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) (Created page with "center|200px|thumb ==Code== ///////////////////////////////// // Generated with a lot of love// // with TUNIOT FOR ESP8266 // // Webs...") |
Onnowpurbo (talk | contribs) (→Code) |
||
| Line 20: | Line 20: | ||
delay(200); | delay(200); | ||
} | } | ||
| + | |||
| + | |||
| + | ==Pranala Menarik== | ||
| + | |||
| + | * [[WeMOS]] | ||
Latest revision as of 13:22, 12 November 2019
Code
/////////////////////////////////
// Generated with a lot of love//
// with TUNIOT FOR ESP8266 //
// Website: Easycoding.tn //
/////////////////////////////////
void setup()
{
Serial.begin(115200);
}
void loop()
{
Serial.println(analogRead(A0));
delay(200);
}