1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
//! Implements the `BatteryVoltage` feature (ID `0x1001`) that reports a
//! device's battery charge as a measured voltage plus a charging-flags byte.
//!
//! G-series wireless gaming devices (G915, G903 LS, G502 LIGHTSPEED) expose
//! `0x1001` and neither the legacy `0x1000` nor the unified `0x1004`, so
//! without this feature the inventory probe finds no battery source for them
//! at all. Unlike its siblings the feature reports no percentage — callers
//! estimate one from the voltage (see `openlogi-hid`'s mappings).
//!
//! Only `getBatteryInfo` (function `0`) is implemented; the broadcast event
//! isn't needed to display a charge reading — the same scope `BatteryStatus`
//! (`0x1000`) keeps.
//!
//! The wire layout is not in a public Logitech spec: the voltage as a
//! big-endian millivolt `u16` followed by one flags byte was
//! reverse-engineered, and the decoding here follows Solaar
//! (`decipher_battery_voltage`) and libratbag's consensus on the flag bits.
use openlogi_hidpp_derive::Feature;
use crate::{feature::FeatureEndpoint, protocol::v20::Hidpp20Error};
/// Implements the `BatteryVoltage` / `0x1001` feature.
#[derive(Feature)]
#[creatable(id = 0x1001, version = 0)]
pub struct BatteryVoltageFeature {
/// The endpoint this feature talks to.
endpoint: FeatureEndpoint,
}
impl BatteryVoltageFeature {
/// Reads the measured battery voltage and charging state (function `0`,
/// `getBatteryInfo`).
pub async fn get_battery_info(&self) -> Result<VoltageBatteryInfo, Hidpp20Error> {
let payload = self.endpoint.call(0, [0; 3]).await?.extend_payload();
Ok(VoltageBatteryInfo::from_wire(&payload))
}
}
/// A reading from the `0x1001` `getBatteryInfo` function.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
#[cfg_attr(feature = "serde", derive(serde::Serialize))]
#[non_exhaustive]
pub struct VoltageBatteryInfo {
/// Measured battery voltage in millivolt — roughly `3500` (empty) to
/// `4200` (full) for the single-cell Li-Po batteries these devices carry.
pub voltage_mv: u16,
/// The charging state decoded from the flags byte.
pub status: VoltageChargingStatus,
/// The firmware's "charge level critical" marker (flags bit `5`).
pub critical: bool,
}
impl VoltageBatteryInfo {
/// Decodes a `getBatteryInfo` response payload: voltage as a big-endian
/// millivolt `u16` in bytes `0`–`1`, the charging flags in byte `2`.
#[must_use]
pub fn from_wire(payload: &[u8; 16]) -> Self {
let flags = payload[2];
Self {
voltage_mv: u16::from_be_bytes([payload[0], payload[1]]),
status: VoltageChargingStatus::from_flags(flags),
critical: flags & (1 << 5) != 0,
}
}
}
/// Charging state decoded from the `0x1001` flags byte.
///
/// Bit `7` set means external power is present; bits `0`–`1` then carry the
/// charge status (`0b01` charge complete, `0b10` charge fault) and bits `3` /
/// `4` mark fast / slow charging. Bit assignments follow Solaar and libratbag.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
#[cfg_attr(feature = "serde", derive(serde::Serialize))]
#[non_exhaustive]
pub enum VoltageChargingStatus {
/// Running on battery (bit `7` clear).
Discharging,
/// Charging at the standard rate.
Charging,
/// Charging at a raised current (bit `3`).
ChargingFast,
/// Charging at reduced current (bit `4`).
ChargingSlow,
/// On external power with charge complete (status bits `0b01`).
Full,
/// On external power but not charging — a charge fault (status bits
/// `0b10`).
NotCharging,
}
impl VoltageChargingStatus {
/// Decodes the flags byte. Total on purpose: a contradictory or future
/// flag combination falls into the nearest charging bucket rather than
/// failing, so a battery reading never vanishes over an unknown bit.
fn from_flags(flags: u8) -> Self {
if flags & (1 << 7) == 0 {
return Self::Discharging;
}
match flags & 0x03 {
0x01 | 0x03 => Self::Full,
0x02 => Self::NotCharging,
_ => {
if flags & (1 << 3) != 0 {
Self::ChargingFast
} else if flags & (1 << 4) != 0 {
Self::ChargingSlow
} else {
Self::Charging
}
}
}
}
}
#[cfg(test)]
mod tests {
use super::{VoltageBatteryInfo, VoltageChargingStatus};
/// Builds a 16-byte payload from the 3 meaningful bytes.
fn payload(voltage_mv: u16, flags: u8) -> [u8; 16] {
let mut payload = [0; 16];
payload[..2].copy_from_slice(&voltage_mv.to_be_bytes());
payload[2] = flags;
payload
}
#[test]
fn discharging_reading_decodes_voltage_and_status() {
let info = VoltageBatteryInfo::from_wire(&payload(3781, 0x00));
assert_eq!(info.voltage_mv, 3781);
assert_eq!(info.status, VoltageChargingStatus::Discharging);
assert!(!info.critical);
}
#[test]
fn external_power_flag_alone_means_standard_charging() {
let info = VoltageBatteryInfo::from_wire(&payload(4100, 0x80));
assert_eq!(info.status, VoltageChargingStatus::Charging);
}
#[test]
fn charge_status_bits_take_precedence_over_rate_bits() {
// Charge complete wins over a stale fast-charge bit.
let info = VoltageBatteryInfo::from_wire(&payload(4186, 0x80 | 0x08 | 0x01));
assert_eq!(info.status, VoltageChargingStatus::Full);
let info = VoltageBatteryInfo::from_wire(&payload(4000, 0x80 | 0x02));
assert_eq!(info.status, VoltageChargingStatus::NotCharging);
}
#[test]
fn rate_bits_split_fast_and_slow_charging() {
let fast = VoltageBatteryInfo::from_wire(&payload(3900, 0x80 | 0x08));
assert_eq!(fast.status, VoltageChargingStatus::ChargingFast);
let slow = VoltageBatteryInfo::from_wire(&payload(3900, 0x80 | 0x10));
assert_eq!(slow.status, VoltageChargingStatus::ChargingSlow);
}
#[test]
fn critical_bit_is_surfaced_independently_of_status() {
let info = VoltageBatteryInfo::from_wire(&payload(3520, 0x20));
assert_eq!(info.status, VoltageChargingStatus::Discharging);
assert!(info.critical);
}
#[test]
fn without_external_power_the_rate_bits_are_meaningless() {
// Bit 7 clear: whatever the low bits claim, the device runs on battery.
let info = VoltageBatteryInfo::from_wire(&payload(3700, 0x1b));
assert_eq!(info.status, VoltageChargingStatus::Discharging);
}
}