python-hilo 2026.3.2__tar.gz → 2026.3.4__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.
- {python_hilo-2026.3.2 → python_hilo-2026.3.4}/PKG-INFO +1 -1
- {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/const.py +11 -1
- {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyproject.toml +1 -1
- {python_hilo-2026.3.2 → python_hilo-2026.3.4}/LICENSE +0 -0
- {python_hilo-2026.3.2 → python_hilo-2026.3.4}/README.md +0 -0
- {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/__init__.py +0 -0
- {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/api.py +0 -0
- {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/device/__init__.py +0 -0
- {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/device/climate.py +0 -0
- {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/device/graphql_value_mapper.py +0 -0
- {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/device/light.py +0 -0
- {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/device/sensor.py +0 -0
- {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/device/switch.py +0 -0
- {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/devices.py +0 -0
- {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/event.py +0 -0
- {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/exceptions.py +0 -0
- {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/graphql.py +0 -0
- {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/oauth2helper.py +0 -0
- {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/util/__init__.py +0 -0
- {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/util/state.py +0 -0
- {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/websocket.py +0 -0
|
@@ -11,7 +11,7 @@ INSTANCE_ID: Final = str(uuid.uuid4())[24:]
|
|
|
11
11
|
LOG: Final = logging.getLogger(__package__)
|
|
12
12
|
DEFAULT_STATE_FILE: Final = "hilo_state.yaml"
|
|
13
13
|
REQUEST_RETRY: Final = 9
|
|
14
|
-
PYHILO_VERSION: Final = "2026.3.
|
|
14
|
+
PYHILO_VERSION: Final = "2026.3.04"
|
|
15
15
|
# TODO: Find a way to keep previous line in sync with pyproject.toml automatically
|
|
16
16
|
|
|
17
17
|
CONTENT_TYPE_FORM: Final = "application/x-www-form-urlencoded"
|
|
@@ -202,6 +202,11 @@ HILO_DEVICE_TYPES: Final = {
|
|
|
202
202
|
"Thermostat24V": "Climate",
|
|
203
203
|
"Tracker": "Sensor",
|
|
204
204
|
"SinopeWaterHeater": "Switch",
|
|
205
|
+
"MysaThermostat": "Climate",
|
|
206
|
+
"TCC24V": "Climate",
|
|
207
|
+
"SinopeThermostat": "Climate",
|
|
208
|
+
"SinopeFloorThermostat": "Climate",
|
|
209
|
+
"Sinope24V": "Climate",
|
|
205
210
|
}
|
|
206
211
|
|
|
207
212
|
HILO_UNIT_CONVERSION: Final = {
|
|
@@ -247,6 +252,11 @@ HILO_PROVIDERS: Final = {
|
|
|
247
252
|
1: "Hilo",
|
|
248
253
|
2: "Netatmo",
|
|
249
254
|
3: "OneLink",
|
|
255
|
+
5: "Elmec",
|
|
256
|
+
6: "Resideo",
|
|
257
|
+
7: "Resideo TCC",
|
|
258
|
+
8: "Mysa",
|
|
259
|
+
9: "Sinope",
|
|
250
260
|
}
|
|
251
261
|
|
|
252
262
|
JASCO_MODELS: Final = [
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|