...
Bridge Commissioning Web GUI
- The commissioning gui GUI can be reached at 193192.167168.110.1:8080/commissioning.html
- Click the WIFI SCAN button at the top
- This will cause the service to perform a scan for all 2.4 Ghz GHz networks
- List all found networks with their associated SSID, Frequency, RSSI, and Security types
- Input the PASSWORD into the password field at the bottom of the form
- Currently, there is no mechenism mechanism to support join a network with no security
- Press theĀ WIFI ASSOCIATE button at the bottom of the form
- This will cause the service to attempt to join the selected network
- The Gateway's IP Address will be returned in green on success
...
We can ignore all non b/g/n and all non 2.4Ghz 4GHz results
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Wifi Scan Results", "description": "Result of Wifi Scan and Wifi Networks found", "type": "object", "properties": { "result": { "description": "Did the Wifi Scan succeed or fail?", "type": "boolean" }, "found": { "description": "List of Wifi Networks found", "type": "array", "items": { "type": "object", "properties": { "ssid": { "description": "Name of Wifi Network", "type": "string" }, "security": { "description": "The security type of the Wifi Network", "type": "string" }, "rssi": { "description": "The signal strength", "type": "integer" }, "frequency": { "description": "The frequency of the Wifi Network", "type": "string", "default": "2.4", "enum": [ "2.4", "3.6", "4.9", "5", "5.9" ] } }, "required": [ "ssid", "security", "rssi" ] } } }, "required": [ "result" ], "additionalProperties": false } |
...
Output
Commissioning result
Client side
...
customizing and branding
The client side Javascript and CSS files are available on the Gateway in /opt/commissioning/gui/
...