[go: nahoru, domu]

Skip to content

Instantly share code, notes, and snippets.

@loginov-rocks
Last active December 10, 2018 22:26
Show Gist options
  • Save loginov-rocks/7f5b4778de4d8a35a2a8f0de3606be0f to your computer and use it in GitHub Desktop.
Save loginov-rocks/7f5b4778de4d8a35a2a8f0de3606be0f to your computer and use it in GitHub Desktop.
NodeMCU-Arduino-PlatformIO-Blink
#include <Arduino.h>
#define LED D0
void setup()
{
pinMode(LED, OUTPUT);
}
void loop()
{
digitalWrite(LED, LOW);
delay(500);
digitalWrite(LED, HIGH);
delay(1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment