[miio] add missing vacuum status codes (#11659)

Signed-off-by: Marcel Verpaalen <marcel@verpaalen.com>
This commit is contained in:
Marcel 2021-11-29 00:29:40 +01:00 committed by GitHub
parent a45b40d6c3
commit bea7197ede
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,7 +41,9 @@ public enum StatusType {
GOTO(16, "Go To"),
ZONE(17, "Zone Clean"),
ROOM(18, "Room Clean"),
FULL(100, "Full");
RETURNING_HOME(22, "Returning Home"),
FULL(100, "Full"),
OFFLINE(101, "Device Offline");
private final int id;
private final String description;