Skip to content
This repository was archived by the owner on Feb 9, 2022. It is now read-only.

Commit 8d6893c

Browse files
authored
v1.0.1
### New Releases v1.0.1 1. Add support to ***SAM DUE, Teensy (4.0, 3.x, LC), STM32.*** 2. AVR Mega can use dynamic parameters or not, depending on memory availability 3. Support 63 chars WPA2 WiFi password 4. Permit to input special chars such as ***%*** and ***#*** into data fields.
1 parent 2023232 commit 8d6893c

File tree

1 file changed

+12
-18
lines changed

1 file changed

+12
-18
lines changed

README.md

Lines changed: 12 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -298,9 +298,8 @@ void loop()
298298

299299
## TO DO
300300

301-
1. Same features for other boards using WiFiNINA WiFi shields such as STM32, Teensy, SAM DUE.
302-
2. Add MultiWiFi feature to enable reconnect to the best / available WiFi AP.
303-
3. Add MultiBlynk feature to enable reconnect to the best / available Blynk Server.
301+
1. Add MultiWiFi feature to enable reconnect to the best / available WiFi AP.
302+
2. Add MultiBlynk feature to enable reconnect to the best / available Blynk Server.
304303

305304

306305
## DONE
@@ -314,6 +313,7 @@ void loop()
314313
7. Add configurable Static IP, GW, Subnet Mask IP Addresses.
315314
8. Enable dynamic custom data
316315
9. Add checksum for more reliable data
316+
10. Same features for other boards using WiFiNINA WiFi shields such as STM32, Teensy, SAM DUE.
317317

318318
## Example
319319
Please take a look at examples, as well.
@@ -428,11 +428,8 @@ uint16_t NUM_MENU_ITEMS = sizeof(myMenuItems) / sizeof(MenuItem); //MenuItemSiz
428428
#define USE_LOCAL_SERVER true
429429
430430
#if USE_LOCAL_SERVER
431-
//char auth[] = "****";
432-
//String BlynkServer = "account.duckdns.org";
433-
434-
char auth[] = "dpjQumZ-qT8MZnwAUd2F8ZM0DfEM_WCP"; //RFID Gas
435-
String BlynkServer = "khoih.duckdns.org";
431+
char auth[] = "****";
432+
String BlynkServer = "account.duckdns.org";
436433
437434
//String BlynkServer = "192.168.2.112";
438435
#else
@@ -443,17 +440,11 @@ String BlynkServer = "blynk-cloud.com";
443440
#define BLYNK_SERVER_HARDWARE_PORT 8080
444441
445442
// Your WiFi credentials.
446-
//char ssid[] = "****";
447-
//char pass[] = "****";
448-
449-
char ssid[] = "HueNet1";
450-
char pass[] = "jenniqqs";
443+
char ssid[] = "****";
444+
char pass[] = "****";
451445
452446
#endif
453447
454-
// Your Megay <-> ESP8266 baud rate:
455-
#define ESP8266_BAUD 115200
456-
457448
void heartBeatPrint(void)
458449
{
459450
static int num = 1;
@@ -514,6 +505,7 @@ void setup()
514505
#endif
515506
}
516507
508+
#if USE_BLYNK_WM
517509
void displayCredentials(void)
518510
{
519511
Serial.println("Your stored Credentials :");
@@ -523,11 +515,14 @@ void displayCredentials(void)
523515
Serial.println(String(myMenuItems[i].displayName) + " = " + myMenuItems[i].pdata);
524516
}
525517
}
518+
#endif
526519
527520
void loop()
528521
{
529522
Blynk.run();
523+
check_status();
530524
525+
#if USE_BLYNK_WM
531526
static bool displayedCredentials = false;
532527
533528
if (!displayedCredentials)
@@ -546,8 +541,7 @@ void loop()
546541
}
547542
}
548543
}
549-
550-
check_status();
544+
#endif
551545
}
552546
```
553547
### New Releases v1.0.1

0 commit comments

Comments
 (0)