From e77e8790278b35fa2795d924703083c7df28c888 Mon Sep 17 00:00:00 2001 From: anschrammh Date: Sat, 12 Oct 2019 14:31:07 +0200 Subject: [PATCH] Added config files --- sdCard_content/CONFIG/AP.CFG | 12 ++++++++++++ sdCard_content/CONFIG/STA.CFG | 8 ++++++++ 2 files changed, 20 insertions(+) create mode 100644 sdCard_content/CONFIG/AP.CFG create mode 100644 sdCard_content/CONFIG/STA.CFG diff --git a/sdCard_content/CONFIG/AP.CFG b/sdCard_content/CONFIG/AP.CFG new file mode 100644 index 0000000..1db7208 --- /dev/null +++ b/sdCard_content/CONFIG/AP.CFG @@ -0,0 +1,12 @@ +#This config file stores the configuration needed to set the AP +#up for the ESP8266SwissArmyBoad +#If this file is not present or if there is an error at parsing time +#default values will be used instead. +#If the password is an empty string aka '', the network will be open + +ENABLED : 'true' +SSID : 'The AP ssid you want to put here' +PASSWORD : 'Here is the password for this AP' +CHANNEL : 9 +SSID_HIDDEN : 'false' +AP_MAX_CONNECTION : 8 diff --git a/sdCard_content/CONFIG/STA.CFG b/sdCard_content/CONFIG/STA.CFG new file mode 100644 index 0000000..9319e70 --- /dev/null +++ b/sdCard_content/CONFIG/STA.CFG @@ -0,0 +1,8 @@ +#This config file stores the configuration needed to connect the board +#to a wifi hotspot +#If this file is not present or if there is an error at parsing time +#only the AP functionality will be enabled + +ENABLED : 'true' +SSID : 'Your Wifi Router SSID' +PASSWORD : 'Your password'