Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #define LED_BUILTIN 2 //D4
- void setup() {
- pinMode(LED_BUILTIN, OUTPUT); // Initialize the LED_BUILTIN pin as an output
- // initialize both serial ports:
- Serial.begin(9600);
- }
- // the loop function runs over and over again forever
- void loop() {
- digitalWrite(LED_BUILTIN, LOW); // Turn the LED on (Note that LOW is the voltage level
- // but actually the LED is on; this is because
- // it is acive low on the ESP-01)
- delay(100); // Wait for a second
- digitalWrite(LED_BUILTIN, HIGH); // Turn the LED off by making the voltage HIGH
- delay(1000); // Wait for two seconds (to demonstrate the active low LED)
- Serial.println("Hello from HwThinker");
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement