feat(ui): Display BLE signal strength for connected device (#3721)

Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com>
This commit is contained in:
James Rich 2025-11-17 15:15:44 -06:00 committed by GitHub
parent 73d933fe14
commit a497086c77
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 26 additions and 23 deletions

View file

@ -90,13 +90,6 @@ constructor(
private val _currentDeviceAddressFlow = MutableStateFlow(radioPrefs.devAddr)
val currentDeviceAddressFlow: StateFlow<String?> = _currentDeviceAddressFlow.asStateFlow()
private val _isRssiPollingEnabled = MutableStateFlow(false)
val isRssiPollingEnabled: StateFlow<Boolean> = _isRssiPollingEnabled.asStateFlow()
fun setRssiPolling(enabled: Boolean) {
_isRssiPollingEnabled.value = enabled
}
private val logSends = false
private val logReceives = false
private lateinit var sentPacketsLog: BinaryLogFile