Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
WiFiBlynk.h
00001 00002 #include "ESP8266_HardSer.h" 00003 #include "BlynkSimpleShieldEsp8266_HardSer.h" 00004 #include "SimpleTimer.h" 00005 00006 Serial EspSerial(PA_9, PA_10);//tx, rx 00007 ESP8266 wifi(EspSerial); 00008 00009 void notify() 00010 { 00011 Blynk.notify("Alert : DOOR OPENED"); 00012 } 00013 00014 BLYNK_WRITE(V1) { 00015 int a = param.asInt(); 00016 if (a == 1) { 00017 Blynk.notify("BUKAK.."); 00018 00019 } 00020 else { 00021 Blynk.notify("TUTUP..."); 00022 00023 00024 } 00025 }
Generated on Tue Jul 12 2022 23:11:54 by
