Devices & Components
1
NodeMCU ESP8266 Breakout Board
Software & Tools
Arduino IDE
Project description
Code
Blink Inbuilt LED of NODEMCU
c_cpp
Example code for Blinking Inbuilt LED of NODEMCU
Comments
Only logged in users can leave comments
Devices & Components
NodeMCU ESP8266 Breakout Board
Software & Tools
Arduino IDE
Project description
Code
Blink Inbuilt LED of NODEMCU
c_cpp
Example code for Blinking Inbuilt LED of NODEMCU
1void setup() { 2 // initialize inbuilt LED pin as an output. 3 pinMode(LED_BUILTIN, OUTPUT); 4} 5 6// loop function runs over and over again forever 7void loop() { 8 digitalWrite(LED_BUILTIN, HIGH); // turn the LED on by making the pin 13 HIGH 9 delay(500); // wait for a 0.5 second 10 digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the pin 13 LOW 11 delay(500); // wait for a 0.5 second 12}
Comments
Only logged in users can leave comments