Tuniot: analogRead

From OnnoWiki
Revision as of 13:18, 12 November 2019 by Onnowpurbo (talk | contribs) (Created page with "center|200px|thumb ==Code== ///////////////////////////////// // Generated with a lot of love// // with TUNIOT FOR ESP8266 // // Webs...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Tuniot-analogRead.png


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);
}