feat: Always Display voltage (#3362)

Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com>
This commit is contained in:
James Rich 2025-10-06 16:31:43 -05:00 committed by GitHub
parent c98e74d804
commit 6a71891790
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 3 deletions

View file

@ -62,7 +62,7 @@ fun CurrentlyConnectedInfo(
horizontalArrangement = Arrangement.SpaceBetween,
verticalAlignment = Alignment.CenterVertically,
) {
MaterialBatteryInfo(level = node.batteryLevel)
MaterialBatteryInfo(level = node.batteryLevel, voltage = node.voltage)
if (bluetoothRssi != null) {
MaterialBluetoothSignalInfo(rssi = bluetoothRssi)
}