diff options
author | 2024-03-14 20:10:27 +0100 | |
---|---|---|
committer | 2024-03-14 20:10:27 +0100 | |
commit | 701dabfb34420de69f5131d4ac71936c7814b169 (patch) | |
tree | 46197b415a3ede35eec9db6346fa28e5f8b26c0e | |
parent | b1e3b31be14a42cc5e0807733b9d17712e517f06 (diff) | |
download | remote-wheels-701dabfb34420de69f5131d4ac71936c7814b169.tar.gz remote-wheels-701dabfb34420de69f5131d4ac71936c7814b169.zip |
Add printConfig() function
-rw-r--r-- | remote-wheels.ino | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/remote-wheels.ino b/remote-wheels.ino index 6c4e88a..8f74115 100644 --- a/remote-wheels.ino +++ b/remote-wheels.ino @@ -26,6 +26,13 @@ void printHelp() { Serial.println(); } +void printConfig() { + Serial.println("Configurazione"); + Serial.println(" SSID: <" + wifi_ssid + ">"); + Serial.println(" Password: <" + wifi_password + ">"); + Serial.println(); +} + void setup() { delay(3000); |