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 Morento Air Purifier and Edge Theory Cold Plunge configurations #2554

Merged
merged 5 commits into from
Dec 26, 2024
Merged
Changes from 3 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
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
name: Edge Theory Cold Plunge Heat Pump
make-all marked this conversation as resolved.
Show resolved Hide resolved
products:
- id: orwtoimcnasji7jw
name: Cold Plunge Heat Pump
primary_entity:
entity: climate
dps:
- id: 121
name: hvac_mode
type: boolean
mapping:
- dps_val: false
value: "off"
icon: "mdi:hvac-off"
make-all marked this conversation as resolved.
Show resolved Hide resolved
- dps_val: true
value: "heat_cool"
make-all marked this conversation as resolved.
Show resolved Hide resolved
icon: "mdi:hvac"

Check failure on line 18 in custom_components/tuya_local/devices/edgetheorylabs_coldplunge_heatpump.yaml

View workflow job for this annotation

GitHub Actions / lint

18:1 [trailing-spaces] trailing spaces
- id: 17
name: temperature
type: integer
range:
min: 32
max: 107
unit: F

Check failure on line 26 in custom_components/tuya_local/devices/edgetheorylabs_coldplunge_heatpump.yaml

View workflow job for this annotation

GitHub Actions / lint

26:1 [trailing-spaces] trailing spaces
- id: 29
name: current_temperature
type: integer
mapping:
- scale: 10

Check failure on line 32 in custom_components/tuya_local/devices/edgetheorylabs_coldplunge_heatpump.yaml

View workflow job for this annotation

GitHub Actions / lint

32:1 [trailing-spaces] trailing spaces
- id: 115
name: mode
type: boolean
mapping:
- dps_val: false
value: "cool"
icon: "mdi:snowflake"
- dps_val: true
value: "heat"
icon: "mdi:hot-tub"

secondary_entities:
- entity: binary_sensor
name: Compressor
class: running
category: diagnostic
icon: "mdi:engine"
dps:
- id: 122
type: boolean
name: sensor

- entity: sensor
name: Water Flow Rate
device_class: volume_flow_rate
make-all marked this conversation as resolved.
Show resolved Hide resolved
state_class: measurement
make-all marked this conversation as resolved.
Show resolved Hide resolved
category: diagnostic
icon: "mdi:water-pump"
dps:
- id: 102
type: integer
name: sensor
unit: "L/min"
mapping:
- scale: 10

Check failure on line 68 in custom_components/tuya_local/devices/edgetheorylabs_coldplunge_heatpump.yaml

View workflow job for this annotation

GitHub Actions / lint

68:1 [trailing-spaces] trailing spaces
- entity: binary_sensor
name: Water Pump
class: running
category: diagnostic
icon: "mdi:water-pump"
dps:
- id: 125
type: boolean
name: sensor
Loading