Tuniot: analogRead
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);
}