ESP 8266- External LED Blink



 

#define LED D0           
void setup()

 {

pinMode(LED, OUTPUT);   

}

void loop()

{

digitalWrite(LED, HIGH);                       

delay(1000);           

digitalWrite(LED, LOW);

delay(1000);

}

Comments

Popular posts from this blog

Motherboard form factor

System Bus Types, Functions, and Features

ESP 8266- Ultrasonic Sensor Interfacing