ramses-rf 0.52.1__tar.gz → 0.52.2__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 (373) hide show
  1. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/.pre-commit-config.yaml +1 -1
  2. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/PKG-INFO +1 -1
  3. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/README-developers.md +3 -0
  4. ramses_rf-0.52.2/docs/Makefile +20 -0
  5. ramses_rf-0.52.2/docs/make.bat +35 -0
  6. ramses_rf-0.52.2/docs/source/_static/ramses_rf_logo.png +0 -0
  7. ramses_rf-0.52.2/docs/source/conf.py +74 -0
  8. ramses_rf-0.52.2/docs/source/glossary.rst +16 -0
  9. ramses_rf-0.52.2/docs/source/index.rst +19 -0
  10. ramses_rf-0.52.2/docs/source/modules.rst +9 -0
  11. ramses_rf-0.52.2/docs/source/ramses_cli.rst +37 -0
  12. ramses_rf-0.52.2/docs/source/ramses_rf.device.rst +37 -0
  13. ramses_rf-0.52.2/docs/source/ramses_rf.rst +102 -0
  14. ramses_rf-0.52.2/docs/source/ramses_rf.system.rst +45 -0
  15. ramses_rf-0.52.2/docs/source/ramses_tx.rst +181 -0
  16. ramses_rf-0.52.2/docs/source/usage.md +22 -0
  17. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_rf/__init__.py +1 -0
  18. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_rf/database.py +55 -37
  19. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_rf/device/heat.py +1 -0
  20. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_rf/device/hvac.py +116 -56
  21. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_rf/dispatcher.py +9 -4
  22. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_rf/entity_base.py +44 -31
  23. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_rf/gateway.py +2 -2
  24. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_rf/schemas.py +1 -1
  25. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_rf/version.py +1 -1
  26. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_tx/__init__.py +3 -1
  27. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_tx/command.py +6 -5
  28. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_tx/parsers.py +41 -37
  29. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_tx/schemas.py +24 -15
  30. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_tx/transport.py +31 -22
  31. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_tx/version.py +1 -1
  32. ramses_rf-0.52.2/requirements_docs.txt +13 -0
  33. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  34. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/.github/dependabot.yml +0 -0
  35. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/.github/workflows/check-lint.yml +0 -0
  36. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/.github/workflows/check-test.yml +0 -0
  37. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/.github/workflows/check-type.yml +0 -0
  38. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/.github/workflows/publish-hatch.yml +0 -0
  39. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/.gitignore +0 -0
  40. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/LICENSE +0 -0
  41. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/README.md +0 -0
  42. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/client.py +0 -0
  43. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/misc/2411_parser.py +0 -0
  44. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/misc/fingerprints.log +0 -0
  45. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/misc/ser2net.yaml +0 -0
  46. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/misc/ti_3410/notes.sh +0 -0
  47. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/misc/ti_3410/ti_3410.fw +0 -0
  48. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/pyproject.toml +0 -0
  49. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_cli/__init__.py +0 -0
  50. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_cli/client.py +0 -0
  51. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_cli/debug.py +0 -0
  52. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_cli/discovery.py +0 -0
  53. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_cli/utils/cat_slow.py +0 -0
  54. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_cli/utils/convert.py +0 -0
  55. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_rf/binding_fsm.py +0 -0
  56. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_rf/const.py +0 -0
  57. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_rf/device/__init__.py +0 -0
  58. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_rf/device/base.py +0 -0
  59. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_rf/exceptions.py +0 -0
  60. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_rf/helpers.py +0 -0
  61. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_rf/py.typed +0 -0
  62. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_rf/system/__init__.py +0 -0
  63. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_rf/system/faultlog.py +0 -0
  64. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_rf/system/heat.py +0 -0
  65. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_rf/system/schedule.py +0 -0
  66. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_rf/system/zones.py +0 -0
  67. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_tx/address.py +0 -0
  68. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_tx/const.py +0 -0
  69. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_tx/exceptions.py +0 -0
  70. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_tx/fingerprints.py +0 -0
  71. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_tx/frame.py +0 -0
  72. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_tx/gateway.py +0 -0
  73. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_tx/helpers.py +0 -0
  74. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_tx/logger.py +0 -0
  75. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_tx/message.py +0 -0
  76. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_tx/opentherm.py +0 -0
  77. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_tx/packet.py +0 -0
  78. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_tx/protocol.py +0 -0
  79. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_tx/protocol_fsm.py +0 -0
  80. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_tx/py.typed +0 -0
  81. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_tx/ramses.py +0 -0
  82. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_tx/typed_dicts.py +0 -0
  83. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/ramses_tx/typing.py +0 -0
  84. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/requirements.txt +0 -0
  85. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/requirements_dev.txt +0 -0
  86. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/deprecated/_test_apis_mock.py +0 -0
  87. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/deprecated/_test_mock_faultlog.py +0 -0
  88. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/deprecated/_test_mock_schedule.py +0 -0
  89. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/deprecated/_test_packets_bad.py +0 -0
  90. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/deprecated/_test_performance_WIP.py +0 -0
  91. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/deprecated/_test_state_mgt.py +0 -0
  92. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/deprecated/common.py +0 -0
  93. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/deprecated/mocked_devices/__init__.py +0 -0
  94. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/deprecated/mocked_devices/command.py +0 -0
  95. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/deprecated/mocked_devices/const.py +0 -0
  96. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/deprecated/mocked_devices/device_heat.py +0 -0
  97. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/deprecated/mocked_devices/device_hvac.py +0 -0
  98. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/deprecated/mocked_devices/transport.py +0 -0
  99. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/__init__.py +0 -0
  100. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/bindings/heat/ctl_bdr_91t.log +0 -0
  101. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/bindings/heat/dts_ctl_sensor.log +0 -0
  102. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/bindings/heat/hcw_ctl_sensor.log +0 -0
  103. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/bindings/heat/rnd_ctl_sensor.log +0 -0
  104. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/bindings/heat/rnd_ctl_sensor.yaml +0 -0
  105. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/bindings/heat/trv_ctl.log +0 -0
  106. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/bindings/hvac/co2_fan_itho.json +0 -0
  107. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/bindings/hvac/co2_fan_itho.log +0 -0
  108. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/bindings/hvac/co2_fan_itho.yaml +0 -0
  109. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/bindings/hvac/dis_fan_orcon.json +0 -0
  110. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/bindings/hvac/dis_fan_orcon.log +0 -0
  111. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/bindings/hvac/rem_fan_climarad.log +0 -0
  112. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/bindings/hvac/rem_fan_nuaire.json +0 -0
  113. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/bindings/hvac/rem_fan_nuaire.log +0 -0
  114. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/bindings/hvac/rem_fan_nuaire.yaml +0 -0
  115. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/bindings/hvac/rem_fan_vasco.log +0 -0
  116. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/bindings/hvac/rem_fan_ventura.log +0 -0
  117. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/devices/device_02.log +0 -0
  118. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/devices/device_04.log +0 -0
  119. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/devices/device_10.log +0 -0
  120. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/devices/device_13.log +0 -0
  121. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/devices/device_22.log +0 -0
  122. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_dev_class/hvac/known_list_eavesdrop_off.json +0 -0
  123. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_dev_class/hvac/known_list_eavesdrop_on.json +0 -0
  124. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_dev_class/hvac/packet.log +0 -0
  125. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_schema/_trv_actuator_long/packet.log +0 -0
  126. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_schema/_trv_actuator_long/schema_eavesdrop_off.json +0 -0
  127. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_schema/_trv_actuator_long/schema_eavesdrop_on.json +0 -0
  128. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_schema/_trv_actuator_mixed/packet.log +0 -0
  129. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_schema/_trv_actuator_mixed/schema_eavesdrop_off.json +0 -0
  130. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_schema/_trv_actuator_mixed/schema_eavesdrop_on.json +0 -0
  131. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_schema/_ufh_circuits/packet.log +0 -0
  132. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_schema/_ufh_circuits/schema_eavesdrop_off.json +0 -0
  133. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_schema/_ufh_circuits/schema_eavesdrop_on.json +0 -0
  134. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_schema/app_cntrl/packet.log +0 -0
  135. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_schema/app_cntrl/schema_eavesdrop_off.json +0 -0
  136. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_schema/app_cntrl/schema_eavesdrop_on.json +0 -0
  137. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_schema/trv_actuators/packet.log +0 -0
  138. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_schema/trv_actuators/schema_eavesdrop_off.json +0 -0
  139. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_schema/trv_actuators/schema_eavesdrop_on.json +0 -0
  140. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_schema/zone_sensors_000/packet.log +0 -0
  141. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_schema/zone_sensors_000/schema_eavesdrop_off.json +0 -0
  142. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_schema/zone_sensors_000/schema_eavesdrop_on.json +0 -0
  143. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_schema/zone_sensors_001/packet.log +0 -0
  144. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_schema/zone_sensors_001/schema_eavesdrop_off.json +0 -0
  145. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_schema/zone_sensors_001/schema_eavesdrop_on.json +0 -0
  146. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_schema/zone_sensors_002/packet.log +0 -0
  147. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_schema/zone_sensors_002/schema_eavesdrop_off.json +0 -0
  148. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_schema/zone_sensors_002/schema_eavesdrop_on.json +0 -0
  149. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_schema/zone_sensors_003/packet.log +0 -0
  150. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_schema/zone_sensors_003/schema_eavesdrop_off.json +0 -0
  151. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_schema/zone_sensors_003/schema_eavesdrop_on.json +0 -0
  152. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_schema/zone_sensors_004/packet.log +0 -0
  153. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_schema/zone_sensors_004/schema_eavesdrop_off.json +0 -0
  154. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/eavesdrop_schema/zone_sensors_004/schema_eavesdrop_on.json +0 -0
  155. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/10e0_xxxx.log +0 -0
  156. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/_gather.sh +0 -0
  157. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/heat/01_EvoTouch_Colour.log +0 -0
  158. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/heat/01_Evo_Color.log +0 -0
  159. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/heat/01_IONA_RAI_Prototype.log +0 -0
  160. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/heat/02_HCE80_V3.10_061117..log +0 -0
  161. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/heat/04_HR92 Radiator Ctrl_.log +0 -0
  162. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/heat/08_Jasper_EIM.log +0 -0
  163. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/heat/10_R8810A_Bridge.log +0 -0
  164. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/heat/10_R8820.log +0 -0
  165. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/heat/30_Internet_Gateway.log +0 -0
  166. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/heat/31_Jasper_Stat_TXXX.log +0 -0
  167. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/heat/34_T87RF2025.log +0 -0
  168. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/18_BRDG-02A55.log +0 -0
  169. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/18_HRA82.log +0 -0
  170. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/20.log +0 -0
  171. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/21_CCU-12T20.log +0 -0
  172. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/29_VMC-07RP01.log +0 -0
  173. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/29_VMC-15RP01.log +0 -0
  174. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/29_VMC-17RP01.log +0 -0
  175. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/29_VMN-07LM01.log +0 -0
  176. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/29_VMN-15LF01.log +0 -0
  177. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/29_VMN-17LMP01.log +0 -0
  178. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/29_VMS-15C16.log +0 -0
  179. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/29_VMS-17HB01.log +0 -0
  180. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/30_BRDG-02EM23.log +0 -0
  181. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/30_BRDG-02JAS01.log +0 -0
  182. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/32_VMC-15RPS34.log +0 -0
  183. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/32_VMD-15RMS64.log +0 -0
  184. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/32_VMD-15RMS86.log +0 -0
  185. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/32_VMD-17RPS01.log +0 -0
  186. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/32_VMN-23LM33.log +0 -0
  187. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/32_VMN-23LMH23.log +0 -0
  188. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/32_VMS-15CM17.log +0 -0
  189. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/32_VMS-23C33.log +0 -0
  190. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/32_VMS-23HB33.log +0 -0
  191. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/32_VMZ-15V13.log +0 -0
  192. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/37_VMD-07RPS13.log +0 -0
  193. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/37_VMI-15MC01log +0 -0
  194. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/37_VMI-15WSJ53.log +0 -0
  195. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/37_VMS-02J52.log +0 -0
  196. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/37_VMS-12C39.log +0 -0
  197. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/99_CVE-RF.log +0 -0
  198. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/fingerprints/hvac/99_VMS-17C01.log +0 -0
  199. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/helpers.py +0 -0
  200. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/logger/packet_in.log +0 -0
  201. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/logger/packet_out.log +0 -0
  202. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/logs/pkts_bad_000.log +0 -0
  203. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/logs/pkts_tba_000.log +0 -0
  204. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/logs/system_cache.json +0 -0
  205. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parser_helpers/pkt_addr_set.log +0 -0
  206. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parser_helpers/pkt_dev_class.log +0 -0
  207. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_0001_wip.log +0 -0
  208. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_0002.log +0 -0
  209. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_0004_wip.log +0 -0
  210. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_0005.log +0 -0
  211. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_0006.log +0 -0
  212. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_0008.log +0 -0
  213. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_0009.log +0 -0
  214. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_000a.log +0 -0
  215. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_000c.log +0 -0
  216. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_000e.log +0 -0
  217. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_01ff_wip.log +0 -0
  218. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_0418.log +0 -0
  219. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_042f.log +0 -0
  220. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_1030.log +0 -0
  221. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_1060.log +0 -0
  222. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_10d0.log +0 -0
  223. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_10e0.log +0 -0
  224. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_1260.log +0 -0
  225. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_1298.log +0 -0
  226. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_12a0.log +0 -0
  227. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_12c0.log +0 -0
  228. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_1300.log +0 -0
  229. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_1f09.log +0 -0
  230. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_1fc9.log +0 -0
  231. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_1fd4.log +0 -0
  232. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_2210.log +0 -0
  233. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_22c9.log +0 -0
  234. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_22d0.log +0 -0
  235. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_22d9.log +0 -0
  236. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_22e0.log +0 -0
  237. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_22e5.log +0 -0
  238. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_22e9.log +0 -0
  239. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_22f1.log +0 -0
  240. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_22f2.log +0 -0
  241. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_22f3.log +0 -0
  242. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_22f4.log +0 -0
  243. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_22f7.log +0 -0
  244. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_2309.log +0 -0
  245. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_2349.log +0 -0
  246. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_2411_wip.log +0 -0
  247. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_2e04.log +0 -0
  248. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_2e10_wip.log +0 -0
  249. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_30c9.log +0 -0
  250. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_3110_wip.log +0 -0
  251. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_3120.log +0 -0
  252. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_313e_wip.log +0 -0
  253. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_3150.log +0 -0
  254. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_31d9.log +0 -0
  255. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_31da.log +0 -0
  256. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_3200.log +0 -0
  257. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_3210.log +0 -0
  258. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_3220.log +0 -0
  259. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_3222.log +0 -0
  260. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_3ef0_wip.log +0 -0
  261. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_3ef1_wip.log +0 -0
  262. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_4e01.log +0 -0
  263. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_4e02.log +0 -0
  264. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_4e04.log +0 -0
  265. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/parsers/code_4e15.log +0 -0
  266. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schedules/_sched_002/packet.log +0 -0
  267. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schedules/_sched_002/schedule.json +0 -0
  268. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schedules/sched_001/packet.log +0 -0
  269. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schedules/sched_001/schedule.json +0 -0
  270. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schedules/sched_dhw/packet.log +0 -0
  271. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schedules/sched_dhw/schedule.json +0 -0
  272. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/jsn_files/schema_100.json +0 -0
  273. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/jsn_files/schema_101.json +0 -0
  274. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/jsn_files/schema_102.json +0 -0
  275. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/jsn_files/schema_103.json +0 -0
  276. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/jsn_files/schema_104.json +0 -0
  277. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/jsn_files/schema_105.json +0 -0
  278. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/jsn_files/schema_108.json +0 -0
  279. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/log_files/schema_000.json +0 -0
  280. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/log_files/schema_000.log +0 -0
  281. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/log_files/schema_001.json +0 -0
  282. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/log_files/schema_001.log +0 -0
  283. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/log_files/schema_002.json +0 -0
  284. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/log_files/schema_002.log +0 -0
  285. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/log_files/schema_010.json +0 -0
  286. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/log_files/schema_010.log +0 -0
  287. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/log_files/schema_011.json +0 -0
  288. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/log_files/schema_011.log +0 -0
  289. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/log_files/schema_012.json +0 -0
  290. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/log_files/schema_012.log +0 -0
  291. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/log_files/schema_013.json +0 -0
  292. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/log_files/schema_013.log +0 -0
  293. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/log_files/schema_014.json +0 -0
  294. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/log_files/schema_014.log +0 -0
  295. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/log_files/schema_300.json +0 -0
  296. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/log_files/schema_300.log +0 -0
  297. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/log_files/schema_301.json +0 -0
  298. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/log_files/schema_301.log +0 -0
  299. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/log_files/schema_302.json +0 -0
  300. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/log_files/schema_302.log +0 -0
  301. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/log_files/schema_303.json +0 -0
  302. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/log_files/schema_303.log +0 -0
  303. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/log_files/schema_304.json +0 -0
  304. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/log_files/schema_304.log +0 -0
  305. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/log_files/schema_310.json +0 -0
  306. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/schemas/log_files/schema_310.log +0 -0
  307. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/systems/_heat_trv_00/config.json +0 -0
  308. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/systems/_heat_trv_00/packet.log +0 -0
  309. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/systems/_heat_trv_00/schema.json +0 -0
  310. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/systems/_hvac_nuaire/config.json +0 -0
  311. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/systems/_hvac_nuaire/known_list.json +0 -0
  312. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/systems/_hvac_nuaire/packet.log +0 -0
  313. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/systems/_hvac_nuaire/schema.json +0 -0
  314. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/systems/_hvac_nuaire/status.json +0 -0
  315. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/systems/heat_otb_00/config.json +0 -0
  316. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/systems/heat_otb_00/packet.log +0 -0
  317. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/systems/heat_otb_00/schema.json +0 -0
  318. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/systems/heat_simple/packet.log +0 -0
  319. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/systems/heat_simple/schema.json +0 -0
  320. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/systems/heat_ufc_00/config.json +0 -0
  321. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/systems/heat_ufc_00/packet.log +0 -0
  322. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/systems/heat_ufc_01/packet.log +0 -0
  323. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/systems/heat_zxdavb/config.json +0 -0
  324. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/systems/heat_zxdavb/known_list.json +0 -0
  325. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/systems/heat_zxdavb/packet.log +0 -0
  326. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/systems/heat_zxdavb/schema.json +0 -0
  327. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/test_api_faultlog.py +0 -0
  328. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/test_api_schedule.py +0 -0
  329. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/test_apis_binding.py +0 -0
  330. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/test_apis_common.py +0 -0
  331. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/test_apis_heat.py +0 -0
  332. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/test_apis_hvac.py +0 -0
  333. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/test_cli_utility.py +0 -0
  334. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/test_devices.py +0 -0
  335. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/test_eavesdrop_dev_class.py +0 -0
  336. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/test_eavesdrop_schema.py +0 -0
  337. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/test_helpers.py +0 -0
  338. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/test_parser_helpers.py +0 -0
  339. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/test_parsers.py +0 -0
  340. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/test_ramses_schema.py +0 -0
  341. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/test_schema_bits.py +0 -0
  342. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/test_schemas.py +0 -0
  343. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/test_systems.py +0 -0
  344. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests/test_vol_schemas.py +0 -0
  345. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests_rf/__init__.py +0 -0
  346. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests_rf/configs/config_heat.json +0 -0
  347. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests_rf/configs/config_hvac.json +0 -0
  348. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests_rf/conftest.py +0 -0
  349. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests_rf/device/__init__.py +0 -0
  350. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests_rf/device/test_hvac_ventilator.py +0 -0
  351. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests_rf/logs/test_api_faultlog.log +0 -0
  352. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests_rf/test_api_faultlog.py +0 -0
  353. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests_rf/test_api_schedule.py +0 -0
  354. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests_rf/test_binding_fsm.py +0 -0
  355. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests_rf/test_create_stack.py +0 -0
  356. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests_rf/test_database.py +0 -0
  357. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests_rf/test_dispatcher.py +0 -0
  358. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests_rf/test_hgi_behaviors.py +0 -0
  359. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests_rf/test_protocol_fsm.py +0 -0
  360. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests_rf/test_use_regex.py +0 -0
  361. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests_rf/test_virt_network.py +0 -0
  362. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests_rf/virtual_rf/__init__.py +0 -0
  363. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests_rf/virtual_rf/const.py +0 -0
  364. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests_rf/virtual_rf/helpers.py +0 -0
  365. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests_rf/virtual_rf/virtual_rf.py +0 -0
  366. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests_tx/__init__.py +0 -0
  367. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/tests_tx/test_command.py +0 -0
  368. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/wip/_test_eavesdrop_dhw_sensor.py +0 -0
  369. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/wip/_test_eavesdrop_htg_control.py +0 -0
  370. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/wip/_test_eavesdrop_ufc_circuits.py +0 -0
  371. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/wip/_test_eavesdrop_zone_sensors.py +0 -0
  372. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/wip/_test_eavesdrop_zone_type.py +0 -0
  373. {ramses_rf-0.52.1 → ramses_rf-0.52.2}/tests/wip/test_wip_cli.sh +0 -0
@@ -21,7 +21,7 @@ repos:
21
21
  - --py311-plus
22
22
  - --force
23
23
  - --keep-updates
24
- files: ^(src|tests)/.+\.py$
24
+ files: ^(src|tests|docs)/.+\.py$
25
25
 
26
26
  - repo: https://github.com/codespell-project/codespell
27
27
  rev: v2.4.1
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ramses_rf
3
- Version: 0.52.1
3
+ Version: 0.52.2
4
4
  Summary: A stateful RAMSES-II protocol decoder & analyser.
5
5
  Project-URL: Homepage, https://github.com/ramses-rf/ramses_rf
6
6
  Project-URL: Bug Tracker, https://github.com/ramses-rf/ramses_rf/issues
@@ -66,4 +66,7 @@ The rules for pre-commit are in git in `.pre-commit-config.yaml`.
66
66
  Check [issue 170](https://github.com/ramses-rf/ramses_rf/issues/170) when you run into troubles here.
67
67
 
68
68
  ## More
69
+ Build and view the code documentation locally for easier access and to confirm that
70
+ your own code contribution include proper documentation. See [Usage](docs/source/usage.md) for details.
71
+
69
72
  For more hints, see the [How to submit a PR wiki page](https://github.com/ramses-rf/ramses_cc/wiki/7.-How-to-submit-a-PR)
@@ -0,0 +1,20 @@
1
+ # Minimal makefile for Sphinx documentation
2
+ #
3
+
4
+ # You can set these variables from the command line, and also
5
+ # from the environment for the first two.
6
+ SPHINXOPTS ?=
7
+ SPHINXBUILD ?= sphinx-build
8
+ SOURCEDIR = source
9
+ BUILDDIR = build
10
+
11
+ # Put it first so that "make" without argument is like "make help".
12
+ help:
13
+ @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
14
+
15
+ .PHONY: help Makefile
16
+
17
+ # Catch-all target: route all unknown targets to Sphinx using the new
18
+ # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
19
+ %: Makefile
20
+ @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
@@ -0,0 +1,35 @@
1
+ @ECHO OFF
2
+
3
+ pushd %~dp0
4
+
5
+ REM Command file for Sphinx documentation
6
+
7
+ if "%SPHINXBUILD%" == "" (
8
+ set SPHINXBUILD=sphinx-build
9
+ )
10
+ set SOURCEDIR=source
11
+ set BUILDDIR=build
12
+
13
+ %SPHINXBUILD% >NUL 2>NUL
14
+ if errorlevel 9009 (
15
+ echo.
16
+ echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
17
+ echo.installed, then set the SPHINXBUILD environment variable to point
18
+ echo.to the full path of the 'sphinx-build' executable. Alternatively you
19
+ echo.may add the Sphinx directory to PATH.
20
+ echo.
21
+ echo.If you don't have Sphinx installed, grab it from
22
+ echo.https://www.sphinx-doc.org/
23
+ exit /b 1
24
+ )
25
+
26
+ if "%1" == "" goto help
27
+
28
+ %SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
29
+ goto end
30
+
31
+ :help
32
+ %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
33
+
34
+ :end
35
+ popd
@@ -0,0 +1,74 @@
1
+ #!/usr/bin/env python3
2
+ # Configuration file for the ramses_rf Sphinx documentation builder.
3
+ #
4
+ # For the full list of built-in configuration values, see the documentation:
5
+ # https://www.sphinx-doc.org/en/master/usage/configuration.html
6
+
7
+ import os
8
+ import sys
9
+ from datetime import datetime
10
+
11
+ sys.path.insert(0, os.path.abspath("."))
12
+ sys.path.insert(0, os.path.abspath("../../src"))
13
+
14
+ from ramses_rf import VERSION # noqa: E402
15
+
16
+ version = VERSION
17
+ authors = "D. Bonnes, E. Broerse"
18
+
19
+ # -- Project information -----------------------------------------------------
20
+ # see https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
21
+
22
+ project = "Ramses RF"
23
+ copyright = f"{datetime.now().year}, {authors}"
24
+ author = authors
25
+ release = version
26
+
27
+ # -- General configuration ---------------------------------------------------
28
+ # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
29
+ # adapted following https://medium.com/@cissyshu/a-step-by-step-guide-to-automatic-documentation-using-sphinx-a697dbbce0e7
30
+
31
+ extensions = [
32
+ "sphinx.ext.autodoc",
33
+ "sphinx.ext.napoleon",
34
+ "sphinx.ext.intersphinx",
35
+ "sphinx.ext.viewcode", # link to local code (button)
36
+ "sphinx.ext.githubpages",
37
+ "sphinx_design",
38
+ "myst_parser", # to use Markdown inside reST
39
+ ]
40
+ pygments_style = "sphinx" # enable syntax highlighting
41
+
42
+ templates_path = ["_templates"]
43
+ exclude_patterns = []
44
+
45
+ # Language
46
+ language = "en"
47
+
48
+ # -- Options for HTML / Thema output -------------------------------------------------
49
+ # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
50
+
51
+ html_theme = "furo"
52
+ html_static_path = ["_static"]
53
+ html_logo = "_static/ramses_rf_logo.png"
54
+ html_theme_options = {
55
+ "announcement": "Build the new <em>ramses_rf</em> documentation locally",
56
+ }
57
+
58
+ # --- Extension config ----
59
+
60
+ # Autodoc
61
+ autodoc_default_options = {
62
+ # Autodoc members
63
+ "members": True,
64
+ # Autodoc private members
65
+ "private-members": True,
66
+ }
67
+
68
+ # Autosummary
69
+ autosummary_generate = True
70
+ autosummary_generate_overwrite = True
71
+
72
+ # Myst
73
+ myst_enable_extensions = ["colon_fence"]
74
+ myst_heading_anchors = 4
@@ -0,0 +1,16 @@
1
+ Glossary
2
+ ========
3
+
4
+ .. glossary::
5
+ :sorted:
6
+
7
+ a_new_important_word
8
+ You are invited to help build this glossary of Ramses RF terms.
9
+ In your code ``docstr``, mark a new occurrence by putting in inside a 'term' block containing
10
+ single backticks, like so:
11
+ ``:term:`a_new_important_word```
12
+ Then, add an entry below. Don't worry about the (exact) sorting as Sphinx will sort that out for us.
13
+
14
+ schema
15
+ A description of valid contents of an entity, often defined
16
+ using voluptuous classes.
@@ -0,0 +1,19 @@
1
+ .. ramses_rf documentation master file, created by
2
+ sphinx-quickstart.
3
+ This file should at least contain the root `toctree` directive.
4
+
5
+ ramses_rf
6
+ =================================
7
+
8
+ .. toctree::
9
+ :maxdepth: 1
10
+ :caption: Intro:
11
+
12
+ usage
13
+ glossary
14
+
15
+ .. toctree::
16
+ :maxdepth: 2
17
+ :caption: Contents:
18
+
19
+ modules
@@ -0,0 +1,9 @@
1
+ ramses_rf/src/
2
+ ===
3
+
4
+ .. toctree::
5
+ :maxdepth: 4
6
+
7
+ ramses_cli
8
+ ramses_rf
9
+ ramses_tx
@@ -0,0 +1,37 @@
1
+ ramses\_cli package
2
+ ===================
3
+
4
+ Submodules
5
+ ----------
6
+
7
+ ramses\_cli.client module
8
+ -------------------------
9
+
10
+ .. automodule:: ramses_cli.client
11
+ :members:
12
+ :show-inheritance:
13
+ :undoc-members:
14
+
15
+ ramses\_cli.debug module
16
+ ------------------------
17
+
18
+ .. automodule:: ramses_cli.debug
19
+ :members:
20
+ :show-inheritance:
21
+ :undoc-members:
22
+
23
+ ramses\_cli.discovery module
24
+ ----------------------------
25
+
26
+ .. automodule:: ramses_cli.discovery
27
+ :members:
28
+ :show-inheritance:
29
+ :undoc-members:
30
+
31
+ Module contents
32
+ ---------------
33
+
34
+ .. automodule:: ramses_cli
35
+ :members:
36
+ :show-inheritance:
37
+ :undoc-members:
@@ -0,0 +1,37 @@
1
+ ramses\_rf.device package
2
+ =========================
3
+
4
+ Submodules
5
+ ----------
6
+
7
+ ramses\_rf.device.base module
8
+ -----------------------------
9
+
10
+ .. automodule:: ramses_rf.device.base
11
+ :members:
12
+ :show-inheritance:
13
+ :undoc-members:
14
+
15
+ ramses\_rf.device.heat module
16
+ -----------------------------
17
+
18
+ .. automodule:: ramses_rf.device.heat
19
+ :members:
20
+ :show-inheritance:
21
+ :undoc-members:
22
+
23
+ ramses\_rf.device.hvac module
24
+ -----------------------------
25
+
26
+ .. automodule:: ramses_rf.device.hvac
27
+ :members:
28
+ :show-inheritance:
29
+ :undoc-members:
30
+
31
+ Module contents
32
+ ---------------
33
+
34
+ .. automodule:: ramses_rf.device
35
+ :members:
36
+ :show-inheritance:
37
+ :undoc-members:
@@ -0,0 +1,102 @@
1
+ ramses\_rf package
2
+ ==================
3
+
4
+ Subpackages
5
+ -----------
6
+
7
+ .. toctree::
8
+ :maxdepth: 4
9
+
10
+ ramses_rf.device
11
+ ramses_rf.system
12
+
13
+ Submodules
14
+ ----------
15
+
16
+ ramses\_rf.binding\_fsm module
17
+ ------------------------------
18
+
19
+ .. automodule:: ramses_rf.binding_fsm
20
+ :members:
21
+ :show-inheritance:
22
+ :undoc-members:
23
+
24
+ ramses\_rf.const module
25
+ -----------------------
26
+
27
+ .. automodule:: ramses_rf.const
28
+ :members:
29
+ :show-inheritance:
30
+ :undoc-members:
31
+
32
+ ramses\_rf.database module
33
+ --------------------------
34
+
35
+ .. automodule:: ramses_rf.database
36
+ :members:
37
+ :show-inheritance:
38
+ :undoc-members:
39
+
40
+ ramses\_rf.dispatcher module
41
+ ----------------------------
42
+
43
+ .. automodule:: ramses_rf.dispatcher
44
+ :members:
45
+ :show-inheritance:
46
+ :undoc-members:
47
+
48
+ ramses\_rf.entity\_base module
49
+ ------------------------------
50
+
51
+ .. automodule:: ramses_rf.entity_base
52
+ :members:
53
+ :show-inheritance:
54
+ :undoc-members:
55
+
56
+ ramses\_rf.exceptions module
57
+ ----------------------------
58
+
59
+ .. automodule:: ramses_rf.exceptions
60
+ :members:
61
+ :show-inheritance:
62
+ :undoc-members:
63
+
64
+ ramses\_rf.gateway module
65
+ -------------------------
66
+
67
+ .. automodule:: ramses_rf.gateway
68
+ :members:
69
+ :show-inheritance:
70
+ :undoc-members:
71
+
72
+ ramses\_rf.helpers module
73
+ -------------------------
74
+
75
+ .. automodule:: ramses_rf.helpers
76
+ :members:
77
+ :show-inheritance:
78
+ :undoc-members:
79
+
80
+ ramses\_rf.schemas module
81
+ -------------------------
82
+
83
+ .. automodule:: ramses_rf.schemas
84
+ :members:
85
+ :show-inheritance:
86
+ :undoc-members:
87
+
88
+ ramses\_rf.version module
89
+ -------------------------
90
+
91
+ .. automodule:: ramses_rf.version
92
+ :members:
93
+ :show-inheritance:
94
+ :undoc-members:
95
+
96
+ Module contents
97
+ ---------------
98
+
99
+ .. automodule:: ramses_rf
100
+ :members:
101
+ :show-inheritance:
102
+ :undoc-members:
@@ -0,0 +1,45 @@
1
+ ramses\_rf.system package
2
+ =========================
3
+
4
+ Submodules
5
+ ----------
6
+
7
+ ramses\_rf.system.faultlog module
8
+ ---------------------------------
9
+
10
+ .. automodule:: ramses_rf.system.faultlog
11
+ :members:
12
+ :show-inheritance:
13
+ :undoc-members:
14
+
15
+ ramses\_rf.system.heat module
16
+ -----------------------------
17
+
18
+ .. automodule:: ramses_rf.system.heat
19
+ :members:
20
+ :show-inheritance:
21
+ :undoc-members:
22
+
23
+ ramses\_rf.system.schedule module
24
+ ---------------------------------
25
+
26
+ .. automodule:: ramses_rf.system.schedule
27
+ :members:
28
+ :show-inheritance:
29
+ :undoc-members:
30
+
31
+ ramses\_rf.system.zones module
32
+ ------------------------------
33
+
34
+ .. automodule:: ramses_rf.system.zones
35
+ :members:
36
+ :show-inheritance:
37
+ :undoc-members:
38
+
39
+ Module contents
40
+ ---------------
41
+
42
+ .. automodule:: ramses_rf.system
43
+ :members:
44
+ :show-inheritance:
45
+ :undoc-members:
@@ -0,0 +1,181 @@
1
+ ramses\_tx package
2
+ ==================
3
+
4
+ Submodules
5
+ ----------
6
+
7
+ ramses\_tx.address module
8
+ -------------------------
9
+
10
+ .. automodule:: ramses_tx.address
11
+ :members:
12
+ :show-inheritance:
13
+ :undoc-members:
14
+
15
+ ramses\_tx.command module
16
+ -------------------------
17
+
18
+ .. automodule:: ramses_tx.command
19
+ :members:
20
+ :show-inheritance:
21
+ :undoc-members:
22
+
23
+ ramses\_tx.const module
24
+ -----------------------
25
+
26
+ .. automodule:: ramses_tx.const
27
+ :members:
28
+ :show-inheritance:
29
+ :undoc-members:
30
+
31
+ ramses\_tx.exceptions module
32
+ ----------------------------
33
+
34
+ .. automodule:: ramses_tx.exceptions
35
+ :members:
36
+ :show-inheritance:
37
+ :undoc-members:
38
+
39
+ ramses\_tx.fingerprints module
40
+ ------------------------------
41
+
42
+ .. automodule:: ramses_tx.fingerprints
43
+ :members:
44
+ :show-inheritance:
45
+ :undoc-members:
46
+
47
+ ramses\_tx.frame module
48
+ -----------------------
49
+
50
+ .. automodule:: ramses_tx.frame
51
+ :members:
52
+ :show-inheritance:
53
+ :undoc-members:
54
+
55
+ ramses\_tx.gateway module
56
+ -------------------------
57
+
58
+ .. automodule:: ramses_tx.gateway
59
+ :members:
60
+ :show-inheritance:
61
+ :undoc-members:
62
+
63
+ ramses\_tx.helpers module
64
+ -------------------------
65
+
66
+ .. automodule:: ramses_tx.helpers
67
+ :members:
68
+ :show-inheritance:
69
+ :undoc-members:
70
+
71
+ ramses\_tx.logger module
72
+ ------------------------
73
+
74
+ .. automodule:: ramses_tx.logger
75
+ :members:
76
+ :show-inheritance:
77
+ :undoc-members:
78
+
79
+ ramses\_tx.message module
80
+ -------------------------
81
+
82
+ .. automodule:: ramses_tx.message
83
+ :members:
84
+ :show-inheritance:
85
+ :undoc-members:
86
+
87
+ ramses\_tx.opentherm module
88
+ ---------------------------
89
+
90
+ .. automodule:: ramses_tx.opentherm
91
+ :members:
92
+ :show-inheritance:
93
+ :undoc-members:
94
+
95
+ ramses\_tx.packet module
96
+ ------------------------
97
+
98
+ .. automodule:: ramses_tx.packet
99
+ :members:
100
+ :show-inheritance:
101
+ :undoc-members:
102
+
103
+ ramses\_tx.parsers module
104
+ -------------------------
105
+
106
+ .. automodule:: ramses_tx.parsers
107
+ :members:
108
+ :show-inheritance:
109
+ :undoc-members:
110
+
111
+ ramses\_tx.protocol module
112
+ --------------------------
113
+
114
+ .. automodule:: ramses_tx.protocol
115
+ :members:
116
+ :show-inheritance:
117
+ :undoc-members:
118
+
119
+ ramses\_tx.protocol\_fsm module
120
+ -------------------------------
121
+
122
+ .. automodule:: ramses_tx.protocol_fsm
123
+ :members:
124
+ :show-inheritance:
125
+ :undoc-members:
126
+
127
+ ramses\_tx.ramses module
128
+ ------------------------
129
+
130
+ .. automodule:: ramses_tx.ramses
131
+ :members:
132
+ :show-inheritance:
133
+ :undoc-members:
134
+
135
+ ramses\_tx.schemas module
136
+ -------------------------
137
+
138
+ .. automodule:: ramses_tx.schemas
139
+ :members:
140
+ :show-inheritance:
141
+ :undoc-members:
142
+
143
+ ramses\_tx.transport module
144
+ ---------------------------
145
+
146
+ .. automodule:: ramses_tx.transport
147
+ :members:
148
+ :show-inheritance:
149
+ :undoc-members:
150
+
151
+ ramses\_tx.typed\_dicts module
152
+ ------------------------------
153
+
154
+ .. automodule:: ramses_tx.typed_dicts
155
+ :members:
156
+ :show-inheritance:
157
+ :undoc-members:
158
+
159
+ ramses\_tx.typing module
160
+ ------------------------
161
+
162
+ .. automodule:: ramses_tx.typing
163
+ :members:
164
+ :show-inheritance:
165
+ :undoc-members:
166
+
167
+ ramses\_tx.version module
168
+ -------------------------
169
+
170
+ .. automodule:: ramses_tx.version
171
+ :members:
172
+ :show-inheritance:
173
+ :undoc-members:
174
+
175
+ Module contents
176
+ ---------------
177
+
178
+ .. automodule:: ramses_tx
179
+ :members:
180
+ :show-inheritance:
181
+ :undoc-members:
@@ -0,0 +1,22 @@
1
+ # Usage
2
+
3
+ ## Installation
4
+
5
+ To use ramses_rf, first install it using pip:
6
+
7
+ ```console
8
+ (.venv) $ pip install ramses-rf
9
+ ```
10
+
11
+ ## Documentation
12
+
13
+ We use [sphinx](https://www.sphinx-doc.org/en/master/usage/markdown.html) and
14
+ MyST [markup](https://myst-parser.readthedocs.io/en/latest/syntax/organising_content.html) to automatically create this code documentation from `docstr` annotations in our python code.
15
+
16
+ - Activate your virtual environment for ramses_rf as described in the [Wiki](https://github.com/ramses-rf/ramses_rf/blob/master/README-developers.md).
17
+
18
+ - Install the extra required dependencies by running ``pip install -r requirements_docs.txt`` so you can build a local set.
19
+
20
+ - Then, in a Terminal, enter `cd docs/` and run `sphinx-build -b html source build/html`.
21
+
22
+ - When the operation finishes, you can open the generated files from the `docs/build/html/` folder in a web browser.
@@ -1,5 +1,6 @@
1
1
  #!/usr/bin/env python3
2
2
  """RAMSES RF - a RAMSES-II protocol decoder & analyser.
3
+ `ramses_rf` takes care of the device (upper) layer.
3
4
 
4
5
  Works with (amongst others):
5
6
  - evohome (up to 12 zones)