ramses-rf 0.51.6__py3-none-any.whl → 0.51.8__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.
- ramses_rf/__init__.py +5 -0
- ramses_rf/device/hvac.py +579 -32
- ramses_rf/entity_base.py +1 -1
- ramses_rf/exceptions.py +37 -3
- ramses_rf/gateway.py +1 -1
- ramses_rf/helpers.py +1 -1
- ramses_rf/schemas.py +5 -2
- ramses_rf/version.py +1 -1
- {ramses_rf-0.51.6.dist-info → ramses_rf-0.51.8.dist-info}/METADATA +6 -6
- {ramses_rf-0.51.6.dist-info → ramses_rf-0.51.8.dist-info}/RECORD +24 -24
- ramses_tx/__init__.py +25 -4
- ramses_tx/command.py +1449 -138
- ramses_tx/helpers.py +6 -9
- ramses_tx/logger.py +0 -27
- ramses_tx/parsers.py +33 -28
- ramses_tx/protocol.py +2 -2
- ramses_tx/protocol_fsm.py +1 -1
- ramses_tx/ramses.py +46 -6
- ramses_tx/schemas.py +3 -0
- ramses_tx/transport.py +44 -3
- ramses_tx/version.py +1 -1
- {ramses_rf-0.51.6.dist-info → ramses_rf-0.51.8.dist-info}/WHEEL +0 -0
- {ramses_rf-0.51.6.dist-info → ramses_rf-0.51.8.dist-info}/entry_points.txt +0 -0
- {ramses_rf-0.51.6.dist-info → ramses_rf-0.51.8.dist-info}/licenses/LICENSE +0 -0
ramses_rf/__init__.py
CHANGED
|
@@ -16,7 +16,9 @@ from typing import TYPE_CHECKING
|
|
|
16
16
|
|
|
17
17
|
from ramses_tx import Address, Command, Message, Packet # noqa: F401
|
|
18
18
|
|
|
19
|
+
from . import exceptions # noqa: F401
|
|
19
20
|
from .device import Device # noqa: F401
|
|
21
|
+
from .exceptions import CommandInvalid # noqa: F401
|
|
20
22
|
from .gateway import Gateway # noqa: F401
|
|
21
23
|
from .version import VERSION # noqa: F401
|
|
22
24
|
|
|
@@ -38,6 +40,7 @@ __all__ = [
|
|
|
38
40
|
#
|
|
39
41
|
"Address",
|
|
40
42
|
"Command",
|
|
43
|
+
"CommandInvalid",
|
|
41
44
|
"Device",
|
|
42
45
|
"Message",
|
|
43
46
|
"Packet",
|
|
@@ -50,6 +53,8 @@ __all__ = [
|
|
|
50
53
|
"Code",
|
|
51
54
|
"IndexT",
|
|
52
55
|
"VerbT",
|
|
56
|
+
#
|
|
57
|
+
"exceptions",
|
|
53
58
|
]
|
|
54
59
|
|
|
55
60
|
_LOGGER = logging.getLogger(__name__)
|