Skip to content

Commit

Permalink
Added fan speed config variables
Browse files Browse the repository at this point in the history
  • Loading branch information
eriknn committed Dec 2, 2024
1 parent 8d3c4ab commit ab942bf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 59 deletions.
2 changes: 1 addition & 1 deletion custom_components/swegon/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
"issue_tracker": "https://github.com/eriknn/swegon/issues",
"loggers": ["custom_components.swegon"],
"requirements": [],
"version": "1.0.0"
"version": "1.0.5"
}
8 changes: 7 additions & 1 deletion custom_components/swegon/pyswegon/devices/casa_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,5 +129,11 @@ def __init__(self):
self.Datapoints[CONFIG]["Night_Cooling_FreshAir_Start"] = Modbus_Datapoint(5165) #5165
self.Datapoints[CONFIG]["Night_Cooling_RoomTemp_Start"] = Modbus_Datapoint(5166) #5166
self.Datapoints[CONFIG]["Night_Cooling_SupplyTemp_Min"] = Modbus_Datapoint(5167) #5167

self.Datapoints[CONFIG]["Away_Supply_Speed"] = Modbus_Datapoint(5301) #5301
self.Datapoints[CONFIG]["Away_Exhaust_Speed"] = Modbus_Datapoint(5302) #5302
self.Datapoints[CONFIG]["Home_Supply_Speed"] = Modbus_Datapoint(5303) #5303
self.Datapoints[CONFIG]["Home_Exhaust_Speed"] = Modbus_Datapoint(5304) #5304
self.Datapoints[CONFIG]["Boost_Supply_Speed"] = Modbus_Datapoint(5305) #5305
self.Datapoints[CONFIG]["Boost_Exhaust_Speed"] = Modbus_Datapoint(5306) #5306

_LOGGER.debug("Loaded base datapoints for Swegon Casa")
57 changes: 0 additions & 57 deletions custom_components/swegon/translations/en.json

This file was deleted.

0 comments on commit ab942bf

Please sign in to comment.