-
Notifications
You must be signed in to change notification settings - Fork 1.1k
feat(devices): Add ETA Noble Smart humidifier #4656
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
02463ed
9f8b8c5
6b80bb2
5926092
a90c19b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| # EditorConfig is awesome: https://editorconfig.org | ||
|
|
||
| root = true | ||
|
|
||
| [*] | ||
| charset = utf-8 | ||
| end_of_line = lf | ||
| insert_final_newline = true | ||
| trim_trailing_whitespace = true | ||
|
|
||
| [*.py] | ||
| indent_style = space | ||
| indent_size = 4 | ||
|
|
||
| [*.yaml] | ||
| indent_style = space | ||
| indent_size = 2 | ||
|
|
||
| [*.json] | ||
| indent_style = space | ||
| indent_size = 4 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,186 @@ | ||
| name: Humidifier | ||
| products: | ||
| - id: vkh653vaxghgavef | ||
| manufacturer: ETA | ||
| model: Noble Smart | ||
| model_id: "5629 90000" | ||
| entities: | ||
| - entity: humidifier | ||
| class: humidifier | ||
| translation_key: extended | ||
| dps: | ||
| - id: 1 | ||
| type: boolean | ||
| name: switch | ||
| - id: 4 | ||
| type: string | ||
| name: mode | ||
| mapping: | ||
| - dps_val: manual | ||
| value: manual | ||
| - dps_val: auto | ||
| value: auto | ||
| - dps_val: humidity | ||
| value: normal | ||
| - id: 13 | ||
| type: integer | ||
| name: humidity | ||
| range: | ||
| min: 30 | ||
| max: 75 | ||
| mapping: | ||
| - step: 5 | ||
| - id: 14 | ||
| type: integer | ||
| name: current_humidity | ||
| - entity: fan | ||
| translation_key: spray_level | ||
| category: config | ||
| dps: | ||
| - id: 1 | ||
| type: boolean | ||
| name: switch | ||
| - id: 23 | ||
| type: string | ||
| name: speed | ||
| optional: true | ||
| mapping: | ||
| - dps_val: "level_0" | ||
| value: 0 | ||
| - dps_val: "level_1" | ||
| value: 15 | ||
| - dps_val: "level_2" | ||
| value: 30 | ||
| - dps_val: "level_3" | ||
| value: 45 | ||
| - dps_val: "level_4" | ||
| value: 55 | ||
| - dps_val: "level_5" | ||
| value: 70 | ||
| - dps_val: "level_6" | ||
| value: 85 | ||
| - dps_val: "level_7" | ||
| value: 100 | ||
| - entity: switch | ||
| translation_key: warm_mist | ||
| category: config | ||
| dps: | ||
| - id: 26 | ||
| type: boolean | ||
| name: switch | ||
| optional: true | ||
| - entity: switch | ||
| translation_key: plasma | ||
| category: config | ||
| dps: | ||
| - id: 35 | ||
| type: boolean | ||
| name: switch | ||
| optional: true | ||
| - entity: light | ||
| translation_key: ambient_light | ||
| category: config | ||
| dps: | ||
| - id: 5 | ||
| type: boolean | ||
| name: switch | ||
| - entity: switch | ||
| translation_key: sound | ||
| category: config | ||
| dps: | ||
| - id: 8 | ||
| type: boolean | ||
| name: switch | ||
| - entity: sensor | ||
| class: temperature | ||
| dps: | ||
| - id: 10 | ||
| type: integer | ||
| name: sensor | ||
| class: measurement | ||
| unit: C | ||
| - id: 12 | ||
| type: integer | ||
| name: temperature_f | ||
| unit: F | ||
| optional: true | ||
| - entity: select | ||
| translation_key: timer | ||
| category: config | ||
| dps: | ||
| - id: 19 | ||
| type: string | ||
| name: option | ||
| optional: true | ||
| mapping: | ||
| - dps_val: cancel | ||
| value: cancel | ||
| - dps_val: "1h" | ||
| value: "1h" | ||
| - dps_val: "2h" | ||
| value: "2h" | ||
| - dps_val: "3h" | ||
| value: "3h" | ||
| - dps_val: "4h" | ||
| value: "4h" | ||
| - dps_val: "5h" | ||
| value: "5h" | ||
| - dps_val: "6h" | ||
| value: "6h" | ||
| - dps_val: "7h" | ||
| value: "7h" | ||
| - dps_val: "8h" | ||
| value: "8h" | ||
| - dps_val: "9h" | ||
| value: "9h" | ||
| - dps_val: "10h" | ||
| value: "10h" | ||
| - dps_val: "11h" | ||
| value: "11h" | ||
| - dps_val: "12h" | ||
| value: "12h" | ||
| - entity: sensor | ||
| translation_key: time_remaining | ||
| class: duration | ||
| category: diagnostic | ||
| dps: | ||
| - id: 20 | ||
| type: integer | ||
| name: sensor | ||
| unit: min | ||
| - entity: select | ||
| translation_key: temperature_unit | ||
| category: config | ||
| dps: | ||
| - id: 18 | ||
| type: string | ||
| name: option | ||
| optional: true | ||
| mapping: | ||
| - dps_val: c | ||
| value: celsius | ||
| - dps_val: f | ||
| value: fahrenheit | ||
| - entity: switch | ||
| translation_key: night_mode | ||
| category: config | ||
| dps: | ||
| - id: 101 | ||
| type: boolean | ||
| name: switch | ||
| - entity: sensor | ||
| translation_key: status | ||
| class: enum | ||
| category: diagnostic | ||
| dps: | ||
| - id: 22 | ||
| type: bitfield | ||
| name: sensor | ||
| optional: true | ||
| mapping: | ||
| - dps_val: 0 | ||
| value: normal | ||
| - dps_val: 1 | ||
| value: no_water | ||
| - dps_val: 2 | ||
| value: overflowing | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -383,7 +383,8 @@ | |
| "state": { | ||
| "laundry": "Сухо пране", | ||
| "purify": "Пречистете", | ||
| "continuous": "Непрекъснато" | ||
| "manual": "Ръчно", | ||
| "normal": "Нормально" | ||
| } | ||
| } | ||
| } | ||
|
|
@@ -461,6 +462,9 @@ | |
| } | ||
| } | ||
| } | ||
| }, | ||
| "spray_level": { | ||
| "name": "Интензивност на пара" | ||
| } | ||
| }, | ||
| "light": { | ||
|
|
@@ -493,6 +497,9 @@ | |
| }, | ||
| "rangehood_light": { | ||
| "name": "Светлина на абсорбатора" | ||
| }, | ||
| "ambient_light": { | ||
| "name": "Околна светлина" | ||
| } | ||
| }, | ||
| "lock": { | ||
|
|
@@ -766,7 +773,6 @@ | |
| "6d": "6 дни", | ||
| "7d": "7 дни" | ||
| } | ||
|
|
||
| }, | ||
| "temperature_unit": { | ||
| "name": "Температурна единица", | ||
|
|
@@ -1223,6 +1229,15 @@ | |
| }, | ||
| "rangehood": { | ||
| "name": "Абсорбатор" | ||
| }, | ||
| "warm_mist": { | ||
| "name": "Топла пара" | ||
| }, | ||
| "plasma": { | ||
| "name": "Плазма" | ||
| }, | ||
| "night_mode": { | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You can use sleep instead to avoid introducing a new translation that is the same meaning
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This was used in an attempt to be close to what the manual states while being well descriptive. The manual reports it as
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe the Czech translation could use some work if the current "Sleep" does not mean the same as night mode, as that is the meaning that many other devices give it (reducing lighting brightness and noise to minimum)
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If that was the goal of the translation than something like
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do you want to have the |
||
| "name": "Нощен режим" | ||
| } | ||
| }, | ||
| "text": { | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.