-
Notifications
You must be signed in to change notification settings - Fork 592
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for Kyvol EA200 humidifier.
Issue #354
- Loading branch information
Showing
3 changed files
with
69 additions
and
0 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
67 changes: 67 additions & 0 deletions
67
custom_components/tuya_local/devices/kyvol_ea200_humidifier.yaml
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,67 @@ | ||
name: Kyvol EA200 humidifier | ||
primary_entity: | ||
entity: fan | ||
dps: | ||
- id: 1 | ||
name: switch | ||
type: boolean | ||
- id: 22 | ||
name: fault_code | ||
type: bitfield | ||
- id: 23 | ||
name: speed | ||
type: string | ||
mapping: | ||
- dps_val: level_1 | ||
value: 5 | ||
- dps_val: level_2 | ||
value: 10 | ||
- dps_val: level_3 | ||
value: 15 | ||
- dps_val: level_4 | ||
value: 20 | ||
- dps_val: level_5 | ||
value: 25 | ||
- dps_val: level_6 | ||
value: 30 | ||
- dps_val: level_7 | ||
value: 35 | ||
- dps_val: level_8 | ||
value: 40 | ||
- dps_val: level_9 | ||
value: 45 | ||
- dps_val: level_10 | ||
value: 50 | ||
- dps_val: level_11 | ||
value: 55 | ||
- dps_val: level_12 | ||
value: 60 | ||
- dps_val: level_13 | ||
value: 65 | ||
- dps_val: level_14 | ||
value: 70 | ||
- dps_val: level_15 | ||
value: 75 | ||
- dps_val: level_16 | ||
value: 80 | ||
- dps_val: level_17 | ||
value: 85 | ||
- dps_val: level_18 | ||
value: 90 | ||
- dps_val: level_19 | ||
value: 95 | ||
- dps_val: level_20 | ||
value: 100 | ||
secondary_entities: | ||
- entity: binary_sensor | ||
name: Tank empty | ||
class: problem | ||
category: diagnostic | ||
dps: | ||
- id: 22 | ||
type: bitfield | ||
name: sensor | ||
mapping: | ||
- dps_val: 0 | ||
value: false | ||
- value: true |
2f8eea6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a lot!
Device is working perfectly!
How to delete devices? I cant find three dots menu for deleting it :-(
P.S. Do you have a plans to adding ZigBee bridges to support?
2f8eea6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Delete device is up one level from that screen, in the three dots menu.
Tuya Zigbee/Bluetooth/IR bridge support is WIP, tracked by issue #70