![](/media/cache/img/default_profile.jpg.50x50_q85.jpg)
Test
Dependencies: mbed as3935 ESP8266NodeMCUInterface
Diff: main.cpp
- Revision:
- 0:577723025265
- Child:
- 1:5508e5a66441
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Thu Oct 29 20:58:04 2020 +0000 @@ -0,0 +1,12 @@ +#include "mbed.h" + +DigitalOut myled(LED1); + +int main() { + while(1) { + myled = 1; + wait(0.2); + myled = 0; + wait(0.2); + } +}