-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
15 additions
and
2 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 |
---|---|---|
|
@@ -6,9 +6,16 @@ | |
Note that the WiFi radio on the ESP uses 2.4GHz, | ||
so you should check to see if your institution's | ||
version of eduroam still implements 2.4Ghz. | ||
At AAU-Copenhagen, for example, there is a separate | ||
At some institutions, for example, there is a separate | ||
network called eduroam-2.4Ghz. | ||
Here's what your arduino_secrets.h file should look like: | ||
#define EAP_IDENTITY "" // use [email protected] in for most institutions | ||
#define EAP_USERNAME "" // usually just a repeat of the identity | ||
#define EAP_PASSWORD "" // your password | ||
#define SECRET_SSID "eduroam" // eduroam SSID | ||
modified 2 May 2024 | ||
by Tom Igoe | ||
*/ | ||
|
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 |
---|---|---|
|
@@ -11,6 +11,12 @@ | |
version of eduroam still implements 2.4Ghz. At AAU-Copenhagen, for example, | ||
there is a separate network called eduroam-2.4Ghz. | ||
Here's what your arduino_secrets.h file should look like: | ||
#define EAP_IDENTITY "" // use [email protected] in for most institutions | ||
#define EAP_USERNAME "" // usually just a repeat of the identity | ||
#define EAP_PASSWORD "" // your password | ||
#define SECRET_SSID "eduroam" // eduroam SSID | ||
Uses the OSC library by Adrian Freed and Yotam Man | ||
https://github.com/CNMAT/OSC | ||
http://librarymanager/All#WiFiUDP | ||
|