pyControl4 1.3.0__py3-none-any.whl → 1.4.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
pyControl4/climate.py CHANGED
@@ -43,10 +43,18 @@ class C4Climate(C4Entity):
43
43
  async def getCoolSetpointF(self):
44
44
  """Returns the cooling setpoint temperature in Fahrenheit."""
45
45
  return await self.director.getItemVariableValue(self.item_id, "COOL_SETPOINT_F")
46
+
47
+ async def getCoolSetpointC(self):
48
+ """Returns the cooling setpoint temperature in Celsius."""
49
+ return await self.director.getItemVariableValue(self.item_id, "COOL_SETPOINT_C")
46
50
 
47
51
  async def getHeatSetpointF(self):
48
52
  """Returns the heating setpoint temperature in Fahrenheit."""
49
53
  return await self.director.getItemVariableValue(self.item_id, "HEAT_SETPOINT_F")
54
+
55
+ async def getHeatSetpointC(self):
56
+ """Returns the heating setpoint temperature in Celsius."""
57
+ return await self.director.getItemVariableValue(self.item_id, "HEAT_SETPOINT_C")
50
58
 
51
59
  # ------------------------
52
60
  # Sensor Readings
@@ -56,19 +64,19 @@ class C4Climate(C4Entity):
56
64
  """Returns the current humidity percentage."""
57
65
  return await self.director.getItemVariableValue(self.item_id, "HUMIDITY")
58
66
 
59
- async def getCurrentTemperature(self):
67
+ async def getCurrentTemperatureF(self):
60
68
  """Returns the current ambient temperature in Fahrenheit."""
61
69
  return await self.director.getItemVariableValue(self.item_id, "TEMPERATURE_F")
70
+
71
+ async def getCurrentTemperatureC(self):
72
+ """Returns the current ambient temperature in Celsius."""
73
+ return await self.director.getItemVariableValue(self.item_id, "TEMPERATURE_C")
62
74
 
63
75
  # ------------------------
64
76
  # Setters / Commands
65
77
  # ------------------------
66
78
 
67
- async def setTemperature(self, temp):
68
- """Sets the cooling setpoint temperature in Fahrenheit."""
69
- await self.setCoolSetpoint(temp) # Delegates to the proper method
70
-
71
- async def setCoolSetpoint(self, temp):
79
+ async def setCoolSetpointF(self, temp):
72
80
  """Sets the cooling setpoint temperature in Fahrenheit."""
73
81
  await self.director.sendPostRequest(
74
82
  f"/api/v1/items/{self.item_id}/commands",
@@ -76,13 +84,29 @@ class C4Climate(C4Entity):
76
84
  {"FAHRENHEIT": temp},
77
85
  )
78
86
 
79
- async def setHeatSetpoint(self, temp):
87
+ async def setCoolSetpointC(self, temp):
88
+ """Sets the cooling setpoint temperature in Celsius."""
89
+ await self.director.sendPostRequest(
90
+ f"/api/v1/items/{self.item_id}/commands",
91
+ "SET_SETPOINT_COOL",
92
+ {"CELSIUS": temp},
93
+ )
94
+
95
+ async def setHeatSetpointF(self, temp):
80
96
  """Sets the heating setpoint temperature in Fahrenheit."""
81
97
  await self.director.sendPostRequest(
82
98
  f"/api/v1/items/{self.item_id}/commands",
83
99
  "SET_SETPOINT_HEAT",
84
100
  {"FAHRENHEIT": temp},
85
101
  )
102
+
103
+ async def setHeatSetpointC(self, temp):
104
+ """Sets the heating setpoint temperature in Celsius."""
105
+ await self.director.sendPostRequest(
106
+ f"/api/v1/items/{self.item_id}/commands",
107
+ "SET_SETPOINT_HEAT",
108
+ {"CELSIUS": temp},
109
+ )
86
110
 
87
111
  async def setHvacMode(self, mode):
88
112
  """Sets the HVAC operating mode (e.g., heat, cool, auto)."""
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyControl4
3
- Version: 1.3.0
3
+ Version: 1.4.0
4
4
  Summary: Python 3 asyncio package for interacting with Control4 systems
5
5
  Home-page: https://github.com/lawtancool/pyControl4
6
6
  Author: lawtancool
@@ -2,7 +2,7 @@ pyControl4/__init__.py,sha256=JR6zFcZJ-M1o8g28gdU71uZHYzh-b21x7rg3EWrf3hg,394
2
2
  pyControl4/account.py,sha256=eyWkGaDla4_gLvv8GHBxmJ2iBMxpdY7ax53JryWOtcE,9760
3
3
  pyControl4/alarm.py,sha256=KcZreUOocncgoIoRVHl9ZL1zesrXuVYPfXVvDuUpXcs,7153
4
4
  pyControl4/blind.py,sha256=7Aat1FyT-OJyv_xES-ol2U-70nKpQbymGUfTTsB3VDk,4436
5
- pyControl4/climate.py,sha256=QsTJbp5vYNpfphGFqQBVV5FTsTja5mJtzxz4pIIkFWc,3963
5
+ pyControl4/climate.py,sha256=c2UEJWSti6DPNcwf5UL2JYpzf-X-fallhxhzGFEIxz8,4949
6
6
  pyControl4/director.py,sha256=QY6Re-fGgV-V340rTjpkSCfqvVRD_kbnDEHScoGJ0gk,10718
7
7
  pyControl4/error_handling.py,sha256=3VpZ4JsF5kgrSNASHYVEQVIJq_vs8kvMk0-bDsd_FXU,3866
8
8
  pyControl4/fan.py,sha256=MldA1E5VDkLJrS2Zp-5tUBEgPsUGYH7D6J-i2OdFJ5I,2140
@@ -10,8 +10,8 @@ pyControl4/light.py,sha256=qc8AGFiM9wnS-gi1tecWGGBRo-9dPZzYBHvE0QenW8w,1587
10
10
  pyControl4/relay.py,sha256=GWYxdaB9sG3ixD87IY2yV3UKulIB7mkq1xyjxtUDW1Q,2225
11
11
  pyControl4/room.py,sha256=nGhVxTw1QjX3UFmFZEO8TYBPCUae-NqObuVTPShEkqs,5195
12
12
  pyControl4/websocket.py,sha256=9UsxO8tFUENuya1tzwTYk2haWnnDutUgQ5jTLTlr5dU,8823
13
- pycontrol4-1.3.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
14
- pycontrol4-1.3.0.dist-info/METADATA,sha256=WEAbFu5iVvjZ-iKRNG2u2BYlNDPytORQ4dX1Zpm_hmU,3285
15
- pycontrol4-1.3.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
16
- pycontrol4-1.3.0.dist-info/top_level.txt,sha256=8hJWE4Vz6ySUM1pzgZQCyngE7zVDW8qp7qe_4JXKRpY,11
17
- pycontrol4-1.3.0.dist-info/RECORD,,
13
+ pycontrol4-1.4.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
14
+ pycontrol4-1.4.0.dist-info/METADATA,sha256=-6Xbfy3fWMHePbDtBzkWFG6bCg03fWmJDu7yESsjD5U,3285
15
+ pycontrol4-1.4.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
16
+ pycontrol4-1.4.0.dist-info/top_level.txt,sha256=8hJWE4Vz6ySUM1pzgZQCyngE7zVDW8qp7qe_4JXKRpY,11
17
+ pycontrol4-1.4.0.dist-info/RECORD,,