-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update humidifier refill flow to cope with manual button press …
…needed on govee side (#88)
- Loading branch information
1 parent
1d39630
commit f6ff8a4
Showing
6 changed files
with
61 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
src/main/java/com/bigboxer23/lights/controllers/govee/HumidifierCluster.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.bigboxer23.lights.controllers.govee; | ||
|
||
import lombok.Data; | ||
|
||
/** */ | ||
@Data | ||
public class HumidifierCluster { | ||
private String pump; | ||
|
||
private String humidifier; | ||
|
||
private String outlet; | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/java/com/bigboxer23/lights/controllers/govee/HumidifierData.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package com.bigboxer23.lights.controllers.govee; | ||
|
||
import java.util.HashMap; | ||
|
||
/** */ | ||
public class HumidifierData extends HashMap<String, HumidifierCluster> {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters