mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
feat: Honor radio's option to use Fahrenheit (#658)
This commit is contained in:
parent
04e8a6a514
commit
4e410622d8
2 changed files with 6 additions and 4 deletions
|
|
@ -174,8 +174,9 @@ data class NodeInfo(
|
|||
private fun envFormat(f: String, unit: String, env: Float?): String =
|
||||
if (env != null && env != 0f) String.format(f + unit, env) else ""
|
||||
|
||||
val envMetricStr
|
||||
get() = envFormat("%.1f", "°C ", environmentMetrics?.temperature) +
|
||||
fun envMetricStr(isFahrenheit: Boolean = false): String =
|
||||
if (!isFahrenheit) envFormat("%.1f", "°C ", environmentMetrics?.temperature)
|
||||
else envFormat("%.1f", "°F ", environmentMetrics?.temperature?.times(1.8f)?.plus(32)) +
|
||||
envFormat("%.0f", "%% ", environmentMetrics?.relativeHumidity) +
|
||||
envFormat("%.1f", "hPa ", environmentMetrics?.barometricPressure) +
|
||||
envFormat("%.0f", "mΩ ", environmentMetrics?.gasResistance) +
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue