Adding NodeMCU support to Arduino IDE
PreviousTinyML Occupancy Classification Example with Consentium IoTNextAdding ESP32 Support to Arduino IDE
Last updated
// The setup function runs once when you press reset or power the board
void setup() {
// Initialize digital pin 13 (D7) as an output.
pinMode(13, OUTPUT);
}
// The loop function runs over and over again forever
void loop() {
digitalWrite(13, HIGH); // Turn the LED on (HIGH is the voltage level)
delay(1000); // Wait for one second
digitalWrite(13, LOW); // Turn the LED off by making the voltage LOW
delay(1000); // Wait for one second
}