Skip to content
This repository has been archived by the owner on Jan 29, 2023. It is now read-only.

Commit

Permalink
v1.0.3
Browse files Browse the repository at this point in the history
### Releases v1.0.3

1. Restructure code.
2. Fix example.
3. Enhance README.
  • Loading branch information
khoih-prog authored May 17, 2020
1 parent 7e7995c commit accd542
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions examples/ISR_Timer_Switch/ISR_Timer_Switch.ino
Original file line number Diff line number Diff line change
Expand Up @@ -106,15 +106,15 @@ ESP8266Timer ITimer;

// If local server
#if USE_LOCAL_SERVER
char blynk_server[] = "khoih.duckdns.org";
char blynk_server[] = "account.duckdns.org";
//char blynk_server[] = "192.168.2.110";
#else
char blynk_server[] = "";
#endif

char auth[] = "un9Sv8k1q5xKpl5Lihs7a22Ixeq8MJ2J";
char ssid[] = "HueNet1";
char pass[] = "jenniqqs";
char auth[] = "****";
char ssid[] = "****";
char pass[] = "****";

#endif

Expand Down
8 changes: 4 additions & 4 deletions examples/ISR_Timer_Switches/ISR_Timer_Switches.ino
Original file line number Diff line number Diff line change
Expand Up @@ -105,15 +105,15 @@ ESP8266Timer ITimer;

// If local server
#if USE_LOCAL_SERVER
char blynk_server[] = "khoih.duckdns.org";
char blynk_server[] = "account.duckdns.org";
//char blynk_server[] = "192.168.2.110";
#else
char blynk_server[] = "";
#endif

char auth[] = "un9Sv8k1q5xKpl5Lihs7a22Ixeq8MJ2J";
char ssid[] = "HueNet1";
char pass[] = "jenniqqs";
char auth[] = "****";
char ssid[] = "****";
char pass[] = "****";

#endif

Expand Down

0 comments on commit accd542

Please sign in to comment.