pyhausbus 1.0.0__py2.py3-none-any.whl → 1.0.2__py2.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.
Files changed (531) hide show
  1. pyhausbus/ABusFeature.py +22 -22
  2. pyhausbus/BusDataMessage.py +23 -23
  3. pyhausbus/BusHandler.py +110 -110
  4. pyhausbus/HausBusCommand.py +83 -83
  5. pyhausbus/HausBusDevice.py +70 -0
  6. pyhausbus/HausBusUtils.py +203 -193
  7. pyhausbus/HomeServer.py +86 -68
  8. pyhausbus/IBusDataListener.py +6 -6
  9. pyhausbus/Main.py +100 -100
  10. pyhausbus/ObjectId.py +22 -22
  11. pyhausbus/ResultWorker.py +53 -53
  12. pyhausbus/Templates.py +135 -0
  13. pyhausbus/UdpReceiveWorker.py +73 -73
  14. pyhausbus/WeekTime.py +55 -55
  15. pyhausbus/de/hausbus/homeassistant/proxy/AnalogEingang.py +139 -0
  16. pyhausbus/de/hausbus/homeassistant/proxy/Controller.py +357 -342
  17. pyhausbus/de/hausbus/homeassistant/proxy/Counter.py +65 -65
  18. pyhausbus/de/hausbus/homeassistant/proxy/CurrentReader.py +133 -121
  19. pyhausbus/de/hausbus/homeassistant/proxy/DaliLine.py +63 -63
  20. pyhausbus/de/hausbus/homeassistant/proxy/DigitalPort.py +40 -40
  21. pyhausbus/de/hausbus/homeassistant/proxy/Dimmer.py +91 -91
  22. pyhausbus/de/hausbus/homeassistant/proxy/Drucksensor.py +141 -0
  23. pyhausbus/de/hausbus/homeassistant/proxy/Ethernet.py +61 -61
  24. pyhausbus/de/hausbus/homeassistant/proxy/Feuchtesensor.py +77 -77
  25. pyhausbus/de/hausbus/homeassistant/proxy/Gateway.py +108 -97
  26. pyhausbus/de/hausbus/homeassistant/proxy/Helligkeitssensor.py +77 -77
  27. pyhausbus/de/hausbus/homeassistant/proxy/IRSensor.py +55 -55
  28. pyhausbus/de/hausbus/homeassistant/proxy/Led.py +117 -116
  29. pyhausbus/de/hausbus/homeassistant/proxy/LogicalButton.py +116 -116
  30. pyhausbus/de/hausbus/homeassistant/proxy/ModBusMaster.py +34 -34
  31. pyhausbus/de/hausbus/homeassistant/proxy/ModbusSlave.py +13 -13
  32. pyhausbus/de/hausbus/homeassistant/proxy/PCA9555.py +29 -0
  33. pyhausbus/de/hausbus/homeassistant/proxy/PCServer.py +67 -67
  34. pyhausbus/de/hausbus/homeassistant/proxy/PIDController.py +69 -64
  35. pyhausbus/de/hausbus/homeassistant/proxy/PT1000.py +153 -0
  36. pyhausbus/de/hausbus/homeassistant/proxy/PowerMeter.py +77 -77
  37. pyhausbus/de/hausbus/homeassistant/proxy/ProxyFactory.py +86 -12
  38. pyhausbus/de/hausbus/homeassistant/proxy/RFIDReader.py +78 -78
  39. pyhausbus/de/hausbus/homeassistant/proxy/RGBDimmer.py +63 -63
  40. pyhausbus/de/hausbus/homeassistant/proxy/Rollladen.py +110 -110
  41. pyhausbus/de/hausbus/homeassistant/proxy/Schalter.py +127 -104
  42. pyhausbus/de/hausbus/homeassistant/proxy/SnmpAgent.py +13 -13
  43. pyhausbus/de/hausbus/homeassistant/proxy/SystemTime.py +42 -42
  44. pyhausbus/de/hausbus/homeassistant/proxy/Taster.py +128 -118
  45. pyhausbus/de/hausbus/homeassistant/proxy/Taupunkt.py +77 -77
  46. pyhausbus/de/hausbus/homeassistant/proxy/TcpClient.py +38 -38
  47. pyhausbus/de/hausbus/homeassistant/proxy/Temperatursensor.py +78 -78
  48. pyhausbus/de/hausbus/homeassistant/proxy/Wetter.py +26 -26
  49. pyhausbus/de/hausbus/homeassistant/proxy/WiFi.py +60 -60
  50. pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/_init_.py +1 -0
  51. pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/commands/GetConfiguration.py +15 -0
  52. pyhausbus/de/hausbus/homeassistant/proxy/{gateway/commands/CheckBusTiming.py → analogEingang/commands/GetStatus.py} +8 -8
  53. pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/commands/SetConfiguration.py +74 -0
  54. pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/commands/_init_.py +1 -0
  55. pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/data/Configuration.py +74 -0
  56. pyhausbus/de/hausbus/homeassistant/proxy/{gateway/commands/ResetBusTiming.py → analogEingang/data/EvHigh.py} +8 -8
  57. pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/data/EvInRange.py +15 -0
  58. pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/data/EvLow.py +15 -0
  59. pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/data/EvStatus.py +33 -0
  60. pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/data/Status.py +25 -0
  61. pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/data/_init_.py +1 -0
  62. pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/params/ELastEvent.py +28 -0
  63. pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/params/_init_.py +1 -0
  64. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/EnableFeature.py +9 -9
  65. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GenerateRandomDeviceId.py +6 -6
  66. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetConfiguration.py +6 -6
  67. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetModuleId.py +9 -9
  68. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetRemoteObjects.py +6 -6
  69. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetRuleState.py +7 -7
  70. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetSystemVariable.py +9 -9
  71. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetTime.py +6 -6
  72. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetUnitGroupStatus.py +7 -7
  73. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetUnusedMemory.py +6 -6
  74. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/Ping.py +6 -6
  75. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/ReadMemory.py +7 -7
  76. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/ReadRules.py +7 -7
  77. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/Reset.py +6 -6
  78. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/ResetOneWireManager.py +25 -0
  79. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetConfiguration.py +10 -10
  80. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetDebugOptions.py +9 -9
  81. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetRuleState.py +7 -7
  82. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetSunTimes.py +9 -9
  83. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetSystemVariable.py +9 -9
  84. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetTime.py +9 -9
  85. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetUnitGroupState.py +7 -7
  86. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/TriggerRuleElement.py +7 -7
  87. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/WriteMemory.py +7 -7
  88. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/WriteRules.py +7 -7
  89. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/Configuration.py +10 -10
  90. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvConsole.py +7 -7
  91. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvDay.py +6 -6
  92. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvError.py +9 -9
  93. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvGroupOff.py +7 -7
  94. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvGroupOn.py +7 -7
  95. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvGroupUndefined.py +7 -7
  96. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvNewDeviceId.py +7 -7
  97. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvNight.py +6 -6
  98. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvResetWifi.py +6 -6
  99. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvStarted.py +9 -9
  100. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvSystemVariableChanged.py +9 -9
  101. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvTime.py +9 -9
  102. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvZeroCrossData.py +23 -9
  103. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/MemoryData.py +7 -7
  104. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/MemoryStatus.py +9 -9
  105. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/ModuleId.py +9 -9
  106. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/Pong.py +6 -6
  107. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/RemoteObjects.py +7 -7
  108. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/RuleState.py +7 -7
  109. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/RulesData.py +7 -7
  110. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/SystemVariable.py +9 -9
  111. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/Time.py +9 -9
  112. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/TimeDifference.py +7 -7
  113. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/TriggeredRule.py +7 -7
  114. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/UnitGroupStatus.py +7 -7
  115. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/UnusedMemory.py +7 -7
  116. pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EErrorCode.py +17 -4
  117. pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EFeatureId.py +13 -4
  118. pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EFirmwareId.py +15 -6
  119. pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EIndex.py +12 -4
  120. pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EReason.py +12 -4
  121. pyhausbus/de/hausbus/homeassistant/proxy/controller/params/ESlotType.py +12 -4
  122. pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EStatus.py +12 -4
  123. pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EType.py +12 -4
  124. pyhausbus/de/hausbus/homeassistant/proxy/controller/params/MLogicalButtonMask.py +61 -61
  125. pyhausbus/de/hausbus/homeassistant/proxy/controller/params/MOption.py +61 -61
  126. pyhausbus/de/hausbus/homeassistant/proxy/counter/commands/GetConfiguration.py +6 -6
  127. pyhausbus/de/hausbus/homeassistant/proxy/counter/commands/GetStatus.py +6 -6
  128. pyhausbus/de/hausbus/homeassistant/proxy/counter/commands/SetConfiguration.py +9 -9
  129. pyhausbus/de/hausbus/homeassistant/proxy/counter/commands/SetCount.py +7 -7
  130. pyhausbus/de/hausbus/homeassistant/proxy/counter/data/Configuration.py +9 -9
  131. pyhausbus/de/hausbus/homeassistant/proxy/counter/data/EvError.py +9 -9
  132. pyhausbus/de/hausbus/homeassistant/proxy/counter/data/EvStatus.py +7 -7
  133. pyhausbus/de/hausbus/homeassistant/proxy/counter/data/Status.py +7 -7
  134. pyhausbus/de/hausbus/homeassistant/proxy/counter/params/EErrorCode.py +13 -4
  135. pyhausbus/de/hausbus/homeassistant/proxy/counter/params/MMode.py +61 -61
  136. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/ClearSignalCount.py +6 -6
  137. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/DecSignalCount.py +6 -6
  138. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/GetConfiguration.py +6 -6
  139. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/GetCurrent.py +6 -6
  140. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/GetPower.py +6 -6
  141. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/GetSignalCount.py +6 -6
  142. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/IncSignalCount.py +6 -6
  143. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/SetConfiguration.py +9 -9
  144. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/SetSignalCount.py +7 -7
  145. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/Configuration.py +9 -9
  146. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/Current.py +7 -7
  147. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvCurrent.py +7 -7
  148. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvDebug.py +9 -9
  149. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvError.py +26 -0
  150. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvInterrupt.py +7 -7
  151. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvSignal.py +7 -7
  152. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/Power.py +7 -7
  153. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/SignalCount.py +7 -7
  154. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/params/EErrorCode.py +27 -0
  155. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/params/MConfig.py +13 -13
  156. pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/AllOff.py +6 -6
  157. pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/AllOn.py +6 -6
  158. pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/GetConfiguration.py +7 -7
  159. pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/SendCommand.py +7 -7
  160. pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/SetConfiguration.py +7 -7
  161. pyhausbus/de/hausbus/homeassistant/proxy/daliLine/data/Configuration.py +7 -7
  162. pyhausbus/de/hausbus/homeassistant/proxy/daliLine/data/EvError.py +9 -9
  163. pyhausbus/de/hausbus/homeassistant/proxy/daliLine/data/Status.py +7 -7
  164. pyhausbus/de/hausbus/homeassistant/proxy/daliLine/params/EErrorCode.py +12 -4
  165. pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/commands/GetConfiguration.py +6 -6
  166. pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/commands/SetConfiguration.py +11 -11
  167. pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/data/Configuration.py +28 -28
  168. pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/data/EvError.py +9 -9
  169. pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/params/EErrorCode.py +13 -4
  170. pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/params/EPin.py +13 -4
  171. pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/GetConfiguration.py +6 -6
  172. pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/GetStatus.py +6 -6
  173. pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/SetBrightness.py +7 -7
  174. pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/SetConfiguration.py +9 -9
  175. pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/Start.py +9 -9
  176. pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/Stop.py +6 -6
  177. pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/Configuration.py +9 -9
  178. pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/EvError.py +9 -9
  179. pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/EvOff.py +6 -6
  180. pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/EvOn.py +7 -7
  181. pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/EvStart.py +9 -9
  182. pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/Status.py +7 -7
  183. pyhausbus/de/hausbus/homeassistant/proxy/dimmer/params/EDirection.py +12 -4
  184. pyhausbus/de/hausbus/homeassistant/proxy/dimmer/params/EErrorCode.py +14 -4
  185. pyhausbus/de/hausbus/homeassistant/proxy/dimmer/params/EMode.py +12 -4
  186. pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/_init_.py +1 -0
  187. pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/commands/GetConfiguration.py +15 -0
  188. pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/commands/GetStatus.py +15 -0
  189. pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/commands/SetConfiguration.py +74 -0
  190. pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/commands/_init_.py +1 -0
  191. pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/Configuration.py +74 -0
  192. pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/EvHigh.py +15 -0
  193. pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/EvInRange.py +15 -0
  194. pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/EvLow.py +15 -0
  195. pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/EvStatus.py +33 -0
  196. pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/Status.py +33 -0
  197. pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/_init_.py +1 -0
  198. pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/params/ELastEvent.py +28 -0
  199. pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/params/_init_.py +1 -0
  200. pyhausbus/de/hausbus/homeassistant/proxy/ethernet/commands/GetConfiguration.py +6 -6
  201. pyhausbus/de/hausbus/homeassistant/proxy/ethernet/commands/GetCurrentIp.py +6 -6
  202. pyhausbus/de/hausbus/homeassistant/proxy/ethernet/commands/SetConfiguration.py +10 -10
  203. pyhausbus/de/hausbus/homeassistant/proxy/ethernet/commands/WakeUpDevice.py +7 -7
  204. pyhausbus/de/hausbus/homeassistant/proxy/ethernet/data/Configuration.py +10 -10
  205. pyhausbus/de/hausbus/homeassistant/proxy/ethernet/data/CurrentIp.py +7 -7
  206. pyhausbus/de/hausbus/homeassistant/proxy/ethernet/data/EvError.py +9 -9
  207. pyhausbus/de/hausbus/homeassistant/proxy/ethernet/params/EErrorCode.py +13 -4
  208. pyhausbus/de/hausbus/homeassistant/proxy/ethernet/params/MOptions.py +61 -61
  209. pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/commands/GetConfiguration.py +6 -6
  210. pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/commands/GetStatus.py +6 -6
  211. pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/commands/SetConfiguration.py +7 -7
  212. pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/Configuration.py +7 -7
  213. pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvConfortable.py +6 -6
  214. pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvDry.py +6 -6
  215. pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvError.py +9 -9
  216. pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvStatus.py +9 -9
  217. pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvWet.py +6 -6
  218. pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/Status.py +9 -9
  219. pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/params/EErrorCode.py +14 -4
  220. pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/params/ELastEvent.py +12 -4
  221. pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/GetConfiguration.py +6 -6
  222. pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/GetConnectedDevices.py +6 -6
  223. pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/{GetBusTiming.py → GetMinIdleTime.py} +8 -8
  224. pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/SetConfiguration.py +10 -10
  225. pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/SetMinIdleTime.py +25 -0
  226. pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/SetPreferLoxone.py +26 -0
  227. pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/Configuration.py +10 -10
  228. pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/ConnectedDevices.py +7 -7
  229. pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/EvError.py +9 -9
  230. pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/EvGatewayLoad.py +38 -17
  231. pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/MinIdleTime.py +25 -0
  232. pyhausbus/de/hausbus/homeassistant/proxy/gateway/params/EErrorCode.py +14 -4
  233. pyhausbus/de/hausbus/homeassistant/proxy/gateway/params/EValue.py +27 -0
  234. pyhausbus/de/hausbus/homeassistant/proxy/gateway/params/MOptions.py +65 -65
  235. pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/commands/GetConfiguration.py +6 -6
  236. pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/commands/GetStatus.py +6 -6
  237. pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/commands/SetConfiguration.py +7 -7
  238. pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/Configuration.py +7 -7
  239. pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvBright.py +6 -6
  240. pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvDark.py +6 -6
  241. pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvError.py +9 -9
  242. pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvLight.py +6 -6
  243. pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvStatus.py +9 -9
  244. pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/Status.py +9 -9
  245. pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/params/EErrorCode.py +14 -4
  246. pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/params/ELastEvent.py +12 -4
  247. pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/commands/Off.py +6 -6
  248. pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/commands/On.py +6 -6
  249. pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvClicked.py +7 -7
  250. pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvHoldEnd.py +7 -7
  251. pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvHoldStart.py +7 -7
  252. pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvOff.py +6 -6
  253. pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvOn.py +6 -6
  254. pyhausbus/de/hausbus/homeassistant/proxy/led/commands/Blink.py +7 -7
  255. pyhausbus/de/hausbus/homeassistant/proxy/led/commands/GetConfiguration.py +6 -6
  256. pyhausbus/de/hausbus/homeassistant/proxy/led/commands/GetMinBrightness.py +6 -6
  257. pyhausbus/de/hausbus/homeassistant/proxy/led/commands/GetStatus.py +6 -6
  258. pyhausbus/de/hausbus/homeassistant/proxy/led/commands/Off.py +7 -7
  259. pyhausbus/de/hausbus/homeassistant/proxy/led/commands/On.py +7 -7
  260. pyhausbus/de/hausbus/homeassistant/proxy/led/commands/SetConfiguration.py +9 -9
  261. pyhausbus/de/hausbus/homeassistant/proxy/led/commands/SetMinBrightness.py +7 -7
  262. pyhausbus/de/hausbus/homeassistant/proxy/led/data/Configuration.py +10 -10
  263. pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvBlink.py +6 -6
  264. pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvCmdDelay.py +7 -7
  265. pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvError.py +10 -9
  266. pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvOff.py +6 -6
  267. pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvOn.py +7 -7
  268. pyhausbus/de/hausbus/homeassistant/proxy/led/data/MinBrightness.py +7 -7
  269. pyhausbus/de/hausbus/homeassistant/proxy/led/data/Status.py +7 -7
  270. pyhausbus/de/hausbus/homeassistant/proxy/led/params/EErrorCode.py +26 -0
  271. pyhausbus/de/hausbus/homeassistant/proxy/led/params/MOptions.py +61 -61
  272. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/Blink.py +7 -7
  273. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/GetConfiguration.py +6 -6
  274. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/GetMinBrightness.py +6 -6
  275. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/GetStatus.py +6 -6
  276. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/Off.py +7 -7
  277. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/On.py +7 -7
  278. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/SetButtonConfiguration.py +10 -10
  279. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/SetConfiguration.py +7 -7
  280. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/SetLedConfiguration.py +9 -9
  281. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/SetMinBrightness.py +7 -7
  282. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/Configuration.py +7 -7
  283. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/EvBlink.py +6 -6
  284. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/EvError.py +9 -9
  285. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/EvOff.py +6 -6
  286. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/EvOn.py +7 -7
  287. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/Status.py +9 -9
  288. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/EErrorCode.py +14 -4
  289. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/EStatus.py +12 -4
  290. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/MEventMask.py +65 -65
  291. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/MOptionMask.py +61 -61
  292. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/MOptions.py +61 -61
  293. pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/commands/GetConfiguration.py +7 -7
  294. pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/commands/SetConfiguration.py +9 -9
  295. pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/data/Configuration.py +9 -9
  296. pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/params/ESensorType.py +12 -4
  297. pyhausbus/de/hausbus/homeassistant/proxy/pCA9555/_init_.py +1 -0
  298. pyhausbus/de/hausbus/homeassistant/proxy/pCA9555/data/EvError.py +26 -0
  299. pyhausbus/de/hausbus/homeassistant/proxy/pCA9555/data/_init_.py +1 -0
  300. pyhausbus/de/hausbus/homeassistant/proxy/pCA9555/params/EErrorCode.py +28 -0
  301. pyhausbus/de/hausbus/homeassistant/proxy/pCA9555/params/_init_.py +1 -0
  302. pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Exec.py +7 -7
  303. pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Quit.py +6 -6
  304. pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/ReloadUserPlugin.py +6 -6
  305. pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Restart.py +6 -6
  306. pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/SetVariable.py +7 -7
  307. pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Shutdown.py +6 -6
  308. pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Standby.py +6 -6
  309. pyhausbus/de/hausbus/homeassistant/proxy/pCServer/data/EvOffline.py +6 -6
  310. pyhausbus/de/hausbus/homeassistant/proxy/pCServer/data/EvOnline.py +6 -6
  311. pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands/Enable.py +9 -9
  312. pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands/GetConfiguration.py +6 -6
  313. pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands/SetConfiguration.py +18 -10
  314. pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands/SetTargetValue.py +7 -7
  315. pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data/Configuration.py +18 -10
  316. pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data/EvError.py +9 -9
  317. pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data/EvOff.py +6 -6
  318. pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data/EvOn.py +6 -6
  319. pyhausbus/de/hausbus/homeassistant/proxy/pIDController/params/EEnable.py +12 -4
  320. pyhausbus/de/hausbus/homeassistant/proxy/pIDController/params/EErrorCode.py +15 -4
  321. pyhausbus/de/hausbus/homeassistant/proxy/pIDController/params/MOptions.py +96 -0
  322. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/_init_.py +1 -0
  323. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/commands/GetConfiguration.py +15 -0
  324. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/commands/GetStatus.py +15 -0
  325. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/commands/SetConfiguration.py +74 -0
  326. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/commands/_init_.py +1 -0
  327. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/Configuration.py +74 -0
  328. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/EvError.py +26 -0
  329. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/EvHigh.py +15 -0
  330. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/EvInRange.py +15 -0
  331. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/EvLow.py +15 -0
  332. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/EvStatus.py +33 -0
  333. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/Status.py +33 -0
  334. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/_init_.py +1 -0
  335. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/params/EErrorCode.py +40 -0
  336. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/params/ELastEvent.py +28 -0
  337. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/params/_init_.py +1 -0
  338. pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/commands/GetConfiguration.py +6 -6
  339. pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/commands/GetStatus.py +6 -6
  340. pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/commands/SetConfiguration.py +7 -7
  341. pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/Configuration.py +7 -7
  342. pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvError.py +9 -9
  343. pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvHighPower.py +6 -6
  344. pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvLowPower.py +6 -6
  345. pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvMediumPower.py +6 -6
  346. pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvStatus.py +9 -9
  347. pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/Status.py +9 -9
  348. pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/params/EErrorCode.py +14 -4
  349. pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/params/ELastEvent.py +12 -4
  350. pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/commands/GetConfiguration.py +6 -6
  351. pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/commands/GetLastData.py +6 -6
  352. pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/commands/GetState.py +6 -6
  353. pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/commands/SetConfiguration.py +6 -6
  354. pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/Configuration.py +6 -6
  355. pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/EvConnected.py +6 -6
  356. pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/EvData.py +7 -7
  357. pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/EvError.py +9 -9
  358. pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/LastData.py +7 -7
  359. pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/State.py +9 -9
  360. pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/params/EErrorCode.py +13 -4
  361. pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/params/EState.py +12 -4
  362. pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/commands/GetConfiguration.py +6 -6
  363. pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/commands/GetStatus.py +6 -6
  364. pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/commands/SetColor.py +7 -7
  365. pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/commands/SetConfiguration.py +7 -7
  366. pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/data/Configuration.py +7 -7
  367. pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/data/EvOff.py +6 -6
  368. pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/data/EvOn.py +7 -7
  369. pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/data/Status.py +7 -7
  370. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/GetConfiguration.py +6 -6
  371. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/GetStatus.py +6 -6
  372. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/MoveToPosition.py +7 -7
  373. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/SetConfiguration.py +9 -9
  374. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/SetPosition.py +7 -7
  375. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/Start.py +9 -9
  376. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/Stop.py +6 -6
  377. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/Configuration.py +9 -9
  378. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvClosed.py +7 -7
  379. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvError.py +9 -9
  380. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvNewMainState.py +9 -9
  381. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvNewSubState.py +9 -9
  382. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvOpen.py +6 -6
  383. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvStart.py +9 -9
  384. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/Status.py +7 -7
  385. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/params/EDirection.py +12 -4
  386. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/params/EErrorCode.py +14 -4
  387. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/params/ENewState.py +12 -4
  388. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/params/MOptions.py +65 -65
  389. pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/GetConfiguration.py +6 -6
  390. pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/GetStatus.py +6 -6
  391. pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/Off.py +7 -7
  392. pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/On.py +7 -7
  393. pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/SetConfiguration.py +9 -9
  394. pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/Toggle.py +7 -7
  395. pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/ToggleByDuty.py +32 -0
  396. pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/Configuration.py +9 -9
  397. pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvCmdDelay.py +7 -7
  398. pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvDisabled.py +6 -6
  399. pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvError.py +9 -9
  400. pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvOff.py +6 -6
  401. pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvOn.py +7 -7
  402. pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvToggle.py +31 -7
  403. pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/Status.py +26 -12
  404. pyhausbus/de/hausbus/homeassistant/proxy/schalter/params/EErrorCode.py +14 -4
  405. pyhausbus/de/hausbus/homeassistant/proxy/schalter/params/EState.py +12 -4
  406. pyhausbus/de/hausbus/homeassistant/proxy/schalter/params/MOptions.py +61 -61
  407. pyhausbus/de/hausbus/homeassistant/proxy/systemTime/commands/GetTime.py +6 -6
  408. pyhausbus/de/hausbus/homeassistant/proxy/systemTime/commands/SetTime.py +10 -10
  409. pyhausbus/de/hausbus/homeassistant/proxy/systemTime/data/EvError.py +9 -9
  410. pyhausbus/de/hausbus/homeassistant/proxy/systemTime/data/Time.py +7 -7
  411. pyhausbus/de/hausbus/homeassistant/proxy/systemTime/params/EDate.py +12 -4
  412. pyhausbus/de/hausbus/homeassistant/proxy/systemTime/params/EErrorCode.py +13 -4
  413. pyhausbus/de/hausbus/homeassistant/proxy/systemTime/params/EMonth.py +12 -4
  414. pyhausbus/de/hausbus/homeassistant/proxy/systemTime/params/EWeekDay.py +12 -4
  415. pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/EnableEvents.py +9 -9
  416. pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/GetConfiguration.py +6 -6
  417. pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/GetEnabled.py +6 -6
  418. pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/GetStatus.py +6 -6
  419. pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/SetConfiguration.py +10 -10
  420. pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/TriggerStatusEvent.py +15 -0
  421. pyhausbus/de/hausbus/homeassistant/proxy/taster/data/Configuration.py +10 -10
  422. pyhausbus/de/hausbus/homeassistant/proxy/taster/data/Enabled.py +7 -7
  423. pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvClicked.py +9 -9
  424. pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvCovered.py +9 -9
  425. pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvDoubleClick.py +9 -9
  426. pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvEnabled.py +7 -7
  427. pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvError.py +10 -9
  428. pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvFree.py +9 -9
  429. pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvHoldEnd.py +9 -9
  430. pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvHoldStart.py +9 -9
  431. pyhausbus/de/hausbus/homeassistant/proxy/taster/data/Status.py +9 -9
  432. pyhausbus/de/hausbus/homeassistant/proxy/taster/params/EEnable.py +12 -4
  433. pyhausbus/de/hausbus/homeassistant/proxy/taster/params/EErrorCode.py +27 -0
  434. pyhausbus/de/hausbus/homeassistant/proxy/taster/params/EState.py +12 -4
  435. pyhausbus/de/hausbus/homeassistant/proxy/taster/params/MEventMask.py +65 -65
  436. pyhausbus/de/hausbus/homeassistant/proxy/taster/params/MOptionMask.py +61 -61
  437. pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/commands/GetConfiguration.py +6 -6
  438. pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/commands/GetStatus.py +6 -6
  439. pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/commands/SetConfiguration.py +7 -7
  440. pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/Configuration.py +7 -7
  441. pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvAbove.py +6 -6
  442. pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvError.py +9 -9
  443. pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvInRange.py +6 -6
  444. pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvLow.py +6 -6
  445. pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvStatus.py +9 -9
  446. pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/Status.py +9 -9
  447. pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/params/EErrorCode.py +14 -4
  448. pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/params/ELastEvent.py +12 -4
  449. pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/commands/AnnounceServer.py +7 -7
  450. pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/commands/GetCurrentIp.py +6 -6
  451. pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/data/CurrentIp.py +7 -7
  452. pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/data/EvWhoIsServer.py +6 -6
  453. pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/commands/GetConfiguration.py +6 -6
  454. pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/commands/GetStatus.py +6 -6
  455. pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/commands/SetConfiguration.py +8 -8
  456. pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/Configuration.py +7 -7
  457. pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvCold.py +6 -6
  458. pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvError.py +9 -9
  459. pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvHot.py +6 -6
  460. pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvStatus.py +9 -9
  461. pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvWarm.py +6 -6
  462. pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/Status.py +9 -9
  463. pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/params/EErrorCode.py +14 -4
  464. pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/params/ELastEvent.py +12 -4
  465. pyhausbus/de/hausbus/homeassistant/proxy/wetter/commands/GetWeather.py +6 -6
  466. pyhausbus/de/hausbus/homeassistant/proxy/wetter/data/Weather.py +9 -9
  467. pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands/GetConfiguration.py +6 -6
  468. pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands/GetCurrentIp.py +6 -6
  469. pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands/SetConfiguration.py +8 -8
  470. pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands/WakeUpDevice.py +7 -7
  471. pyhausbus/de/hausbus/homeassistant/proxy/wiFi/data/Configuration.py +8 -8
  472. pyhausbus/de/hausbus/homeassistant/proxy/wiFi/data/CurrentIp.py +7 -7
  473. pyhausbus/de/hausbus/homeassistant/proxy/wiFi/data/EvError.py +9 -9
  474. pyhausbus/de/hausbus/homeassistant/proxy/wiFi/params/EErrorCode.py +14 -4
  475. pyhausbus/templates/AR8_30_8-fach-Relaismodul.tpl +18 -0
  476. pyhausbus/templates/ESP32C3_69_WLAN-Steckdose.tpl +5 -0
  477. pyhausbus/templates/ESP32_00_4-fach-0-10V-Dimmer.tpl +14 -0
  478. pyhausbus/templates/ESP32_01_4-fach-1-10V-Dimmer.tpl +10 -0
  479. pyhausbus/templates/ESP32_04_4-fach-Relaismodul.tpl +12 -0
  480. pyhausbus/templates/ESP32_08_8-fach-Relaismodul.tpl +18 -0
  481. pyhausbus/templates/ESP32_0A_12-fach-Relaismodul.tpl +22 -0
  482. pyhausbus/templates/ESP32_0C_16-fach-Relaismodul.tpl +26 -0
  483. pyhausbus/templates/ESP32_0D_8-fach-Motormodul.tpl +18 -0
  484. pyhausbus/templates/ESP32_10_22-fach-UP-IO.tpl +29 -0
  485. pyhausbus/templates/ESP32_18_6-fach-Taster.tpl +33 -0
  486. pyhausbus/templates/ESP32_19_4-fach-Taster.tpl +29 -0
  487. pyhausbus/templates/ESP32_1A_2-fach-Taster.tpl +25 -0
  488. pyhausbus/templates/ESP32_1B_1-fach-Taster.tpl +23 -0
  489. pyhausbus/templates/ESP32_1C_6-fach-Taster.tpl +29 -0
  490. pyhausbus/templates/ESP32_20_32-fach-IO.tpl +39 -0
  491. pyhausbus/templates/ESP32_28_8-fach-Dimmer.tpl +18 -0
  492. pyhausbus/templates/ESP32_30_2-fach-RGB-Dimmer.tpl +17 -0
  493. pyhausbus/templates/ESP32_31_2-fach-RGB-Dimmer.tpl +17 -0
  494. pyhausbus/templates/ESP32_65_LAN-RS485-Brueckenmodul.tpl +1 -0
  495. pyhausbus/templates/ESP32_99_LocalBroadcastDevice.tpl +1 -0
  496. pyhausbus/templates/FckmMapping.def +1 -0
  497. pyhausbus/templates/HBC_00_4-fach-0-10V-Dimmer.tpl +10 -0
  498. pyhausbus/templates/HBC_01_4-fach-1-10V-Dimmer.tpl +10 -0
  499. pyhausbus/templates/HBC_08_8-fach-Relaismodul.tpl +18 -0
  500. pyhausbus/templates/HBC_0C_16-fach-Relaismodul.tpl +26 -0
  501. pyhausbus/templates/HBC_10_24-fach-UP-IO.tpl +31 -0
  502. pyhausbus/templates/HBC_18_6-fach-Taster.tpl +34 -0
  503. pyhausbus/templates/HBC_19_4-fach-Taster.tpl +28 -0
  504. pyhausbus/templates/HBC_1A_2-fach-Taster.tpl +24 -0
  505. pyhausbus/templates/HBC_1B_1-fach-Taster.tpl +22 -0
  506. pyhausbus/templates/HBC_1C_6-fach-Taster.tpl +33 -0
  507. pyhausbus/templates/HBC_1D_4-fach-Taster.tpl +29 -0
  508. pyhausbus/templates/HBC_1E_2-fach-Taster.tpl +29 -0
  509. pyhausbus/templates/HBC_1F_1-fach-Taster.tpl +27 -0
  510. pyhausbus/templates/HBC_20_32-fach-IO.tpl +39 -0
  511. pyhausbus/templates/HBC_29_8-fach-Dimmer.tpl +18 -0
  512. pyhausbus/templates/HBC_30_2-fach-RGB-Dimmer.tpl +17 -0
  513. pyhausbus/templates/LoxoneHausBusMapping.txt +80 -0
  514. pyhausbus/templates/LoxoneModuleMapping.txt +11 -0
  515. pyhausbus/templates/SD485_1E_6-fach-Taster.tpl +30 -0
  516. pyhausbus/templates/SD485_28_24-fach-UP-IO.tpl +31 -0
  517. pyhausbus/templates/SD485_29_1-fach-Taster.tpl +24 -0
  518. pyhausbus/templates/SD485_2A_2-fach-Taster.tpl +26 -0
  519. pyhausbus/templates/SD485_2C_4-fach-Taster.tpl +26 -0
  520. pyhausbus/templates/SD485_2E_6-fach-Taster.tpl +30 -0
  521. pyhausbus/templates/SD485_2F_6-fach-Taster.tpl +30 -0
  522. pyhausbus/templates/SD6_14_Multitaster.tpl +26 -0
  523. pyhausbus/templates/SD6_1E_Multitaster.tpl +26 -0
  524. pyhausbus/templates/classMapping.def +9 -0
  525. pyhausbus/templates/deviceTypes.def +47 -0
  526. {pyhausbus-1.0.0.dist-info → pyhausbus-1.0.2.dist-info}/LICENSE +21 -21
  527. {pyhausbus-1.0.0.dist-info → pyhausbus-1.0.2.dist-info}/METADATA +5 -1
  528. pyhausbus-1.0.2.dist-info/RECORD +640 -0
  529. {pyhausbus-1.0.0.dist-info → pyhausbus-1.0.2.dist-info}/WHEEL +1 -1
  530. pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/BusTiming.py +0 -25
  531. pyhausbus-1.0.0.dist-info/RECORD +0 -525
@@ -1,70 +1,70 @@
1
- from pyhausbus.HausBusUtils import LOGGER
2
- from pyhausbus.HausBusCommand import HausBusCommand
3
- from pyhausbus.ABusFeature import *
4
- from pyhausbus.ResultWorker import ResultWorker
5
- import pyhausbus.HausBusUtils as HausBusUtils
6
- from pyhausbus.de.hausbus.homeassistant.proxy.powerMeter.params.EErrorCode import EErrorCode
7
- from pyhausbus.de.hausbus.homeassistant.proxy.powerMeter.data.Configuration import Configuration
8
- from pyhausbus.de.hausbus.homeassistant.proxy.powerMeter.data.Status import Status
9
- from pyhausbus.de.hausbus.homeassistant.proxy.powerMeter.params.ELastEvent import ELastEvent
10
-
11
- class PowerMeter(ABusFeature):
12
- CLASS_ID:int = 41
13
-
14
- def __init__ (self,objectId:int):
15
- super().__init__(objectId)
1
+ import logging
2
+ from pyhausbus.HausBusCommand import HausBusCommand
3
+ from pyhausbus.ABusFeature import *
4
+ from pyhausbus.ResultWorker import ResultWorker
5
+ import pyhausbus.HausBusUtils as HausBusUtils
6
+ from pyhausbus.de.hausbus.homeassistant.proxy.powerMeter.params.EErrorCode import EErrorCode
7
+ from pyhausbus.de.hausbus.homeassistant.proxy.powerMeter.data.Configuration import Configuration
8
+ from pyhausbus.de.hausbus.homeassistant.proxy.powerMeter.data.Status import Status
9
+ from pyhausbus.de.hausbus.homeassistant.proxy.powerMeter.params.ELastEvent import ELastEvent
16
10
 
11
+ class PowerMeter(ABusFeature):
12
+ CLASS_ID:int = 41
13
+
14
+ def __init__ (self,objectId:int):
15
+ super().__init__(objectId)
16
+
17
17
  @staticmethod
18
18
  def create(deviceId:int, instanceId:int):
19
- return PowerMeter(HausBusUtils.getObjectId(deviceId, 41, instanceId))
20
-
19
+ return PowerMeter(HausBusUtils.getObjectId(deviceId, 41, instanceId))
20
+
21
21
  """
22
22
  """
23
- def evLowPower(self):
24
- LOGGER.debug("evLowPower")
25
- hbCommand = HausBusCommand(self.objectId, 200, "evLowPower")
23
+ def evLowPower(self):
24
+ logging.info("evLowPower")
25
+ hbCommand = HausBusCommand(self.objectId, 200, "evLowPower")
26
26
  ResultWorker()._setResultInfo(None,self.getObjectId())
27
- hbCommand.send()
28
- LOGGER.debug("returns")
29
-
27
+ hbCommand.send()
28
+ logging.info("returns")
29
+
30
30
  """
31
31
  """
32
- def evMediumPower(self):
33
- LOGGER.debug("evMediumPower")
34
- hbCommand = HausBusCommand(self.objectId, 201, "evMediumPower")
32
+ def evMediumPower(self):
33
+ logging.info("evMediumPower")
34
+ hbCommand = HausBusCommand(self.objectId, 201, "evMediumPower")
35
35
  ResultWorker()._setResultInfo(None,self.getObjectId())
36
- hbCommand.send()
37
- LOGGER.debug("returns")
38
-
36
+ hbCommand.send()
37
+ logging.info("returns")
38
+
39
39
  """
40
40
  """
41
- def evHighPower(self):
42
- LOGGER.debug("evHighPower")
43
- hbCommand = HausBusCommand(self.objectId, 202, "evHighPower")
41
+ def evHighPower(self):
42
+ logging.info("evHighPower")
43
+ hbCommand = HausBusCommand(self.objectId, 202, "evHighPower")
44
44
  ResultWorker()._setResultInfo(None,self.getObjectId())
45
- hbCommand.send()
46
- LOGGER.debug("returns")
47
-
45
+ hbCommand.send()
46
+ logging.info("returns")
47
+
48
48
  """
49
49
  @param errorCode .
50
50
  """
51
- def evError(self, errorCode:EErrorCode):
52
- LOGGER.debug("evError"+" errorCode = "+str(errorCode))
53
- hbCommand = HausBusCommand(self.objectId, 255, "evError")
51
+ def evError(self, errorCode:EErrorCode):
52
+ logging.info("evError"+" errorCode = "+str(errorCode))
53
+ hbCommand = HausBusCommand(self.objectId, 255, "evError")
54
54
  hbCommand.addByte(errorCode.value)
55
55
  ResultWorker()._setResultInfo(None,self.getObjectId())
56
- hbCommand.send()
57
- LOGGER.debug("returns")
58
-
56
+ hbCommand.send()
57
+ logging.info("returns")
58
+
59
59
  """
60
60
  """
61
- def getConfiguration(self):
62
- LOGGER.debug("getConfiguration")
63
- hbCommand = HausBusCommand(self.objectId, 0, "getConfiguration")
61
+ def getConfiguration(self):
62
+ logging.info("getConfiguration")
63
+ hbCommand = HausBusCommand(self.objectId, 0, "getConfiguration")
64
64
  ResultWorker()._setResultInfo(Configuration,self.getObjectId())
65
- hbCommand.send()
66
- LOGGER.debug("returns")
67
-
65
+ hbCommand.send()
66
+ logging.info("returns")
67
+
68
68
  """
69
69
  @param lowerThreshold untere Leistungsschwelle[kWh].
70
70
  @param lowerThresholdFraction Nachkommastellen der unteren Leistungsschwelle[00-99].
@@ -77,9 +77,9 @@ class PowerMeter(ABusFeature):
77
77
  @param calibration Dieser Wert wird verwendet um die vom Sensor gelieferten Messwerte zu justieren. [1/10 Prozent].
78
78
  @param deltaSensorID Die InstanceID des Sensors auf diesem Controller.
79
79
  """
80
- def setConfiguration(self, lowerThreshold:int, lowerThresholdFraction:int, upperThreshold:int, upperThresholdFraction:int, reportTimeBase:int, minReportTime:int, maxReportTime:int, hysteresis:int, calibration:int, deltaSensorID:int):
81
- LOGGER.debug("setConfiguration"+" lowerThreshold = "+str(lowerThreshold)+" lowerThresholdFraction = "+str(lowerThresholdFraction)+" upperThreshold = "+str(upperThreshold)+" upperThresholdFraction = "+str(upperThresholdFraction)+" reportTimeBase = "+str(reportTimeBase)+" minReportTime = "+str(minReportTime)+" maxReportTime = "+str(maxReportTime)+" hysteresis = "+str(hysteresis)+" calibration = "+str(calibration)+" deltaSensorID = "+str(deltaSensorID))
82
- hbCommand = HausBusCommand(self.objectId, 1, "setConfiguration")
80
+ def setConfiguration(self, lowerThreshold:int, lowerThresholdFraction:int, upperThreshold:int, upperThresholdFraction:int, reportTimeBase:int, minReportTime:int, maxReportTime:int, hysteresis:int, calibration:int, deltaSensorID:int):
81
+ logging.info("setConfiguration"+" lowerThreshold = "+str(lowerThreshold)+" lowerThresholdFraction = "+str(lowerThresholdFraction)+" upperThreshold = "+str(upperThreshold)+" upperThresholdFraction = "+str(upperThresholdFraction)+" reportTimeBase = "+str(reportTimeBase)+" minReportTime = "+str(minReportTime)+" maxReportTime = "+str(maxReportTime)+" hysteresis = "+str(hysteresis)+" calibration = "+str(calibration)+" deltaSensorID = "+str(deltaSensorID))
82
+ hbCommand = HausBusCommand(self.objectId, 1, "setConfiguration")
83
83
  hbCommand.addSByte(lowerThreshold)
84
84
  hbCommand.addSByte(lowerThresholdFraction)
85
85
  hbCommand.addSByte(upperThreshold)
@@ -91,18 +91,18 @@ class PowerMeter(ABusFeature):
91
91
  hbCommand.addSByte(calibration)
92
92
  hbCommand.addByte(deltaSensorID)
93
93
  ResultWorker()._setResultInfo(None,self.getObjectId())
94
- hbCommand.send()
95
- LOGGER.debug("returns")
96
-
94
+ hbCommand.send()
95
+ logging.info("returns")
96
+
97
97
  """
98
98
  """
99
- def getStatus(self):
100
- LOGGER.debug("getStatus")
101
- hbCommand = HausBusCommand(self.objectId, 2, "getStatus")
99
+ def getStatus(self):
100
+ logging.info("getStatus")
101
+ hbCommand = HausBusCommand(self.objectId, 2, "getStatus")
102
102
  ResultWorker()._setResultInfo(Status,self.getObjectId())
103
- hbCommand.send()
104
- LOGGER.debug("returns")
105
-
103
+ hbCommand.send()
104
+ logging.info("returns")
105
+
106
106
  """
107
107
  @param lowerThreshold untere Leistungsschwelle[kWh].
108
108
  @param lowerThresholdFraction Nachkommastellen der unteren Leistungsschwelle[00-99].
@@ -115,9 +115,9 @@ class PowerMeter(ABusFeature):
115
115
  @param calibration Dieser Wert wird verwendet um die vom Sensor gelieferten Messwerte zu justieren. [1/10 Prozent].
116
116
  @param deltaSensorID Die InstanceID des Sensors auf diesem Controller.
117
117
  """
118
- def Configuration(self, lowerThreshold:int, lowerThresholdFraction:int, upperThreshold:int, upperThresholdFraction:int, reportTimeBase:int, minReportTime:int, maxReportTime:int, hysteresis:int, calibration:int, deltaSensorID:int):
119
- LOGGER.debug("Configuration"+" lowerThreshold = "+str(lowerThreshold)+" lowerThresholdFraction = "+str(lowerThresholdFraction)+" upperThreshold = "+str(upperThreshold)+" upperThresholdFraction = "+str(upperThresholdFraction)+" reportTimeBase = "+str(reportTimeBase)+" minReportTime = "+str(minReportTime)+" maxReportTime = "+str(maxReportTime)+" hysteresis = "+str(hysteresis)+" calibration = "+str(calibration)+" deltaSensorID = "+str(deltaSensorID))
120
- hbCommand = HausBusCommand(self.objectId, 128, "Configuration")
118
+ def Configuration(self, lowerThreshold:int, lowerThresholdFraction:int, upperThreshold:int, upperThresholdFraction:int, reportTimeBase:int, minReportTime:int, maxReportTime:int, hysteresis:int, calibration:int, deltaSensorID:int):
119
+ logging.info("Configuration"+" lowerThreshold = "+str(lowerThreshold)+" lowerThresholdFraction = "+str(lowerThresholdFraction)+" upperThreshold = "+str(upperThreshold)+" upperThresholdFraction = "+str(upperThresholdFraction)+" reportTimeBase = "+str(reportTimeBase)+" minReportTime = "+str(minReportTime)+" maxReportTime = "+str(maxReportTime)+" hysteresis = "+str(hysteresis)+" calibration = "+str(calibration)+" deltaSensorID = "+str(deltaSensorID))
120
+ hbCommand = HausBusCommand(self.objectId, 128, "Configuration")
121
121
  hbCommand.addSByte(lowerThreshold)
122
122
  hbCommand.addSByte(lowerThresholdFraction)
123
123
  hbCommand.addSByte(upperThreshold)
@@ -129,37 +129,37 @@ class PowerMeter(ABusFeature):
129
129
  hbCommand.addSByte(calibration)
130
130
  hbCommand.addByte(deltaSensorID)
131
131
  ResultWorker()._setResultInfo(None,self.getObjectId())
132
- hbCommand.send()
133
- LOGGER.debug("returns")
134
-
132
+ hbCommand.send()
133
+ logging.info("returns")
134
+
135
135
  """
136
136
  @param power Aktueller Stromverbrauch.
137
137
  @param centiPower hundertstel Stromverbrauch.
138
138
  @param lastEvent .
139
139
  """
140
- def Status(self, power:int, centiPower:int, lastEvent:ELastEvent):
141
- LOGGER.debug("Status"+" power = "+str(power)+" centiPower = "+str(centiPower)+" lastEvent = "+str(lastEvent))
142
- hbCommand = HausBusCommand(self.objectId, 129, "Status")
140
+ def Status(self, power:int, centiPower:int, lastEvent:ELastEvent):
141
+ logging.info("Status"+" power = "+str(power)+" centiPower = "+str(centiPower)+" lastEvent = "+str(lastEvent))
142
+ hbCommand = HausBusCommand(self.objectId, 129, "Status")
143
143
  hbCommand.addSByte(power)
144
144
  hbCommand.addSByte(centiPower)
145
145
  hbCommand.addByte(lastEvent.value)
146
146
  ResultWorker()._setResultInfo(None,self.getObjectId())
147
- hbCommand.send()
148
- LOGGER.debug("returns")
149
-
147
+ hbCommand.send()
148
+ logging.info("returns")
149
+
150
150
  """
151
151
  @param power Stromverbrauch [kWh].
152
152
  @param centiPower hundertstel Stromverbrauch.
153
153
  @param lastEvent .
154
154
  """
155
- def evStatus(self, power:int, centiPower:int, lastEvent:ELastEvent):
156
- LOGGER.debug("evStatus"+" power = "+str(power)+" centiPower = "+str(centiPower)+" lastEvent = "+str(lastEvent))
157
- hbCommand = HausBusCommand(self.objectId, 203, "evStatus")
155
+ def evStatus(self, power:int, centiPower:int, lastEvent:ELastEvent):
156
+ logging.info("evStatus"+" power = "+str(power)+" centiPower = "+str(centiPower)+" lastEvent = "+str(lastEvent))
157
+ hbCommand = HausBusCommand(self.objectId, 203, "evStatus")
158
158
  hbCommand.addSByte(power)
159
159
  hbCommand.addSByte(centiPower)
160
160
  hbCommand.addByte(lastEvent.value)
161
161
  ResultWorker()._setResultInfo(None,self.getObjectId())
162
- hbCommand.send()
163
- LOGGER.debug("returns")
164
-
162
+ hbCommand.send()
163
+ logging.info("returns")
164
+
165
165
 
@@ -1,4 +1,4 @@
1
- def getBusClassNameFor(classId, functionId):
1
+ def getBusClassNameFor(classId, functionId):
2
2
  if (classId==16 and functionId==201):
3
3
  return "pyhausbus.de.hausbus.homeassistant.proxy.taster.data.EvClicked"
4
4
  if (classId==16 and functionId==202):
@@ -31,6 +31,8 @@ def getBusClassNameFor(classId, functionId):
31
31
  return "pyhausbus.de.hausbus.homeassistant.proxy.taster.data.Enabled"
32
32
  if (classId==16 and functionId==4):
33
33
  return "pyhausbus.de.hausbus.homeassistant.proxy.taster.commands.GetEnabled"
34
+ if (classId==16 and functionId==5):
35
+ return "pyhausbus.de.hausbus.homeassistant.proxy.taster.commands.TriggerStatusEvent"
34
36
  if (classId==32 and functionId==200):
35
37
  return "pyhausbus.de.hausbus.homeassistant.proxy.temperatursensor.data.EvCold"
36
38
  if (classId==32 and functionId==201):
@@ -79,6 +81,8 @@ def getBusClassNameFor(classId, functionId):
79
81
  return "pyhausbus.de.hausbus.homeassistant.proxy.schalter.data.EvCmdDelay"
80
82
  if (classId==19 and functionId==204):
81
83
  return "pyhausbus.de.hausbus.homeassistant.proxy.schalter.data.EvDisabled"
84
+ if (classId==19 and functionId==6):
85
+ return "pyhausbus.de.hausbus.homeassistant.proxy.schalter.commands.ToggleByDuty"
82
86
  if (classId==17 and functionId==201):
83
87
  return "pyhausbus.de.hausbus.homeassistant.proxy.dimmer.data.EvOn"
84
88
  if (classId==17 and functionId==1):
@@ -205,6 +209,8 @@ def getBusClassNameFor(classId, functionId):
205
209
  return "pyhausbus.de.hausbus.homeassistant.proxy.controller.commands.EnableFeature"
206
210
  if (classId==0 and functionId==210):
207
211
  return "pyhausbus.de.hausbus.homeassistant.proxy.controller.data.EvSystemVariableChanged"
212
+ if (classId==0 and functionId==20):
213
+ return "pyhausbus.de.hausbus.homeassistant.proxy.controller.commands.ResetOneWireManager"
208
214
  if (classId==18 and functionId==0):
209
215
  return "pyhausbus.de.hausbus.homeassistant.proxy.rollladen.commands.GetConfiguration"
210
216
  if (classId==18 and functionId==2):
@@ -399,22 +405,22 @@ def getBusClassNameFor(classId, functionId):
399
405
  return "pyhausbus.de.hausbus.homeassistant.proxy.gateway.commands.GetConfiguration"
400
406
  if (classId==176 and functionId==1):
401
407
  return "pyhausbus.de.hausbus.homeassistant.proxy.gateway.commands.SetConfiguration"
402
- if (classId==176 and functionId==2):
403
- return "pyhausbus.de.hausbus.homeassistant.proxy.gateway.commands.CheckBusTiming"
404
408
  if (classId==176 and functionId==3):
405
- return "pyhausbus.de.hausbus.homeassistant.proxy.gateway.commands.GetBusTiming"
409
+ return "pyhausbus.de.hausbus.homeassistant.proxy.gateway.commands.GetMinIdleTime"
406
410
  if (classId==176 and functionId==129):
407
- return "pyhausbus.de.hausbus.homeassistant.proxy.gateway.data.BusTiming"
411
+ return "pyhausbus.de.hausbus.homeassistant.proxy.gateway.data.MinIdleTime"
408
412
  if (classId==176 and functionId==128):
409
413
  return "pyhausbus.de.hausbus.homeassistant.proxy.gateway.data.Configuration"
410
414
  if (classId==176 and functionId==4):
411
- return "pyhausbus.de.hausbus.homeassistant.proxy.gateway.commands.ResetBusTiming"
415
+ return "pyhausbus.de.hausbus.homeassistant.proxy.gateway.commands.SetMinIdleTime"
412
416
  if (classId==176 and functionId==5):
413
417
  return "pyhausbus.de.hausbus.homeassistant.proxy.gateway.commands.GetConnectedDevices"
414
418
  if (classId==176 and functionId==130):
415
419
  return "pyhausbus.de.hausbus.homeassistant.proxy.gateway.data.ConnectedDevices"
416
420
  if (classId==176 and functionId==200):
417
421
  return "pyhausbus.de.hausbus.homeassistant.proxy.gateway.data.EvGatewayLoad"
422
+ if (classId==176 and functionId==2):
423
+ return "pyhausbus.de.hausbus.homeassistant.proxy.gateway.commands.SetPreferLoxone"
418
424
  if (classId==35 and functionId==0):
419
425
  return "pyhausbus.de.hausbus.homeassistant.proxy.counter.commands.GetConfiguration"
420
426
  if (classId==35 and functionId==1):
@@ -473,6 +479,8 @@ def getBusClassNameFor(classId, functionId):
473
479
  return "pyhausbus.de.hausbus.homeassistant.proxy.currentReader.data.EvDebug"
474
480
  if (classId==90 and functionId==211):
475
481
  return "pyhausbus.de.hausbus.homeassistant.proxy.currentReader.data.EvInterrupt"
482
+ if (classId==90 and functionId==255):
483
+ return "pyhausbus.de.hausbus.homeassistant.proxy.currentReader.data.EvError"
476
484
  if (classId==91 and functionId==1):
477
485
  return "pyhausbus.de.hausbus.homeassistant.proxy.tcpClient.commands.AnnounceServer"
478
486
  if (classId==91 and functionId==2):
@@ -613,10 +621,68 @@ def getBusClassNameFor(classId, functionId):
613
621
  return "pyhausbus.de.hausbus.homeassistant.proxy.modBusMaster.commands.SetConfiguration"
614
622
  if (classId==45 and functionId==128):
615
623
  return "pyhausbus.de.hausbus.homeassistant.proxy.modBusMaster.data.Configuration"
616
-
617
- return "de.hausbus.com.GenericBusData"
618
-
619
- def getBusClassNameForClass(classId):
624
+ if (classId==36 and functionId==200):
625
+ return "pyhausbus.de.hausbus.homeassistant.proxy.analogEingang.data.EvLow"
626
+ if (classId==36 and functionId==201):
627
+ return "pyhausbus.de.hausbus.homeassistant.proxy.analogEingang.data.EvInRange"
628
+ if (classId==36 and functionId==202):
629
+ return "pyhausbus.de.hausbus.homeassistant.proxy.analogEingang.data.EvHigh"
630
+ if (classId==36 and functionId==203):
631
+ return "pyhausbus.de.hausbus.homeassistant.proxy.analogEingang.data.EvStatus"
632
+ if (classId==36 and functionId==0):
633
+ return "pyhausbus.de.hausbus.homeassistant.proxy.analogEingang.commands.GetConfiguration"
634
+ if (classId==36 and functionId==1):
635
+ return "pyhausbus.de.hausbus.homeassistant.proxy.analogEingang.commands.SetConfiguration"
636
+ if (classId==36 and functionId==2):
637
+ return "pyhausbus.de.hausbus.homeassistant.proxy.analogEingang.commands.GetStatus"
638
+ if (classId==36 and functionId==128):
639
+ return "pyhausbus.de.hausbus.homeassistant.proxy.analogEingang.data.Configuration"
640
+ if (classId==36 and functionId==129):
641
+ return "pyhausbus.de.hausbus.homeassistant.proxy.analogEingang.data.Status"
642
+ if (classId==165 and functionId==255):
643
+ return "pyhausbus.de.hausbus.homeassistant.proxy.pCA9555.data.EvError"
644
+ if (classId==48 and functionId==200):
645
+ return "pyhausbus.de.hausbus.homeassistant.proxy.drucksensor.data.EvLow"
646
+ if (classId==48 and functionId==201):
647
+ return "pyhausbus.de.hausbus.homeassistant.proxy.drucksensor.data.EvInRange"
648
+ if (classId==48 and functionId==202):
649
+ return "pyhausbus.de.hausbus.homeassistant.proxy.drucksensor.data.EvHigh"
650
+ if (classId==48 and functionId==203):
651
+ return "pyhausbus.de.hausbus.homeassistant.proxy.drucksensor.data.EvStatus"
652
+ if (classId==48 and functionId==0):
653
+ return "pyhausbus.de.hausbus.homeassistant.proxy.drucksensor.commands.GetConfiguration"
654
+ if (classId==48 and functionId==1):
655
+ return "pyhausbus.de.hausbus.homeassistant.proxy.drucksensor.commands.SetConfiguration"
656
+ if (classId==48 and functionId==2):
657
+ return "pyhausbus.de.hausbus.homeassistant.proxy.drucksensor.commands.GetStatus"
658
+ if (classId==48 and functionId==128):
659
+ return "pyhausbus.de.hausbus.homeassistant.proxy.drucksensor.data.Configuration"
660
+ if (classId==48 and functionId==129):
661
+ return "pyhausbus.de.hausbus.homeassistant.proxy.drucksensor.data.Status"
662
+ if (classId==49 and functionId==200):
663
+ return "pyhausbus.de.hausbus.homeassistant.proxy.pT1000.data.EvLow"
664
+ if (classId==49 and functionId==201):
665
+ return "pyhausbus.de.hausbus.homeassistant.proxy.pT1000.data.EvInRange"
666
+ if (classId==49 and functionId==202):
667
+ return "pyhausbus.de.hausbus.homeassistant.proxy.pT1000.data.EvHigh"
668
+ if (classId==49 and functionId==203):
669
+ return "pyhausbus.de.hausbus.homeassistant.proxy.pT1000.data.EvStatus"
670
+ if (classId==49 and functionId==255):
671
+ return "pyhausbus.de.hausbus.homeassistant.proxy.pT1000.data.EvError"
672
+ if (classId==49 and functionId==0):
673
+ return "pyhausbus.de.hausbus.homeassistant.proxy.pT1000.commands.GetConfiguration"
674
+ if (classId==49 and functionId==1):
675
+ return "pyhausbus.de.hausbus.homeassistant.proxy.pT1000.commands.SetConfiguration"
676
+ if (classId==49 and functionId==2):
677
+ return "pyhausbus.de.hausbus.homeassistant.proxy.pT1000.commands.GetStatus"
678
+ if (classId==49 and functionId==128):
679
+ return "pyhausbus.de.hausbus.homeassistant.proxy.pT1000.data.Configuration"
680
+ if (classId==49 and functionId==129):
681
+ return "pyhausbus.de.hausbus.homeassistant.proxy.pT1000.data.Status"
682
+
683
+ return "de.hausbus.com.GenericBusData"
684
+
685
+ def getBusClassNameForClass(classId):
620
686
  if (classId==16):
621
687
  return "pyhausbus.de.hausbus.homeassistant.proxy.Taster"
622
688
  if (classId==32):
@@ -677,6 +743,14 @@ def getBusClassNameForClass(classId):
677
743
  return "pyhausbus.de.hausbus.homeassistant.proxy.PIDController"
678
744
  if (classId==45):
679
745
  return "pyhausbus.de.hausbus.homeassistant.proxy.ModBusMaster"
680
-
681
- return "de.hausbus.com.GenericBusData"
746
+ if (classId==36):
747
+ return "pyhausbus.de.hausbus.homeassistant.proxy.AnalogEingang"
748
+ if (classId==165):
749
+ return "pyhausbus.de.hausbus.homeassistant.proxy.PCA9555"
750
+ if (classId==48):
751
+ return "pyhausbus.de.hausbus.homeassistant.proxy.Drucksensor"
752
+ if (classId==49):
753
+ return "pyhausbus.de.hausbus.homeassistant.proxy.PT1000"
754
+
755
+ return "de.hausbus.com.GenericBusData"
682
756
 
@@ -1,120 +1,120 @@
1
- from pyhausbus.HausBusUtils import LOGGER
2
- from pyhausbus.HausBusCommand import HausBusCommand
3
- from pyhausbus.ABusFeature import *
4
- from pyhausbus.ResultWorker import ResultWorker
5
- import pyhausbus.HausBusUtils as HausBusUtils
6
- from pyhausbus.de.hausbus.homeassistant.proxy.rFIDReader.params.EErrorCode import EErrorCode
7
- from pyhausbus.de.hausbus.homeassistant.proxy.rFIDReader.data.Configuration import Configuration
8
- from pyhausbus.de.hausbus.homeassistant.proxy.rFIDReader.params.EState import EState
9
- from pyhausbus.de.hausbus.homeassistant.proxy.rFIDReader.data.LastData import LastData
10
- from pyhausbus.de.hausbus.homeassistant.proxy.rFIDReader.data.State import State
11
-
12
- class RFIDReader(ABusFeature):
13
- CLASS_ID:int = 43
14
-
15
- def __init__ (self,objectId:int):
16
- super().__init__(objectId)
1
+ import logging
2
+ from pyhausbus.HausBusCommand import HausBusCommand
3
+ from pyhausbus.ABusFeature import *
4
+ from pyhausbus.ResultWorker import ResultWorker
5
+ import pyhausbus.HausBusUtils as HausBusUtils
6
+ from pyhausbus.de.hausbus.homeassistant.proxy.rFIDReader.params.EErrorCode import EErrorCode
7
+ from pyhausbus.de.hausbus.homeassistant.proxy.rFIDReader.data.Configuration import Configuration
8
+ from pyhausbus.de.hausbus.homeassistant.proxy.rFIDReader.params.EState import EState
9
+ from pyhausbus.de.hausbus.homeassistant.proxy.rFIDReader.data.LastData import LastData
10
+ from pyhausbus.de.hausbus.homeassistant.proxy.rFIDReader.data.State import State
17
11
 
12
+ class RFIDReader(ABusFeature):
13
+ CLASS_ID:int = 43
14
+
15
+ def __init__ (self,objectId:int):
16
+ super().__init__(objectId)
17
+
18
18
  @staticmethod
19
19
  def create(deviceId:int, instanceId:int):
20
- return RFIDReader(HausBusUtils.getObjectId(deviceId, 43, instanceId))
21
-
20
+ return RFIDReader(HausBusUtils.getObjectId(deviceId, 43, instanceId))
21
+
22
22
  """
23
23
  """
24
- def evConnected(self):
25
- LOGGER.debug("evConnected")
26
- hbCommand = HausBusCommand(self.objectId, 200, "evConnected")
24
+ def evConnected(self):
25
+ logging.info("evConnected")
26
+ hbCommand = HausBusCommand(self.objectId, 200, "evConnected")
27
27
  ResultWorker()._setResultInfo(None,self.getObjectId())
28
- hbCommand.send()
29
- LOGGER.debug("returns")
30
-
28
+ hbCommand.send()
29
+ logging.info("returns")
30
+
31
31
  """
32
32
  @param errorCode .
33
33
  """
34
- def evError(self, errorCode:EErrorCode):
35
- LOGGER.debug("evError"+" errorCode = "+str(errorCode))
36
- hbCommand = HausBusCommand(self.objectId, 255, "evError")
34
+ def evError(self, errorCode:EErrorCode):
35
+ logging.info("evError"+" errorCode = "+str(errorCode))
36
+ hbCommand = HausBusCommand(self.objectId, 255, "evError")
37
37
  hbCommand.addByte(errorCode.value)
38
38
  ResultWorker()._setResultInfo(None,self.getObjectId())
39
- hbCommand.send()
40
- LOGGER.debug("returns")
41
-
39
+ hbCommand.send()
40
+ logging.info("returns")
41
+
42
42
  """
43
43
  """
44
- def getConfiguration(self):
45
- LOGGER.debug("getConfiguration")
46
- hbCommand = HausBusCommand(self.objectId, 0, "getConfiguration")
44
+ def getConfiguration(self):
45
+ logging.info("getConfiguration")
46
+ hbCommand = HausBusCommand(self.objectId, 0, "getConfiguration")
47
47
  ResultWorker()._setResultInfo(Configuration,self.getObjectId())
48
- hbCommand.send()
49
- LOGGER.debug("returns")
50
-
48
+ hbCommand.send()
49
+ logging.info("returns")
50
+
51
51
  """
52
52
  """
53
- def setConfiguration(self):
54
- LOGGER.debug("setConfiguration")
55
- hbCommand = HausBusCommand(self.objectId, 1, "setConfiguration")
53
+ def setConfiguration(self):
54
+ logging.info("setConfiguration")
55
+ hbCommand = HausBusCommand(self.objectId, 1, "setConfiguration")
56
56
  ResultWorker()._setResultInfo(None,self.getObjectId())
57
- hbCommand.send()
58
- LOGGER.debug("returns")
59
-
57
+ hbCommand.send()
58
+ logging.info("returns")
59
+
60
60
  """
61
61
  @param state State of the RFID-Reader hardware.
62
62
  """
63
- def State(self, state:EState):
64
- LOGGER.debug("State"+" state = "+str(state))
65
- hbCommand = HausBusCommand(self.objectId, 129, "State")
63
+ def State(self, state:EState):
64
+ logging.info("State"+" state = "+str(state))
65
+ hbCommand = HausBusCommand(self.objectId, 129, "State")
66
66
  hbCommand.addByte(state.value)
67
67
  ResultWorker()._setResultInfo(None,self.getObjectId())
68
- hbCommand.send()
69
- LOGGER.debug("returns")
70
-
68
+ hbCommand.send()
69
+ logging.info("returns")
70
+
71
71
  """
72
72
  @param tagID ID of the detected RFID tag.
73
73
  """
74
- def evData(self, tagID:int):
75
- LOGGER.debug("evData"+" tagID = "+str(tagID))
76
- hbCommand = HausBusCommand(self.objectId, 201, "evData")
74
+ def evData(self, tagID:int):
75
+ logging.info("evData"+" tagID = "+str(tagID))
76
+ hbCommand = HausBusCommand(self.objectId, 201, "evData")
77
77
  hbCommand.addDWord(tagID)
78
78
  ResultWorker()._setResultInfo(None,self.getObjectId())
79
- hbCommand.send()
80
- LOGGER.debug("returns")
81
-
79
+ hbCommand.send()
80
+ logging.info("returns")
81
+
82
82
  """
83
83
  """
84
- def getLastData(self):
85
- LOGGER.debug("getLastData")
86
- hbCommand = HausBusCommand(self.objectId, 3, "getLastData")
84
+ def getLastData(self):
85
+ logging.info("getLastData")
86
+ hbCommand = HausBusCommand(self.objectId, 3, "getLastData")
87
87
  ResultWorker()._setResultInfo(LastData,self.getObjectId())
88
- hbCommand.send()
89
- LOGGER.debug("returns")
90
-
88
+ hbCommand.send()
89
+ logging.info("returns")
90
+
91
91
  """
92
92
  @param tagID last tagID read successfully.
93
93
  """
94
- def LastData(self, tagID:int):
95
- LOGGER.debug("LastData"+" tagID = "+str(tagID))
96
- hbCommand = HausBusCommand(self.objectId, 130, "LastData")
94
+ def LastData(self, tagID:int):
95
+ logging.info("LastData"+" tagID = "+str(tagID))
96
+ hbCommand = HausBusCommand(self.objectId, 130, "LastData")
97
97
  hbCommand.addDWord(tagID)
98
98
  ResultWorker()._setResultInfo(None,self.getObjectId())
99
- hbCommand.send()
100
- LOGGER.debug("returns")
101
-
99
+ hbCommand.send()
100
+ logging.info("returns")
101
+
102
102
  """
103
103
  """
104
- def Configuration(self):
105
- LOGGER.debug("Configuration")
106
- hbCommand = HausBusCommand(self.objectId, 128, "Configuration")
104
+ def Configuration(self):
105
+ logging.info("Configuration")
106
+ hbCommand = HausBusCommand(self.objectId, 128, "Configuration")
107
107
  ResultWorker()._setResultInfo(None,self.getObjectId())
108
- hbCommand.send()
109
- LOGGER.debug("returns")
110
-
108
+ hbCommand.send()
109
+ logging.info("returns")
110
+
111
111
  """
112
112
  """
113
- def getState(self):
114
- LOGGER.debug("getState")
115
- hbCommand = HausBusCommand(self.objectId, 2, "getState")
113
+ def getState(self):
114
+ logging.info("getState")
115
+ hbCommand = HausBusCommand(self.objectId, 2, "getState")
116
116
  ResultWorker()._setResultInfo(State,self.getObjectId())
117
- hbCommand.send()
118
- LOGGER.debug("returns")
119
-
117
+ hbCommand.send()
118
+ logging.info("returns")
119
+
120
120