Skip to content

Commit

Permalink
Add rssi to mqtt and rest data
Browse files Browse the repository at this point in the history
  • Loading branch information
enwi committed Aug 4, 2022
1 parent 410a2ec commit 1834631
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion mqtt.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ The current Charge Controller data is sent at the configured interval and is pub
"o1": false,
"o2": true,
"o3": false
}
},
"rssi": -76
}
```

Expand Down Expand Up @@ -89,6 +90,7 @@ The current Charge Controller data is sent at the configured interval and is pub
| o1 | Bool | true/false | RNGBridge `Out1` enabled(true) or disabled(false) |
| o2 | Bool | true/false | RNGBridge `Out2` enabled(true) or disabled(false) |
| o3 | Bool | true/false | RNGBridge `Out3` enabled(true) or disabled(false) |
| rssi | Number | -150 - 0 | WiFi signal strength aka rssi in dBm |

#### state values
- 0: charging deactivated
Expand Down
4 changes: 3 additions & 1 deletion rest.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ If wanted the MQTT obect could be extended to also have these values included.
"o3": false
},
"up": 80,
"he": 38008
"he": 38008,
"rssi": -76
}
```

Expand Down Expand Up @@ -93,6 +94,7 @@ If wanted the MQTT obect could be extended to also have these values included.
| pvosta | Bool | String | Current human readable state of the PVOutput module of `RNGBridge` |
| up | Bool | Number | Uptime in seconds |
| he | Bool | Number | Current heap usage in bytes |
| rssi | Number | -150 - 0 | WiFi signal strength aka rssi in dBm |

#### state values
- 0: charging deactivated
Expand Down

0 comments on commit 1834631

Please sign in to comment.