-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #54 from Aypac/develop
+Use HTTP stream update (this was required due to external breaking interface changes in the according arduino library) +Move credentials from main example files +Give error messages for router errors +Many more small improvements
- Loading branch information
Showing
11 changed files
with
690 additions
and
437 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,5 @@ Doxyfile.bak | |
doxygen_sqlite3.db | ||
html | ||
latex | ||
arduino_secrets.h | ||
.development |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#define SECRET_WIFI_SSID "WLANSID" // Wifi network name (SSID) | ||
|
||
#define SECRET_WIFI_PASSWORD "XXXXXXXXXXXXXXXXXXXXX" //Das Passwort Ihres WLANs | ||
|
||
//Der Benutzername für Ihre Fritzbox. Wenn Sie keine separaten Benutzer angelegt haben, lautet dieser "admin". | ||
#define SECRET_FUSER "homechecker" | ||
|
||
//Das Passwort für Ihre Fritzbox | ||
#define SECRET_FPASS "this_shouldBEaDecentPassword!" | ||
|
||
//Die IP-Adresse Ihrer Fritzbox. Ab Werk lautet diese 192.168.178.1. | ||
#define SECRET_IP "192.168.178.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#define SECRET_WIFI_SSID "WLANSID" // Wifi network name (SSID) | ||
|
||
#define SECRET_WIFI_PASSWORD "XXXXXXXXXXXXXXXXXXXXX" //Das Passwort Ihres WLANs | ||
|
||
//Der Benutzername für Ihre Fritzbox. Wenn Sie keine separaten Benutzer angelegt haben, lautet dieser "admin". | ||
#define SECRET_FUSER "homechecker" | ||
|
||
//Das Passwort für Ihre Fritzbox | ||
#define SECRET_FPASS "this_shouldBEaDecentPassword!" | ||
|
||
//Die IP-Adresse Ihrer Fritzbox. Ab Werk lautet diese 192.168.178.1. | ||
#define SECRET_IP "192.168.178.1" |
Oops, something went wrong.