bosch_camera_wifi
Check a camera's WiFi signal quality to diagnose connection problems. Returns RSSI, SSID, and signal strength percentage to help decide if local streaming should be used.
Instructions
Get the WiFi signal quality for one camera.
Queries GET /v11/video_inputs/{id}/wifiinfo and returns
{rssi, ssid, signal_strength}.
rssi: raw RSSI in dBm (negative integer, e.g. -67).
ssid: the connected WiFi network name.
signal_strength: 0-100 % quality derived from RSSI
(-50 dBm = 100 %, -100 dBm = 0 %).
Useful for diagnosing intermittent connectivity, stream drops, or deciding
whether to force prefer_local=True on privacy/light writes.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| camera | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| rssi | No | Raw RSSI in dBm (negative; e.g. -67) | |
| ssid | No | Connected WiFi SSID | |
| signal_strength | No | Signal quality 0-100 % derived from RSSI (-50 dBm = 100 %, -100 dBm = 0 %) |