homebridge-roborock-matter 3.4.3 → 3.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/README.md +1 -1
- package/package.json +1 -1
- package/roborockLib/lib/deviceFeatures.js +21 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.4.4
|
|
4
|
+
|
|
5
|
+
- **Nine Saros 10 status fields are now mapped.** 3.4.3 started naming unknown `get_status` fields once instead of once a minute, and asked owners to paste that line into a model report. skmzwanke did exactly that for his `roborock.vacuum.a144` ([#8](https://github.com/mathiashornbek/homebridge-roborock-matter/issues/8)), so `home_sec_status`, `voice_chat_status`, `home_sec_enable_password`, `extra_time`, `sterilize_status`, `rst`, `cleaning_info`, `exit_dock` and `seq_type` are known from now on and his log is quiet. None of them drive behaviour — control, battery, rooms and state come from a model-agnostic path — so this is purely about not pestering the owner of a new model about fields the plugin had simply never met.
|
|
6
|
+
|
|
3
7
|
## 3.4.3
|
|
4
8
|
|
|
5
9
|
**A robot with no model profile no longer fills your log with the same request forever.** Models the plugin has no dedicated profile for — the Saros 10 in [#8](https://github.com/mathiashornbek/homebridge-roborock-matter/issues/8), the Qrevo CurvX in [#6](https://github.com/mathiashornbek/homebridge-roborock-matter/issues/6) — run on the capability-derived path, which works, but every status field the profile did not name produced its own `Unsupported attribute … Please contact the dev` warning on every status poll. For the Saros 10 that is eight warnings a minute: about 11,500 requests a day to report the same eight fields. Both issues were promised this would be quietened.
|
package/README.md
CHANGED
|
@@ -37,7 +37,7 @@ This is the most feature-packed, most thoroughly engineered Roborock plugin for
|
|
|
37
37
|
- 📍 **See where it's cleaning — live.** Apple Home shows _"Cleaning — Kitchen"_ with the room the robot is actually inside, updating as it moves from room to room. Works even for cleans started from the robot's button or the Roborock app. No other Homebridge plugin does this.
|
|
38
38
|
- 🧭 **One robot, one tile — and as many robots as you own.** Sign in once and your whole fleet comes along: every vacuum on your account appears as its own clean, native accessory in Apple Home. No clutter of fake fans and helper switches, and rooms appear with the names you gave them in the Roborock app.
|
|
39
39
|
- ⚡ **Fast and reliable.** Commands go directly to the robot over your own network whenever possible, with the Roborock cloud as automatic backup — and built-in diagnostics in the settings if you ever want to look under the hood.
|
|
40
|
-
- 🛡️ **Verified by Homebridge.** Reviewed and endorsed by the Homebridge team.
|
|
40
|
+
- 🛡️ **Verified by Homebridge.** Reviewed and endorsed by the Homebridge team. 419 automated tests, zero known vulnerabilities, no analytics, and a startup designed to never crash your Homebridge — even when your Wi-Fi or the Roborock cloud has a bad day.
|
|
41
41
|
|
|
42
42
|
## Features
|
|
43
43
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "homebridge-roborock-matter",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.4",
|
|
4
4
|
"description": "The most complete Roborock plugin for Apple Home. Supports the entire Roborock lineup — from the classic S-series to the new 2025 Q7 series that no other plugin can control. Sign in with your Roborock account and get native start/stop, room cleaning, suction levels, battery, and live 'cleaning in the kitchen' room tracking. Verified by Homebridge.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
@@ -153,6 +153,27 @@ const deviceStates = {
|
|
|
153
153
|
rdt: "number",
|
|
154
154
|
camera_status: "number",
|
|
155
155
|
distance_off: "number",
|
|
156
|
+
// Reported by the Saros 10 (roborock.vacuum.a144) and siblings. Added from
|
|
157
|
+
// skmzwanke's field report in issue #8, which is exactly the round trip the
|
|
158
|
+
// "no mapping for" log line asks for: 3.4.3 named the nine fields once, he
|
|
159
|
+
// pasted the line, and they are now known.
|
|
160
|
+
//
|
|
161
|
+
// None of them drive behaviour — control, battery, rooms and state come
|
|
162
|
+
// from a model-agnostic path — so mapping them is about not pestering the
|
|
163
|
+
// owner of a brand-new model about fields the plugin simply had not met
|
|
164
|
+
// yet.
|
|
165
|
+
home_sec_status: "number",
|
|
166
|
+
home_sec_enable_password: "number",
|
|
167
|
+
voice_chat_status: "number",
|
|
168
|
+
sterilize_status: "number",
|
|
169
|
+
exit_dock: "number",
|
|
170
|
+
extra_time: "number",
|
|
171
|
+
seq_type: "number",
|
|
172
|
+
rst: "number",
|
|
173
|
+
// An object: {target_segment_id, segment_id, fan_power, water_box_mode, ...}
|
|
174
|
+
// — the same convention as adbumper_status and events, which are also
|
|
175
|
+
// non-scalar.
|
|
176
|
+
cleaning_info: "string",
|
|
156
177
|
};
|
|
157
178
|
|
|
158
179
|
// Shared shape for the work-time consumables that both consumablesInt and
|