Add documentation about unknown command 4

This commit is contained in:
Fabio Scaccabarozzi
2025-10-19 18:32:35 +01:00
parent 80976df212
commit 5ba124b086
3 changed files with 49 additions and 0 deletions

View File

@@ -228,6 +228,15 @@ impl Device for CloudIIWireless {
Duration::from_secs(minutes as u64 * 60),
)])
}
4 => {
// Command 4: Charge limit or battery management
// This may be sent asynchronously when charging state changes
println!(
"Charge limit/battery management response (cmd 4): data={:?}",
&response[4..8]
);
None
}
9 | 29 => {
// Commands 9 and 29 are seen during initialization but purpose unclear
println!("Initialization response (cmd {})", response[3]);