This short tutorial presents Wemos D1 mini Pro board, shows how to setup Wemos D1 mini Pro in Arduino IDE and upload basic test sketch which blinks board's LED.
Update 21.1.2018: Since youtube made the rules for the new creators more difficult, please subscribe to support the funding of this channel. Thank you!
Additional Board Manager URL (Arduino IDE settings): http://arduino.esp8266.com/stable/pac...
Board description and shop:
https://s.click.aliexpress.com/e/_DEg...
Source code:
#define LED D4
void setup() {
pinMode(LED, OUTPUT);
}
void loop() {
digitalWrite(LED, HIGH);
delay(250);
digitalWrite(LED, LOW);
delay(250);
}
==========
#plukas #wemos #d1mini