feat: Honor radio's option to use Fahrenheit (#658)

This commit is contained in:
Jonathan Bennett
2023-07-16 03:46:54 -05:00
committed by GitHub
parent 04e8a6a514
commit 4e410622d8
2 changed files with 6 additions and 4 deletions

View File

@@ -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", "", environmentMetrics?.gasResistance) +

View File

@@ -205,8 +205,9 @@ class UsersFragment : ScreenFragment("Users"), Logging {
holder.lastTime.text = formatAgo(n.lastHeard)
if (n.envMetricStr.isNotEmpty()) {
holder.envMetrics.text = n.envMetricStr
val envMetrics = n.envMetricStr(model.module.telemetry.environmentDisplayFahrenheit)
if (envMetrics.isNotEmpty()) {
holder.envMetrics.text = envMetrics
holder.envMetrics.visibility = View.VISIBLE
} else {
holder.envMetrics.visibility = View.GONE