Difference between revisions of "Arduino-WLAN-Setup-via-Serial"
From Digipool-Wiki
(Created page with "<pre> // WLAN-Setup-via-Serial // For serial communication, you can use the Arduino IDE or another serial terminal, such as the following webpage: // https://www.serialtermin...") |
|||
Line 2: | Line 2: | ||
// WLAN-Setup-via-Serial | // WLAN-Setup-via-Serial | ||
− | // For serial communication, you can use the Arduino IDE or another serial terminal, such as the following webpage: | + | // For serial communication, you can use the Arduino IDE |
+ | // or another serial terminal, such as the following webpage: | ||
// https://www.serialterminal.com | // https://www.serialterminal.com | ||
// Disable "send with /r" | // Disable "send with /r" |
Revision as of 18:06, 3 January 2023
// WLAN-Setup-via-Serial // For serial communication, you can use the Arduino IDE // or another serial terminal, such as the following webpage: // https://www.serialterminal.com // Disable "send with /r" // Enable "send with /n" // Disable "echo" String WlanName = ""; String WlanKey = ""; void setup() { Serial.begin(9600); myWlanSetup(); } void loop() { // place your code here... }