refactor: change battery powered from 111 to 101

https://github.com/meshtastic/firmware/issues/2392
This commit is contained in:
andrekir
2023-04-01 07:49:40 -03:00
parent 6ba95c87ef
commit ca7e459dfe

View File

@@ -290,7 +290,7 @@ class UsersFragment : ScreenFragment("Users"), Logging {
R.drawable.ic_battery_full_24,
String.format("%d%% %.2fV", battery, voltage ?: 0)
)
111 -> Pair(R.drawable.ic_power_plug_24, "")
101 -> Pair(R.drawable.ic_power_plug_24, "")
else -> Pair(R.drawable.ic_battery_full_24, "?")
}