Merge pull request #582 from ianmcorvidae/patch-1

Make yellow/Fair RSSI possible
This commit is contained in:
Garth Vander Houwen 2024-04-03 12:16:05 -07:00 committed by GitHub
commit ad7594b643
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -85,7 +85,7 @@ func getRssiColor(rssi: Int32) -> Color {
if rssi > -115 {
/// Good
return .green
} else if rssi > -115 && rssi < -120 {
} else if rssi > -120 {
/// Fair
return .yellow
} else if rssi > -126 {