COMPONENTS-
NODE MCU ESP8266
LED X 1
PIN DIAGRAM
CONNECTION-
Download the following Drivers USB to UART
Install the NODE MCU ESP8266 drivers for the Arduino
CODE-
//use the pin numbers 16 and 5 and connect the led to this pin
void setup()
{
pinMode (16,OUTPUT); pinMode(5,OUTPUT); } void loop()
{ digitalWrite(16,1); digitalWrite(5,0); delay(300); digitalWrite(16,0); delay(300); }
*if there is any difficulty in making this project comment below