pyControl4 1.4.0__tar.gz → 1.5.0__tar.gz

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.
Files changed (22) hide show
  1. {pycontrol4-1.4.0 → pycontrol4-1.5.0}/PKG-INFO +1 -1
  2. {pycontrol4-1.4.0 → pycontrol4-1.5.0}/pyControl4/climate.py +20 -4
  3. {pycontrol4-1.4.0 → pycontrol4-1.5.0}/pyControl4.egg-info/PKG-INFO +1 -1
  4. {pycontrol4-1.4.0 → pycontrol4-1.5.0}/setup.py +1 -1
  5. {pycontrol4-1.4.0 → pycontrol4-1.5.0}/LICENSE +0 -0
  6. {pycontrol4-1.4.0 → pycontrol4-1.5.0}/README.md +0 -0
  7. {pycontrol4-1.4.0 → pycontrol4-1.5.0}/pyControl4/__init__.py +0 -0
  8. {pycontrol4-1.4.0 → pycontrol4-1.5.0}/pyControl4/account.py +0 -0
  9. {pycontrol4-1.4.0 → pycontrol4-1.5.0}/pyControl4/alarm.py +0 -0
  10. {pycontrol4-1.4.0 → pycontrol4-1.5.0}/pyControl4/blind.py +0 -0
  11. {pycontrol4-1.4.0 → pycontrol4-1.5.0}/pyControl4/director.py +0 -0
  12. {pycontrol4-1.4.0 → pycontrol4-1.5.0}/pyControl4/error_handling.py +0 -0
  13. {pycontrol4-1.4.0 → pycontrol4-1.5.0}/pyControl4/fan.py +0 -0
  14. {pycontrol4-1.4.0 → pycontrol4-1.5.0}/pyControl4/light.py +0 -0
  15. {pycontrol4-1.4.0 → pycontrol4-1.5.0}/pyControl4/relay.py +0 -0
  16. {pycontrol4-1.4.0 → pycontrol4-1.5.0}/pyControl4/room.py +0 -0
  17. {pycontrol4-1.4.0 → pycontrol4-1.5.0}/pyControl4/websocket.py +0 -0
  18. {pycontrol4-1.4.0 → pycontrol4-1.5.0}/pyControl4.egg-info/SOURCES.txt +0 -0
  19. {pycontrol4-1.4.0 → pycontrol4-1.5.0}/pyControl4.egg-info/dependency_links.txt +0 -0
  20. {pycontrol4-1.4.0 → pycontrol4-1.5.0}/pyControl4.egg-info/requires.txt +0 -0
  21. {pycontrol4-1.4.0 → pycontrol4-1.5.0}/pyControl4.egg-info/top_level.txt +0 -0
  22. {pycontrol4-1.4.0 → pycontrol4-1.5.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyControl4
3
- Version: 1.4.0
3
+ Version: 1.5.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
@@ -36,6 +36,14 @@ class C4Climate(C4Entity):
36
36
  """Returns a list of supported fan modes."""
37
37
  return await self.director.getItemVariableValue(self.item_id, "FAN_MODES_LIST")
38
38
 
39
+ async def getHoldMode(self):
40
+ """Returns the currently active hold mode."""
41
+ return await self.director.getItemVariableValue(self.item_id, "HOLD_MODE")
42
+
43
+ async def getHoldModes(self):
44
+ """Returns a list of supported hold modes."""
45
+ return await self.director.getItemVariableValue(self.item_id, "HOLD_MODES_LIST")
46
+
39
47
  # ------------------------
40
48
  # Setpoint Getters
41
49
  # ------------------------
@@ -43,7 +51,7 @@ class C4Climate(C4Entity):
43
51
  async def getCoolSetpointF(self):
44
52
  """Returns the cooling setpoint temperature in Fahrenheit."""
45
53
  return await self.director.getItemVariableValue(self.item_id, "COOL_SETPOINT_F")
46
-
54
+
47
55
  async def getCoolSetpointC(self):
48
56
  """Returns the cooling setpoint temperature in Celsius."""
49
57
  return await self.director.getItemVariableValue(self.item_id, "COOL_SETPOINT_C")
@@ -51,7 +59,7 @@ class C4Climate(C4Entity):
51
59
  async def getHeatSetpointF(self):
52
60
  """Returns the heating setpoint temperature in Fahrenheit."""
53
61
  return await self.director.getItemVariableValue(self.item_id, "HEAT_SETPOINT_F")
54
-
62
+
55
63
  async def getHeatSetpointC(self):
56
64
  """Returns the heating setpoint temperature in Celsius."""
57
65
  return await self.director.getItemVariableValue(self.item_id, "HEAT_SETPOINT_C")
@@ -67,7 +75,7 @@ class C4Climate(C4Entity):
67
75
  async def getCurrentTemperatureF(self):
68
76
  """Returns the current ambient temperature in Fahrenheit."""
69
77
  return await self.director.getItemVariableValue(self.item_id, "TEMPERATURE_F")
70
-
78
+
71
79
  async def getCurrentTemperatureC(self):
72
80
  """Returns the current ambient temperature in Celsius."""
73
81
  return await self.director.getItemVariableValue(self.item_id, "TEMPERATURE_C")
@@ -99,7 +107,7 @@ class C4Climate(C4Entity):
99
107
  "SET_SETPOINT_HEAT",
100
108
  {"FAHRENHEIT": temp},
101
109
  )
102
-
110
+
103
111
  async def setHeatSetpointC(self, temp):
104
112
  """Sets the heating setpoint temperature in Celsius."""
105
113
  await self.director.sendPostRequest(
@@ -131,3 +139,11 @@ class C4Climate(C4Entity):
131
139
  "SET_PRESET",
132
140
  {"NAME": preset},
133
141
  )
142
+
143
+ async def setHoldMode(self, mode):
144
+ """Sets the hold mode."""
145
+ await self.director.sendPostRequest(
146
+ f"/api/v1/items/{self.item_id}/commands",
147
+ "SET_MODE_HOLD",
148
+ {"MODE": mode},
149
+ )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyControl4
3
- Version: 1.4.0
3
+ Version: 1.5.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
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
5
5
 
6
6
  setuptools.setup(
7
7
  name="pyControl4", # Replace with your own username
8
- version="1.4.0",
8
+ version="1.5.0",
9
9
  author="lawtancool",
10
10
  author_email="contact@lawrencetan.ca",
11
11
  description="Python 3 asyncio package for interacting with Control4 systems",
File without changes
File without changes
File without changes
File without changes