aiohomematic 2025.11.3__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.

Potentially problematic release.


This version of aiohomematic might be problematic. Click here for more details.

Files changed (77) hide show
  1. aiohomematic/__init__.py +61 -0
  2. aiohomematic/async_support.py +212 -0
  3. aiohomematic/central/__init__.py +2309 -0
  4. aiohomematic/central/decorators.py +155 -0
  5. aiohomematic/central/rpc_server.py +295 -0
  6. aiohomematic/client/__init__.py +1848 -0
  7. aiohomematic/client/_rpc_errors.py +81 -0
  8. aiohomematic/client/json_rpc.py +1326 -0
  9. aiohomematic/client/rpc_proxy.py +311 -0
  10. aiohomematic/const.py +1127 -0
  11. aiohomematic/context.py +18 -0
  12. aiohomematic/converter.py +108 -0
  13. aiohomematic/decorators.py +302 -0
  14. aiohomematic/exceptions.py +164 -0
  15. aiohomematic/hmcli.py +186 -0
  16. aiohomematic/model/__init__.py +140 -0
  17. aiohomematic/model/calculated/__init__.py +84 -0
  18. aiohomematic/model/calculated/climate.py +290 -0
  19. aiohomematic/model/calculated/data_point.py +327 -0
  20. aiohomematic/model/calculated/operating_voltage_level.py +299 -0
  21. aiohomematic/model/calculated/support.py +234 -0
  22. aiohomematic/model/custom/__init__.py +177 -0
  23. aiohomematic/model/custom/climate.py +1532 -0
  24. aiohomematic/model/custom/cover.py +792 -0
  25. aiohomematic/model/custom/data_point.py +334 -0
  26. aiohomematic/model/custom/definition.py +871 -0
  27. aiohomematic/model/custom/light.py +1128 -0
  28. aiohomematic/model/custom/lock.py +394 -0
  29. aiohomematic/model/custom/siren.py +275 -0
  30. aiohomematic/model/custom/support.py +41 -0
  31. aiohomematic/model/custom/switch.py +175 -0
  32. aiohomematic/model/custom/valve.py +114 -0
  33. aiohomematic/model/data_point.py +1123 -0
  34. aiohomematic/model/device.py +1445 -0
  35. aiohomematic/model/event.py +208 -0
  36. aiohomematic/model/generic/__init__.py +217 -0
  37. aiohomematic/model/generic/action.py +34 -0
  38. aiohomematic/model/generic/binary_sensor.py +30 -0
  39. aiohomematic/model/generic/button.py +27 -0
  40. aiohomematic/model/generic/data_point.py +171 -0
  41. aiohomematic/model/generic/dummy.py +147 -0
  42. aiohomematic/model/generic/number.py +76 -0
  43. aiohomematic/model/generic/select.py +39 -0
  44. aiohomematic/model/generic/sensor.py +74 -0
  45. aiohomematic/model/generic/switch.py +54 -0
  46. aiohomematic/model/generic/text.py +29 -0
  47. aiohomematic/model/hub/__init__.py +333 -0
  48. aiohomematic/model/hub/binary_sensor.py +24 -0
  49. aiohomematic/model/hub/button.py +28 -0
  50. aiohomematic/model/hub/data_point.py +340 -0
  51. aiohomematic/model/hub/number.py +39 -0
  52. aiohomematic/model/hub/select.py +49 -0
  53. aiohomematic/model/hub/sensor.py +37 -0
  54. aiohomematic/model/hub/switch.py +44 -0
  55. aiohomematic/model/hub/text.py +30 -0
  56. aiohomematic/model/support.py +586 -0
  57. aiohomematic/model/update.py +143 -0
  58. aiohomematic/property_decorators.py +496 -0
  59. aiohomematic/py.typed +0 -0
  60. aiohomematic/rega_scripts/fetch_all_device_data.fn +92 -0
  61. aiohomematic/rega_scripts/get_program_descriptions.fn +30 -0
  62. aiohomematic/rega_scripts/get_serial.fn +44 -0
  63. aiohomematic/rega_scripts/get_system_variable_descriptions.fn +30 -0
  64. aiohomematic/rega_scripts/set_program_state.fn +12 -0
  65. aiohomematic/rega_scripts/set_system_variable.fn +15 -0
  66. aiohomematic/store/__init__.py +34 -0
  67. aiohomematic/store/dynamic.py +551 -0
  68. aiohomematic/store/persistent.py +988 -0
  69. aiohomematic/store/visibility.py +812 -0
  70. aiohomematic/support.py +664 -0
  71. aiohomematic/validator.py +112 -0
  72. aiohomematic-2025.11.3.dist-info/METADATA +144 -0
  73. aiohomematic-2025.11.3.dist-info/RECORD +77 -0
  74. aiohomematic-2025.11.3.dist-info/WHEEL +5 -0
  75. aiohomematic-2025.11.3.dist-info/entry_points.txt +2 -0
  76. aiohomematic-2025.11.3.dist-info/licenses/LICENSE +21 -0
  77. aiohomematic-2025.11.3.dist-info/top_level.txt +1 -0
@@ -0,0 +1,112 @@
1
+ # SPDX-License-Identifier: MIT
2
+ # Copyright (c) 2021-2025
3
+ """
4
+ Validator functions used within aiohomematic.
5
+
6
+ Public API of this module is defined by __all__.
7
+ """
8
+
9
+ from __future__ import annotations
10
+
11
+ import inspect
12
+
13
+ import voluptuous as vol
14
+
15
+ from aiohomematic.const import BLOCKED_CATEGORIES, CATEGORIES, HUB_CATEGORIES, MAX_WAIT_FOR_CALLBACK, DataPointCategory
16
+ from aiohomematic.model.custom import definition as hmed
17
+ from aiohomematic.support import (
18
+ check_password,
19
+ is_channel_address,
20
+ is_device_address,
21
+ is_hostname,
22
+ is_ipv4_address,
23
+ is_paramset_key,
24
+ )
25
+
26
+ channel_no = vol.All(vol.Coerce(int), vol.Range(min=0, max=999))
27
+ positive_int = vol.All(vol.Coerce(int), vol.Range(min=0))
28
+ wait_for = vol.All(vol.Coerce(int), vol.Range(min=1, max=MAX_WAIT_FOR_CALLBACK))
29
+
30
+
31
+ def channel_address(value: str, /) -> str:
32
+ """Validate channel_address."""
33
+ if is_channel_address(address=value):
34
+ return value
35
+ raise vol.Invalid("channel_address is invalid")
36
+
37
+
38
+ def device_address(value: str, /) -> str:
39
+ """Validate channel_address."""
40
+ if is_device_address(address=value):
41
+ return value
42
+ raise vol.Invalid("device_address is invalid")
43
+
44
+
45
+ def hostname(value: str, /) -> str:
46
+ """Validate hostname."""
47
+ if is_hostname(hostname=value):
48
+ return value
49
+ raise vol.Invalid("hostname is invalid")
50
+
51
+
52
+ def ipv4_address(value: str, /) -> str:
53
+ """Validate ipv4_address."""
54
+ if is_ipv4_address(address=value):
55
+ return value
56
+ raise vol.Invalid("ipv4_address is invalid")
57
+
58
+
59
+ def password(value: str, /) -> str:
60
+ """Validate password."""
61
+ if check_password(password=value):
62
+ return value
63
+ raise vol.Invalid("password is invalid")
64
+
65
+
66
+ def paramset_key(value: str, /) -> str:
67
+ """Validate paramset_key."""
68
+ if is_paramset_key(paramset_key=value):
69
+ return value
70
+ raise vol.Invalid("paramset_key is invalid")
71
+
72
+
73
+ address = vol.All(vol.Coerce(str), vol.Any(device_address, channel_address))
74
+ host = vol.All(vol.Coerce(str), vol.Any(hostname, ipv4_address))
75
+
76
+
77
+ def validate_startup() -> None:
78
+ """
79
+ Validate enum and mapping exhaustiveness at startup.
80
+
81
+ - Ensure DataPointCategory coverage: all categories except UNDEFINED must be present
82
+ in either HUB_CATEGORIES or CATEGORIES. UNDEFINED must not appear in those lists.
83
+ """
84
+ categories_in_lists = set(BLOCKED_CATEGORIES) | set(CATEGORIES) | set(HUB_CATEGORIES)
85
+ all_categories = set(DataPointCategory)
86
+ if DataPointCategory.UNDEFINED in categories_in_lists:
87
+ raise vol.Invalid(
88
+ "DataPointCategory.UNDEFINED must not be present in BLOCKED_CATEGORIES/CATEGORIES/HUB_CATEGORIES"
89
+ )
90
+
91
+ if missing := all_categories - {DataPointCategory.UNDEFINED} - categories_in_lists:
92
+ missing_str = ", ".join(sorted(c.value for c in missing))
93
+ raise vol.Invalid(
94
+ f"BLOCKED_CATEGORIES/CATEGORIES/HUB_CATEGORIES are not exhaustive. Missing categories: {missing_str}"
95
+ )
96
+
97
+ # Validate custom definition mapping schema (Field <-> Parameter mappings)
98
+ # This ensures Field mappings are valid and consistent at startup.
99
+ if hmed.validate_custom_data_point_definition() is None:
100
+ raise vol.Invalid("Custom data point definition schema is invalid")
101
+
102
+
103
+ # Define public API for this module
104
+ __all__ = tuple(
105
+ sorted(
106
+ name
107
+ for name, obj in globals().items()
108
+ if not name.startswith("_")
109
+ and (inspect.isfunction(obj) or inspect.isclass(obj))
110
+ and getattr(obj, "__module__", __name__) == __name__
111
+ )
112
+ )
@@ -0,0 +1,144 @@
1
+ Metadata-Version: 2.4
2
+ Name: aiohomematic
3
+ Version: 2025.11.3
4
+ Summary: Homematic interface for Home Assistant running on Python 3.
5
+ Home-page: https://github.com/sukramj/aiohomematic
6
+ Author-email: SukramJ <sukramj@icloud.com>, Daniel Perna <danielperna84@gmail.com>
7
+ License: MIT License
8
+ Project-URL: Source Code, https://github.com/sukramj/aiohomematic
9
+ Project-URL: Bug Reports, https://github.com/sukramj/aiohomematic/issues
10
+ Project-URL: Docs: Dev, https://github.com/sukramj/aiohomematic
11
+ Project-URL: Forum, https://github.com/sukramj/aiohomematic/discussions
12
+ Keywords: home,automation,homematic,openccu,homegear
13
+ Classifier: Development Status :: 5 - Production/Stable
14
+ Classifier: Intended Audience :: End Users/Desktop
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: License :: OSI Approved :: MIT License
17
+ Classifier: Operating System :: OS Independent
18
+ Classifier: Programming Language :: Python
19
+ Classifier: Programming Language :: Python :: 3
20
+ Classifier: Programming Language :: Python :: 3 :: Only
21
+ Classifier: Programming Language :: Python :: 3.13
22
+ Classifier: Programming Language :: Python :: 3.14
23
+ Classifier: Programming Language :: Python :: Implementation :: CPython
24
+ Classifier: Framework :: AsyncIO
25
+ Classifier: Typing :: Typed
26
+ Classifier: Topic :: Home Automation
27
+ Requires-Python: >=3.13
28
+ Description-Content-Type: text/markdown
29
+ License-File: LICENSE
30
+ Requires-Dist: aiohttp>=3.12.0
31
+ Requires-Dist: orjson>=3.11.0
32
+ Requires-Dist: python-slugify>=8.0.0
33
+ Requires-Dist: voluptuous>=0.15.0
34
+ Dynamic: license-file
35
+
36
+ [![releasebadge]][release]
37
+ [![License][license-shield]](LICENSE.md)
38
+ [![GitHub Sponsors][sponsorsbadge]][sponsors]
39
+
40
+ # AIO Homematic (hahomematic)
41
+
42
+ A lightweight Python 3 library that powers Home Assistant integrations for controlling and monitoring [Homematic](https://www.eq-3.com/products/homematic.html) and [HomematicIP](https://www.homematic-ip.com/en/start.html) devices. Some third‑party devices/gateways (e.g., Bosch, Intertechno) may be supported as well.
43
+
44
+ This project is the modern successor to [pyhomematic](https://github.com/danielperna84/pyhomematic), focusing on automatic entity creation, fewer manual device definitions, and faster startups.
45
+
46
+ ## How it works
47
+
48
+ Unlike pyhomematic, which required manual device mappings, aiohomematic automatically creates entities for each relevant parameter on every device channel (unless blacklisted). To achieve this it:
49
+
50
+ - Fetches and caches device paramsets (VALUES) for fast successive startups.
51
+ - Provides hooks for custom entity classes where complex behavior is needed (e.g., thermostats, lights, covers, climate, locks, sirens).
52
+ - Includes helpers for robust operation, such as automatic reconnection after CCU restarts.
53
+
54
+ ## Key features
55
+
56
+ - Automatic entity discovery from device/channel parameters.
57
+ - Extensible via custom entity classes for complex devices.
58
+ - Caching of paramsets to speed up restarts.
59
+ - Designed to integrate with Home Assistant.
60
+
61
+ ## Quickstart for Home Assistant
62
+
63
+ Use the Home Assistant custom integration "Homematic(IP) Local", which is powered by aiohomematic.
64
+
65
+ 1. Prerequisites
66
+ - Use latest version of Home Assistant.
67
+ - A CCU3, OpenCCU, or Homegear instance reachable from Home Assistant.
68
+ - For HomematicIP devices, ensure CCU firmware meets the minimum versions listed below.
69
+ 2. Install the integration
70
+ - Add the custom repository and install: https://github.com/sukramj/homematicip_local
71
+ - Follow the installation guide: https://github.com/sukramj/homematicip_local/wiki/Installation
72
+ 3. Configure via Home Assistant UI
73
+ - In Home Assistant: Settings → Devices & Services → Add Integration → search for "Homematic(IP) Local".
74
+ - Enter the CCU/Homegear host (IP or hostname). If you use HTTPS on the CCU, enable TLS and don't use verify if self‑signed.
75
+ - Always enter credentials.
76
+ - Choose which interfaces to enable (HM, HmIP, Virtual). Default ports are typically 2001 (HM), 2010 (HmIP), 9292 (Virtual).
77
+ 4. Network callbacks
78
+ - The integration needs to receive XML‑RPC callbacks from the CCU. Make sure Home Assistant is reachable from the CCU (no NAT/firewall blocking). Callbacks are only required for special network setups.
79
+ 5. Verify
80
+ - After setup, devices should appear under Devices & Services → Homematic(IP) Local. Discovery may take a few seconds after the first connection while paramsets are fetched and cached for faster restarts.
81
+
82
+ If you need to use aiohomematic directly in Python, see the Public API and example below.
83
+
84
+ ## Requirements
85
+
86
+ Due to a bug in earlier CCU2/CCU3 firmware, aiohomematic requires at least the following versions when used with HomematicIP devices:
87
+
88
+ - CCU2: 2.53.27
89
+ - CCU3: 3.53.26
90
+
91
+ See details here: https://github.com/OpenCCU/OpenCCU/issues/843. Other CCU‑like platforms using the buggy HmIPServer version are not supported.
92
+
93
+ ## Public API and imports
94
+
95
+ - The public API of aiohomematic is explicitly defined via **all** in each module and subpackage.
96
+ - Backwards‑compatible imports should target these modules:
97
+ - aiohomematic.central: CentralUnit, CentralConfig and related schemas
98
+ - aiohomematic.central.event: display received events from the backend
99
+ - aiohomematic.client: Client, InterfaceConfig, create_client, get_client
100
+ - aiohomematic.model: device/data point abstractions (see subpackages for details)
101
+ - aiohomematic.exceptions: library exception types intended for consumers
102
+ - aiohomematic.const: constants and enums (stable subset; see module **all**)
103
+ - aiohomematic.performance: display some performance metrics (enabled when DEBUG is enabled)
104
+ - The top‑level package only exposes **version** to avoid import cycles and keep startup lean. Prefer importing from the specific submodules listed above.
105
+
106
+ Example:
107
+
108
+ from aiohomematic.central import CentralConfig
109
+ from aiohomematic import client as hmcl
110
+
111
+ cfg = CentralConfig(
112
+ central_id="ccu-main",
113
+ host="ccu.local",
114
+ username="admin",
115
+ password="secret",
116
+ default_callback_port=43439,
117
+ interface_configs={hmcl.InterfaceConfig(interface=hmcl.Interface.HMIP, port=2010, enabled=True)},
118
+ )
119
+ central = cfg.create_central()
120
+
121
+ ## Useful links
122
+
123
+ - Changelog: [see](changelog.md) for release history and latest changes.
124
+ - Definition of calculated data points: [see](docs/calculated_data_points.md)
125
+ - Naming: [see](docs/naming.md) for how device, channel and data point names are created.
126
+ - Homematic(IP) Local integration: https://github.com/sukramj/homematicip_local
127
+ - Input select helper: [see](docs/input_select_helper.md) for an overview of how to use the input select helper.
128
+ - Troubleshooting with Home Assistant: [see](docs/homeassistant_troubleshooting.md) for common issues and how to debug them.
129
+ - Unignore mechanism: [see](docs/unignore.md) for how to unignore devices that are ignored by default.
130
+
131
+ ## Useful developer links
132
+
133
+ - Architecture overview: [see](docs/architecture.md) for an overview of the architecture of the library.
134
+ - Data flow: [see](docs/data_flow.md) for an overview of how data flows through the library.
135
+ - Extending the model: [see](docs/extension_points.md) for adding custom device profiles and calculated data points.
136
+ - Home Assistant lifecycle (discovery, updates, teardown): [see](docs/homeassistant_lifecycle.md) for details on how the integration works and how to debug issues.
137
+ - RSSI fix: [see](docs/rssi_fix.md) for how RSSI values are fixed for Home Assistant.
138
+ - Sequence diagrams: [see](docs/sequence_diagrams.md) for a sequence diagram of how the library works.
139
+
140
+ [license-shield]: https://img.shields.io/github/license/SukramJ/aiohomematic.svg?style=for-the-badge
141
+ [release]: https://github.com/SukramJ/aiohomematic/releases
142
+ [releasebadge]: https://img.shields.io/github/v/release/SukramJ/aiohomematic?style=for-the-badge
143
+ [sponsorsbadge]: https://img.shields.io/github/sponsors/SukramJ?style=for-the-badge&label=GitHub%20Sponsors&color=green
144
+ [sponsors]: https://github.com/sponsors/SukramJ
@@ -0,0 +1,77 @@
1
+ aiohomematic/__init__.py,sha256=Uo9CIoil0Arl3GwtgMZAwM8jhcgoBKcZEgj8cXYlswY,2258
2
+ aiohomematic/async_support.py,sha256=Fg6RLD7Irt1mTwXbLkfphJbfd7oU_Svhp23i3Bb4Q7k,8762
3
+ aiohomematic/const.py,sha256=14imO_n8SPkyn0NdoEMUCPD8L4EivdFpuLNWZvHaY_g,33981
4
+ aiohomematic/context.py,sha256=hGE-iPcPt21dY-1MZar-Hyh9YaKL-VS42xjrulIVyRQ,429
5
+ aiohomematic/converter.py,sha256=FiHU71M5RZ7N5FXJYh2CN14s63-PM-SHdb0cJ_CLx54,3602
6
+ aiohomematic/decorators.py,sha256=cSW0aF3PzrW_qW6H0sjRNH9eqO8ysqhXZDgJ2OJTZM4,11038
7
+ aiohomematic/exceptions.py,sha256=RLldRD4XY8iYuNYVdspCbbphGcKsximB7R5OL7cYKw0,5006
8
+ aiohomematic/hmcli.py,sha256=E44gJYSRiP0HGNHRD3LwWiYpIHpiBvJTsKcavVFIS8g,5635
9
+ aiohomematic/property_decorators.py,sha256=v8O_6hW5plpD1-Cmhbb-6t_RfAl8wD4TskWt777t8rY,17059
10
+ aiohomematic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ aiohomematic/support.py,sha256=d08Wx64ATiNVhOykp-7mf98mKfFRF2SwxMXptSZB8FU,21102
12
+ aiohomematic/validator.py,sha256=qX5janicu4jLrAVzKoyWgXe1XU4EOjk5-QhNFL4awTQ,3541
13
+ aiohomematic/central/__init__.py,sha256=eU8XeLV1ytBkwau_HqNmiaGYFkZ7MncVmL_fMW9lCYs,96716
14
+ aiohomematic/central/decorators.py,sha256=ja0d5MujL-Kfv399XIPRgiUxeyf67HwNWAuD7nmFJzg,6902
15
+ aiohomematic/central/rpc_server.py,sha256=EhvBy8oMjBTR8MvH5QXo3lvlsCNJrvu6B85_CAg6sG8,10742
16
+ aiohomematic/client/__init__.py,sha256=EwoMQ-M5j62N_wOhh9-PJnSw7PmSvLaElMMDAeocdGI,74370
17
+ aiohomematic/client/_rpc_errors.py,sha256=IaYjX60mpBJ43gDCJjuUSVraamy5jXHTRjOnutK4azs,2962
18
+ aiohomematic/client/json_rpc.py,sha256=5AxpgB7eOLudrhDpmEKrGgcYph_Tkas-IrGx4cn8_Yw,51849
19
+ aiohomematic/client/rpc_proxy.py,sha256=Am-MTLCVtQDPm2AOjVy1Bb4uulwdV2J6172SQRjdbso,11844
20
+ aiohomematic/model/__init__.py,sha256=gUYa8ROWSbXjZTWUTmINZ1bbYAxGkVpA-onxaJN2Iso,5436
21
+ aiohomematic/model/data_point.py,sha256=oPS48r-saBHs1_gZ6XRAwTZv3Bes8Ad1FVapu8BLavM,41005
22
+ aiohomematic/model/device.py,sha256=XB2NaTU_Go9nlzO70o4Q82zKypriVtefLtc6LZSingA,57318
23
+ aiohomematic/model/event.py,sha256=iyRW5569nttjGUa9iBeLHACviwVims2HiXrQFEz259M,6849
24
+ aiohomematic/model/support.py,sha256=vDQyVsiHy6Xhm_VXtqFQPm65A7qkDHSkzt-qoxDbu8I,19583
25
+ aiohomematic/model/update.py,sha256=R3uUA61m-UQNNGkRod3vES66AgkPKay_CPyyrd-nqVI,5140
26
+ aiohomematic/model/calculated/__init__.py,sha256=JNtxK4-XZeyR6MxfKVPdcF6ezQliQYTWEDoeOChumaE,2966
27
+ aiohomematic/model/calculated/climate.py,sha256=rm9b4rCrmsZAA5_dzP6YRtahdveI97581_EnC4utqpg,10499
28
+ aiohomematic/model/calculated/data_point.py,sha256=Pyo66uOkKVJ3aA5_TjDpiLJIVjAuUQx1o7Ot-YI8h0A,11564
29
+ aiohomematic/model/calculated/operating_voltage_level.py,sha256=99A8HvahVS4IxpgK1dsgQXHfeubU7JI2c0ObagbnSNQ,13505
30
+ aiohomematic/model/calculated/support.py,sha256=GBD35_OR3TEAWo5ADeH_gk2Ebw9pHOtOnOS7umCkXB0,7989
31
+ aiohomematic/model/custom/__init__.py,sha256=JxJXyr2CgKlj-jc1xQ14lbMT76vvswfLUecwj8RJCXA,6073
32
+ aiohomematic/model/custom/climate.py,sha256=KapPl8m81z1F1tMNtnhpGue4jCzZi0-t5gCrCddZycg,61883
33
+ aiohomematic/model/custom/cover.py,sha256=28_TshEMiuusWsAMcNEvFWcqLNjAlxwMS1bLVmGTZjQ,28992
34
+ aiohomematic/model/custom/data_point.py,sha256=vaUcUjaHanWbTQlq1K-mhI2uM0vT-MzmkZibuerlDX8,14116
35
+ aiohomematic/model/custom/definition.py,sha256=N9ZcLT7uglBlsFU1ZQJcL94LFAZK23sm3kAxws3tNkM,35716
36
+ aiohomematic/model/custom/light.py,sha256=THyBdYRNzAMOH0VpCn3Ui9BJo-NtgLBWxXmTZrx_IY4,44383
37
+ aiohomematic/model/custom/lock.py,sha256=7GYRyLsGv6JkPKWFTfsTP8Xheb3TCo4LktqcZQXxJTQ,11931
38
+ aiohomematic/model/custom/siren.py,sha256=Qi1jd6kGskfgyQP7lrczN6KEaJ3V40Pf-DUNpTUwTPI,9720
39
+ aiohomematic/model/custom/support.py,sha256=t0HxBo-zXdW-ju6ROfY9SuB2uXKqV0jFej_4QTIsH7w,1388
40
+ aiohomematic/model/custom/switch.py,sha256=I1rWgQqljPtMtc7fYWfWPKDdoHDZHXxiCmu6Gxe_bw4,6898
41
+ aiohomematic/model/custom/valve.py,sha256=tAQ0V-eCJCAoEgO1LFzZD4_tvBVojM8VipmOGTyGqe0,4177
42
+ aiohomematic/model/generic/__init__.py,sha256=gx6ohi35PvIHsj8HK_fbftoT_JCmo6l10tzk-syMsZw,7721
43
+ aiohomematic/model/generic/action.py,sha256=VDFCAkX0TkXV4xh3ya0AUIKnjOKF_rEobI6qdW5mAOQ,975
44
+ aiohomematic/model/generic/binary_sensor.py,sha256=yABUafcBmPHLNAkdj_malYroBZc5UaunYLhmRtS2nGU,865
45
+ aiohomematic/model/generic/button.py,sha256=3ahmj1BJZfdh6h6YV-urC8UwcKRp94QPOQtsF0fBI3Y,718
46
+ aiohomematic/model/generic/data_point.py,sha256=UEJZA-vWcu0DLQ0DEUUWW6ozXWmkPFGuDWeBXQYRuwk,6162
47
+ aiohomematic/model/generic/dummy.py,sha256=HjvR_citnjnN1A7YToKdCSdbgB1072TK40sOWVC2nBw,4742
48
+ aiohomematic/model/generic/number.py,sha256=WNu4EB_npDZ8f7RrCrab1g9KzRtG8dziUvNQApEKXYk,2656
49
+ aiohomematic/model/generic/select.py,sha256=-CXHdvzwWGp74t5UVdIWOFhlcW7bf0hcuGriBl7EWXk,1516
50
+ aiohomematic/model/generic/sensor.py,sha256=ueqXw9bkFFJeD_mer6idpMTGFg6rweDEUNOgqsF22NA,2240
51
+ aiohomematic/model/generic/switch.py,sha256=Y5Bml60QoHs14mfsMvhsk7S7I-2QSBoB7KWHMCJak3Q,1820
52
+ aiohomematic/model/generic/text.py,sha256=AOMZCHgPO2v4lza-OI0J6WNsQcUOvab9HA5sRN8NQZQ,832
53
+ aiohomematic/model/hub/__init__.py,sha256=ml9uhexfzQ9LiQfob1yMf34mVbmi12-rMJweWYvWZlc,13503
54
+ aiohomematic/model/hub/binary_sensor.py,sha256=yqBXEzVS7zMoY4N7agwQ70ypAgIRkfUeBNCInsQV_kA,730
55
+ aiohomematic/model/hub/button.py,sha256=fEtBIxKF32kyacaCgsDLohw1exDpFtE7SCwEYgBAlOY,868
56
+ aiohomematic/model/hub/data_point.py,sha256=FQrBi9BdwIMJH7ul1bSaNEspsBkC5ZouSQLd3Y33ROs,10622
57
+ aiohomematic/model/hub/number.py,sha256=zS5ft2wkUUJ0NkUlhkWvbXCeMcI9v-gH36NVCdrNtcU,1215
58
+ aiohomematic/model/hub/select.py,sha256=ENF1TMk5jrNbk7lspNTfWIROMifjJMrllnu6htM1C2E,1652
59
+ aiohomematic/model/hub/sensor.py,sha256=F--BHrgziizBOkXTupwV0ZZlzNnjsWrL9qnkHQv-lEE,1170
60
+ aiohomematic/model/hub/switch.py,sha256=sllPvUy4NggktWjUqobDRZLSTJa2OX88WE1M8wlGmr8,1368
61
+ aiohomematic/model/hub/text.py,sha256=JSCpC37sVm4TbjJCd0vaqybHVuCz1ctNHXEyJnmmMVs,977
62
+ aiohomematic/rega_scripts/fetch_all_device_data.fn,sha256=7uxhHoelAOsH6yYr1n1M1XwIRgDmItiHnWIMhDYEimk,4373
63
+ aiohomematic/rega_scripts/get_program_descriptions.fn,sha256=pGmj377MkqbZi6j-UBKQAsXTphwh1kDwDKqXij8zUBE,835
64
+ aiohomematic/rega_scripts/get_serial.fn,sha256=t1oeo-sB_EuVeiY24PLcxFSkdQVgEWGXzpemJQZFybY,1079
65
+ aiohomematic/rega_scripts/get_system_variable_descriptions.fn,sha256=UKXvC0_5lSApdQ2atJc0E5Stj5Zt3lqh0EcliokYu2c,849
66
+ aiohomematic/rega_scripts/set_program_state.fn,sha256=0bnv7lUj8FMjDZBz325tDVP61m04cHjVj4kIOnUUgpY,279
67
+ aiohomematic/rega_scripts/set_system_variable.fn,sha256=sTmr7vkPTPnPkor5cnLKlDvfsYRbGO1iq2z_2pMXq5E,383
68
+ aiohomematic/store/__init__.py,sha256=PHwF_tw_zL20ODwLywHgpOLWrghQo_BMZzeiQSXN1Fc,1081
69
+ aiohomematic/store/dynamic.py,sha256=3i8oajVhfTeckAuOhwTyIxrd-eb1fl5VxEdK3NPfisw,22323
70
+ aiohomematic/store/persistent.py,sha256=6ZcOxFJtl7cLCacuHMRVnTPxmrhT4uxTwzHiR_7Xm1g,40291
71
+ aiohomematic/store/visibility.py,sha256=ZaqxN_FIsvpYZvCZWu0YSlWLtrFmAfUYILBYIXxPJZs,31622
72
+ aiohomematic-2025.11.3.dist-info/licenses/LICENSE,sha256=q-B0xpREuZuvKsmk3_iyVZqvZ-vJcWmzMZpeAd0RqtQ,1083
73
+ aiohomematic-2025.11.3.dist-info/METADATA,sha256=RC8_XD6szLOnfWaohFUCMU051sb4D6RKpezAdX9eMaE,7949
74
+ aiohomematic-2025.11.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
75
+ aiohomematic-2025.11.3.dist-info/entry_points.txt,sha256=tzk3wIE-hXNhLEiefCCDhIiRT7DYY9MePAwGw-kPmWI,57
76
+ aiohomematic-2025.11.3.dist-info/top_level.txt,sha256=iGUvt1N-E72vKRq7Anpp62HwkQngStrUK0JfL1zj1TE,13
77
+ aiohomematic-2025.11.3.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ aiohomematic = aiohomematic.hmcli:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2021-2025 Daniel Perna, SukramJ
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ aiohomematic