WiFi Configuration¶
The WattWächter supports two methods for WiFi setup: Bluetooth (BLE) via the smartphone app or AP mode via the browser.
Method 1: Bluetooth (App)¶
The recommended method for initial setup.
- Check LED — The device must be pulsing blue (BLE active)
- Open app — Launch the WattWächter app and select "Add Device"
- Select device — The app automatically scans for nearby WattWächter devices
- Choose WiFi — The device scans available networks and displays them in the app
- Enter password — Enter your WiFi password and confirm
- Wait — The device connects. LED turns green on success.
Bluetooth Range
For BLE setup, you should be near the device (max. 5–10 m).
Method 2: AP Mode (Browser)¶
Fallback method if Bluetooth is not available.
Connect¶
- The device creates its own WiFi network: WattWaechter-XXXX (XXXX = last 4 characters of the MAC address)
- Connect to this network (password on the device label)
- Open in your browser:
http://192.168.4.1
Configure¶
- WiFi scan — Click "Scan Networks". Available networks are displayed sorted by signal strength.
- Choose network — Select your home network from the list
- Enter password — Enter your WiFi password
- Save — Click "Connect"
- The device restarts and connects to your WiFi
AP Mode Ends
After a successful connection, the access point is deactivated. The device is then available at http://ww.local.
After Connecting¶
Once the LED is green, the device is reachable on your network:
- mDNS:
http://ww.local - IP address: Shown in the app or your router's admin panel
Test the Connection¶
curl http://ww.local/api/v1/system/alive
Expected response:
{"alive": true, "version": "1.x.x"}
Changing WiFi Settings¶
If you want to switch WiFi networks later:
- Via API: Send new WiFi credentials via POST to
/api/v1/settings - Factory Reset: Hold the reset button for 10 seconds — the device restarts in setup mode
curl -X POST http://ww.local/api/v1/settings \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_WRITE_TOKEN" \
-d '{"wifi": {"primary": {"ssid": "NewNetwork", "password": "password123", "enable": true}}}'
Troubleshooting¶
| Problem | Solution |
|---|---|
| LED stays blue | Check WiFi password, ensure router is in range |
| AP network not visible | Power cycle the device, wait 30 seconds |
ww.local not reachable |
mDNS must be supported on your network. Alternatively, look up the IP address in your router. |
| Connection drops | Check WiFi signal strength (RSSI > -75 dBm recommended) |