mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-06 11:36:51 +03:00
* WLAN: add error handling * WLAN: parameter global struct * WLAN.ini -> more info text * RSSIThreshold * Rename logs * Boot process: error handling * Update texts * Comments * Init sequence * Prepare for check dir creation * add check makedir, update logs * Blink code for OTA+SoftAP * Blink code for missing time snyc * Update * reboot -> switch LED off * Update log texts * Update * Update log texts * create empty default folders at startup * Update * Adapt log level * Print log level switch * Update * Update text * Add SD free space to log * WIFI/MQTT disconnect message set to WARN (+ ERROR)
39 lines
1.3 KiB
INI
39 lines
1.3 KiB
INI
;++++++++++++++++++++++++++++++++++
|
|
; AI on the edge - WLAN configuration
|
|
;++++++++++++++++++++++++++++++++++
|
|
; ssid: Name of WLAN network (mandatory), e.g. "WLAN-SSID"
|
|
; password: Password of WLAN network (mandatory), e.g. "PASSWORD"
|
|
|
|
ssid = ""
|
|
password = ""
|
|
|
|
;++++++++++++++++++++++++++++++++++
|
|
; hostname: Name of device in network, e.g "watermeter"
|
|
; This parameter can be configured via WebUI configuration
|
|
; Default: "watermeter", if nothing is configured
|
|
;hostname = "watermeter"
|
|
|
|
;++++++++++++++++++++++++++++++++++
|
|
; Fixed IP: If you like to use fixed IP instead of DHCP (default), the following
|
|
; parameters needs to be configured: ip, gateway, netmask are mandatory, dns optional
|
|
|
|
;ip = "xxx.xxx.xxx.xxx"
|
|
;gateway = "xxx.xxx.xxx.xxx"
|
|
;netmask = "xxx.xxx.xxx.xxx"
|
|
|
|
; DNS server (optional, if no DNS is configured, gateway address will be used)
|
|
|
|
;dns = "xxx.xxx.xxx.xxx"
|
|
|
|
;++++++++++++++++++++++++++++++++++
|
|
; WIFI Roaming:
|
|
; Network assisted roaming protocol is activated by default
|
|
; AP / mesh system needs to support roaming protocol 802.11k/v
|
|
;
|
|
; Optional feature (usually not neccessary):
|
|
; RSSI Threshold for client requested roaming query (RSSI < RSSIThreshold)
|
|
; Note: This parameter can be configured via WebUI configuration
|
|
; Default: 0 = Disable client requested roaming query
|
|
|
|
RSSIThreshold = 0
|