Skip to content
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

Add support for Point Panel Heater Series. #2409

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions custom_components/tuya_local/devices/point_panel_heater.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: Point Panel Heater
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Make this just "Panel heater", in case other brands of device also match.

products:
- id: nqj51hxb2tx5kklv
name: Point Panel Heater POPANW600
primary_entity:
entity: climate
translation_only_key: heater
dps:
- id: 1
name: hvac_mode
type: boolean
mapping:
- dps_val: true
value: "heat"
- dps_val: false
value: "off"
- id: 2
name: temperature
type: integer
unit: C
mapping:
- scale: 10
range:
min: 50
max: 500
- id: 3
name: current_temperature
type: integer
- id: 4
name: preset_mode
type: string
optional: true
mapping:
- dps_val: ECO
value: eco
- dps_val: Comfort
value: comfort
secondary_entities:
- entity: lock
translation_key: child_lock
category: config
dps:
- id: 7
type: boolean
name: lock
- entity: switch
translation_key: display_auto
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is currently no translation key for "display_auto". What does this switch do? Perhaps it is better as a light with translation key display?

category: config
dps:
- id: 109
type: boolean
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

name: switch

perhaps even more of your config got cut off here?

Loading