COMPONENTS-
NODE MCU ESP8266
LED X 1
PIN DIAGRAM
![](https://static.wixstatic.com/media/a27d24_cec1781b76914a39b60a8c15fa9b15bb~mv2.png/v1/fill/w_980,h_757,al_c,q_90,usm_0.66_1.00_0.01,enc_auto/a27d24_cec1781b76914a39b60a8c15fa9b15bb~mv2.png)
CONNECTION-
Download the following Drivers USB to UART
Install the NODE MCU ESP8266 drivers for the Arduino
![](https://static.wixstatic.com/media/a27d24_c0554450ff554d8b9a34a5acf7306cc7~mv2.jpg/v1/fill/w_980,h_392,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/a27d24_c0554450ff554d8b9a34a5acf7306cc7~mv2.jpg)
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