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'