pyhausbus 1.0.1__py2.py3-none-any.whl → 1.0.3__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/HausBusUtils.py +203 -203
  6. pyhausbus/HomeServer.py +86 -68
  7. pyhausbus/IBusDataListener.py +6 -6
  8. pyhausbus/Main.py +100 -100
  9. pyhausbus/ObjectId.py +22 -22
  10. pyhausbus/ResultWorker.py +53 -53
  11. pyhausbus/Templates.py +140 -0
  12. pyhausbus/UdpReceiveWorker.py +73 -73
  13. pyhausbus/WeekTime.py +55 -55
  14. pyhausbus/de/hausbus/homeassistant/proxy/AnalogEingang.py +139 -0
  15. pyhausbus/de/hausbus/homeassistant/proxy/Controller.py +357 -342
  16. pyhausbus/de/hausbus/homeassistant/proxy/Counter.py +65 -65
  17. pyhausbus/de/hausbus/homeassistant/proxy/CurrentReader.py +133 -121
  18. pyhausbus/de/hausbus/homeassistant/proxy/DaliLine.py +63 -63
  19. pyhausbus/de/hausbus/homeassistant/proxy/DigitalPort.py +40 -40
  20. pyhausbus/de/hausbus/homeassistant/proxy/Dimmer.py +91 -91
  21. pyhausbus/de/hausbus/homeassistant/proxy/Drucksensor.py +141 -0
  22. pyhausbus/de/hausbus/homeassistant/proxy/Ethernet.py +61 -61
  23. pyhausbus/de/hausbus/homeassistant/proxy/Feuchtesensor.py +77 -77
  24. pyhausbus/de/hausbus/homeassistant/proxy/Gateway.py +108 -97
  25. pyhausbus/de/hausbus/homeassistant/proxy/Helligkeitssensor.py +77 -77
  26. pyhausbus/de/hausbus/homeassistant/proxy/IRSensor.py +55 -55
  27. pyhausbus/de/hausbus/homeassistant/proxy/Led.py +117 -116
  28. pyhausbus/de/hausbus/homeassistant/proxy/LogicalButton.py +116 -116
  29. pyhausbus/de/hausbus/homeassistant/proxy/ModBusMaster.py +34 -34
  30. pyhausbus/de/hausbus/homeassistant/proxy/ModbusSlave.py +13 -13
  31. pyhausbus/de/hausbus/homeassistant/proxy/PCA9555.py +29 -0
  32. pyhausbus/de/hausbus/homeassistant/proxy/PCServer.py +67 -67
  33. pyhausbus/de/hausbus/homeassistant/proxy/PIDController.py +69 -64
  34. pyhausbus/de/hausbus/homeassistant/proxy/PT1000.py +153 -0
  35. pyhausbus/de/hausbus/homeassistant/proxy/PowerMeter.py +77 -77
  36. pyhausbus/de/hausbus/homeassistant/proxy/ProxyFactory.py +86 -12
  37. pyhausbus/de/hausbus/homeassistant/proxy/RFIDReader.py +78 -78
  38. pyhausbus/de/hausbus/homeassistant/proxy/RGBDimmer.py +63 -63
  39. pyhausbus/de/hausbus/homeassistant/proxy/Rollladen.py +110 -110
  40. pyhausbus/de/hausbus/homeassistant/proxy/Schalter.py +127 -104
  41. pyhausbus/de/hausbus/homeassistant/proxy/SnmpAgent.py +13 -13
  42. pyhausbus/de/hausbus/homeassistant/proxy/SystemTime.py +42 -42
  43. pyhausbus/de/hausbus/homeassistant/proxy/Taster.py +128 -118
  44. pyhausbus/de/hausbus/homeassistant/proxy/Taupunkt.py +77 -77
  45. pyhausbus/de/hausbus/homeassistant/proxy/TcpClient.py +38 -38
  46. pyhausbus/de/hausbus/homeassistant/proxy/Temperatursensor.py +78 -78
  47. pyhausbus/de/hausbus/homeassistant/proxy/Wetter.py +26 -26
  48. pyhausbus/de/hausbus/homeassistant/proxy/WiFi.py +60 -60
  49. pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/_init_.py +1 -0
  50. pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/commands/GetConfiguration.py +15 -0
  51. pyhausbus/de/hausbus/homeassistant/proxy/{gateway/commands/CheckBusTiming.py → analogEingang/commands/GetStatus.py} +8 -8
  52. pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/commands/SetConfiguration.py +74 -0
  53. pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/commands/_init_.py +1 -0
  54. pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/data/Configuration.py +74 -0
  55. pyhausbus/de/hausbus/homeassistant/proxy/{gateway/commands/ResetBusTiming.py → analogEingang/data/EvHigh.py} +8 -8
  56. pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/data/EvInRange.py +15 -0
  57. pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/data/EvLow.py +15 -0
  58. pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/data/EvStatus.py +33 -0
  59. pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/data/Status.py +25 -0
  60. pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/data/_init_.py +1 -0
  61. pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/params/ELastEvent.py +28 -0
  62. pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/params/_init_.py +1 -0
  63. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/EnableFeature.py +9 -9
  64. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GenerateRandomDeviceId.py +6 -6
  65. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetConfiguration.py +6 -6
  66. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetModuleId.py +9 -9
  67. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetRemoteObjects.py +6 -6
  68. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetRuleState.py +7 -7
  69. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetSystemVariable.py +9 -9
  70. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetTime.py +6 -6
  71. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetUnitGroupStatus.py +7 -7
  72. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetUnusedMemory.py +6 -6
  73. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/Ping.py +6 -6
  74. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/ReadMemory.py +7 -7
  75. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/ReadRules.py +7 -7
  76. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/Reset.py +6 -6
  77. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/ResetOneWireManager.py +25 -0
  78. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetConfiguration.py +10 -10
  79. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetDebugOptions.py +9 -9
  80. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetRuleState.py +7 -7
  81. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetSunTimes.py +9 -9
  82. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetSystemVariable.py +9 -9
  83. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetTime.py +9 -9
  84. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetUnitGroupState.py +7 -7
  85. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/TriggerRuleElement.py +7 -7
  86. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/WriteMemory.py +7 -7
  87. pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/WriteRules.py +7 -7
  88. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/Configuration.py +10 -10
  89. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvConsole.py +7 -7
  90. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvDay.py +6 -6
  91. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvError.py +9 -9
  92. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvGroupOff.py +7 -7
  93. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvGroupOn.py +7 -7
  94. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvGroupUndefined.py +7 -7
  95. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvNewDeviceId.py +7 -7
  96. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvNight.py +6 -6
  97. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvResetWifi.py +6 -6
  98. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvStarted.py +9 -9
  99. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvSystemVariableChanged.py +9 -9
  100. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvTime.py +9 -9
  101. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvZeroCrossData.py +23 -9
  102. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/MemoryData.py +7 -7
  103. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/MemoryStatus.py +9 -9
  104. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/ModuleId.py +9 -9
  105. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/Pong.py +6 -6
  106. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/RemoteObjects.py +7 -7
  107. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/RuleState.py +7 -7
  108. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/RulesData.py +7 -7
  109. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/SystemVariable.py +9 -9
  110. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/Time.py +9 -9
  111. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/TimeDifference.py +7 -7
  112. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/TriggeredRule.py +7 -7
  113. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/UnitGroupStatus.py +7 -7
  114. pyhausbus/de/hausbus/homeassistant/proxy/controller/data/UnusedMemory.py +7 -7
  115. pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EErrorCode.py +17 -4
  116. pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EFeatureId.py +13 -4
  117. pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EFirmwareId.py +15 -6
  118. pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EIndex.py +12 -4
  119. pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EReason.py +12 -4
  120. pyhausbus/de/hausbus/homeassistant/proxy/controller/params/ESlotType.py +12 -4
  121. pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EStatus.py +12 -4
  122. pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EType.py +12 -4
  123. pyhausbus/de/hausbus/homeassistant/proxy/controller/params/MLogicalButtonMask.py +61 -61
  124. pyhausbus/de/hausbus/homeassistant/proxy/controller/params/MOption.py +61 -61
  125. pyhausbus/de/hausbus/homeassistant/proxy/counter/commands/GetConfiguration.py +6 -6
  126. pyhausbus/de/hausbus/homeassistant/proxy/counter/commands/GetStatus.py +6 -6
  127. pyhausbus/de/hausbus/homeassistant/proxy/counter/commands/SetConfiguration.py +9 -9
  128. pyhausbus/de/hausbus/homeassistant/proxy/counter/commands/SetCount.py +7 -7
  129. pyhausbus/de/hausbus/homeassistant/proxy/counter/data/Configuration.py +9 -9
  130. pyhausbus/de/hausbus/homeassistant/proxy/counter/data/EvError.py +9 -9
  131. pyhausbus/de/hausbus/homeassistant/proxy/counter/data/EvStatus.py +7 -7
  132. pyhausbus/de/hausbus/homeassistant/proxy/counter/data/Status.py +7 -7
  133. pyhausbus/de/hausbus/homeassistant/proxy/counter/params/EErrorCode.py +13 -4
  134. pyhausbus/de/hausbus/homeassistant/proxy/counter/params/MMode.py +61 -61
  135. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/ClearSignalCount.py +6 -6
  136. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/DecSignalCount.py +6 -6
  137. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/GetConfiguration.py +6 -6
  138. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/GetCurrent.py +6 -6
  139. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/GetPower.py +6 -6
  140. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/GetSignalCount.py +6 -6
  141. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/IncSignalCount.py +6 -6
  142. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/SetConfiguration.py +9 -9
  143. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/SetSignalCount.py +7 -7
  144. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/Configuration.py +9 -9
  145. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/Current.py +7 -7
  146. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvCurrent.py +7 -7
  147. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvDebug.py +9 -9
  148. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvError.py +26 -0
  149. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvInterrupt.py +7 -7
  150. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvSignal.py +7 -7
  151. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/Power.py +7 -7
  152. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/SignalCount.py +7 -7
  153. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/params/EErrorCode.py +27 -0
  154. pyhausbus/de/hausbus/homeassistant/proxy/currentReader/params/MConfig.py +13 -13
  155. pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/AllOff.py +6 -6
  156. pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/AllOn.py +6 -6
  157. pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/GetConfiguration.py +7 -7
  158. pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/SendCommand.py +7 -7
  159. pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/SetConfiguration.py +7 -7
  160. pyhausbus/de/hausbus/homeassistant/proxy/daliLine/data/Configuration.py +7 -7
  161. pyhausbus/de/hausbus/homeassistant/proxy/daliLine/data/EvError.py +9 -9
  162. pyhausbus/de/hausbus/homeassistant/proxy/daliLine/data/Status.py +7 -7
  163. pyhausbus/de/hausbus/homeassistant/proxy/daliLine/params/EErrorCode.py +12 -4
  164. pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/commands/GetConfiguration.py +6 -6
  165. pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/commands/SetConfiguration.py +11 -11
  166. pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/data/Configuration.py +28 -28
  167. pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/data/EvError.py +9 -9
  168. pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/params/EErrorCode.py +13 -4
  169. pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/params/EPin.py +13 -4
  170. pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/GetConfiguration.py +6 -6
  171. pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/GetStatus.py +6 -6
  172. pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/SetBrightness.py +7 -7
  173. pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/SetConfiguration.py +9 -9
  174. pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/Start.py +9 -9
  175. pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/Stop.py +6 -6
  176. pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/Configuration.py +9 -9
  177. pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/EvError.py +9 -9
  178. pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/EvOff.py +6 -6
  179. pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/EvOn.py +7 -7
  180. pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/EvStart.py +9 -9
  181. pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/Status.py +7 -7
  182. pyhausbus/de/hausbus/homeassistant/proxy/dimmer/params/EDirection.py +12 -4
  183. pyhausbus/de/hausbus/homeassistant/proxy/dimmer/params/EErrorCode.py +14 -4
  184. pyhausbus/de/hausbus/homeassistant/proxy/dimmer/params/EMode.py +12 -4
  185. pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/_init_.py +1 -0
  186. pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/commands/GetConfiguration.py +15 -0
  187. pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/commands/GetStatus.py +15 -0
  188. pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/commands/SetConfiguration.py +74 -0
  189. pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/commands/_init_.py +1 -0
  190. pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/Configuration.py +74 -0
  191. pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/EvHigh.py +15 -0
  192. pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/EvInRange.py +15 -0
  193. pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/EvLow.py +15 -0
  194. pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/EvStatus.py +33 -0
  195. pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/Status.py +33 -0
  196. pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/_init_.py +1 -0
  197. pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/params/ELastEvent.py +28 -0
  198. pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/params/_init_.py +1 -0
  199. pyhausbus/de/hausbus/homeassistant/proxy/ethernet/commands/GetConfiguration.py +6 -6
  200. pyhausbus/de/hausbus/homeassistant/proxy/ethernet/commands/GetCurrentIp.py +6 -6
  201. pyhausbus/de/hausbus/homeassistant/proxy/ethernet/commands/SetConfiguration.py +10 -10
  202. pyhausbus/de/hausbus/homeassistant/proxy/ethernet/commands/WakeUpDevice.py +7 -7
  203. pyhausbus/de/hausbus/homeassistant/proxy/ethernet/data/Configuration.py +10 -10
  204. pyhausbus/de/hausbus/homeassistant/proxy/ethernet/data/CurrentIp.py +7 -7
  205. pyhausbus/de/hausbus/homeassistant/proxy/ethernet/data/EvError.py +9 -9
  206. pyhausbus/de/hausbus/homeassistant/proxy/ethernet/params/EErrorCode.py +13 -4
  207. pyhausbus/de/hausbus/homeassistant/proxy/ethernet/params/MOptions.py +61 -61
  208. pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/commands/GetConfiguration.py +6 -6
  209. pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/commands/GetStatus.py +6 -6
  210. pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/commands/SetConfiguration.py +7 -7
  211. pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/Configuration.py +7 -7
  212. pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvConfortable.py +6 -6
  213. pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvDry.py +6 -6
  214. pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvError.py +9 -9
  215. pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvStatus.py +9 -9
  216. pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvWet.py +6 -6
  217. pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/Status.py +9 -9
  218. pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/params/EErrorCode.py +14 -4
  219. pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/params/ELastEvent.py +12 -4
  220. pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/GetConfiguration.py +6 -6
  221. pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/GetConnectedDevices.py +6 -6
  222. pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/{GetBusTiming.py → GetMinIdleTime.py} +8 -8
  223. pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/SetConfiguration.py +10 -10
  224. pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/SetMinIdleTime.py +25 -0
  225. pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/SetPreferLoxone.py +26 -0
  226. pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/Configuration.py +10 -10
  227. pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/ConnectedDevices.py +7 -7
  228. pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/EvError.py +9 -9
  229. pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/EvGatewayLoad.py +38 -17
  230. pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/MinIdleTime.py +25 -0
  231. pyhausbus/de/hausbus/homeassistant/proxy/gateway/params/EErrorCode.py +14 -4
  232. pyhausbus/de/hausbus/homeassistant/proxy/gateway/params/EValue.py +27 -0
  233. pyhausbus/de/hausbus/homeassistant/proxy/gateway/params/MOptions.py +65 -65
  234. pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/commands/GetConfiguration.py +6 -6
  235. pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/commands/GetStatus.py +6 -6
  236. pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/commands/SetConfiguration.py +7 -7
  237. pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/Configuration.py +7 -7
  238. pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvBright.py +6 -6
  239. pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvDark.py +6 -6
  240. pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvError.py +9 -9
  241. pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvLight.py +6 -6
  242. pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvStatus.py +9 -9
  243. pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/Status.py +9 -9
  244. pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/params/EErrorCode.py +14 -4
  245. pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/params/ELastEvent.py +12 -4
  246. pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/commands/Off.py +6 -6
  247. pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/commands/On.py +6 -6
  248. pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvClicked.py +7 -7
  249. pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvHoldEnd.py +7 -7
  250. pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvHoldStart.py +7 -7
  251. pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvOff.py +6 -6
  252. pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvOn.py +6 -6
  253. pyhausbus/de/hausbus/homeassistant/proxy/led/commands/Blink.py +7 -7
  254. pyhausbus/de/hausbus/homeassistant/proxy/led/commands/GetConfiguration.py +6 -6
  255. pyhausbus/de/hausbus/homeassistant/proxy/led/commands/GetMinBrightness.py +6 -6
  256. pyhausbus/de/hausbus/homeassistant/proxy/led/commands/GetStatus.py +6 -6
  257. pyhausbus/de/hausbus/homeassistant/proxy/led/commands/Off.py +7 -7
  258. pyhausbus/de/hausbus/homeassistant/proxy/led/commands/On.py +7 -7
  259. pyhausbus/de/hausbus/homeassistant/proxy/led/commands/SetConfiguration.py +9 -9
  260. pyhausbus/de/hausbus/homeassistant/proxy/led/commands/SetMinBrightness.py +7 -7
  261. pyhausbus/de/hausbus/homeassistant/proxy/led/data/Configuration.py +10 -10
  262. pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvBlink.py +6 -6
  263. pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvCmdDelay.py +7 -7
  264. pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvError.py +10 -9
  265. pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvOff.py +6 -6
  266. pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvOn.py +7 -7
  267. pyhausbus/de/hausbus/homeassistant/proxy/led/data/MinBrightness.py +7 -7
  268. pyhausbus/de/hausbus/homeassistant/proxy/led/data/Status.py +7 -7
  269. pyhausbus/de/hausbus/homeassistant/proxy/led/params/EErrorCode.py +26 -0
  270. pyhausbus/de/hausbus/homeassistant/proxy/led/params/MOptions.py +61 -61
  271. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/Blink.py +7 -7
  272. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/GetConfiguration.py +6 -6
  273. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/GetMinBrightness.py +6 -6
  274. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/GetStatus.py +6 -6
  275. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/Off.py +7 -7
  276. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/On.py +7 -7
  277. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/SetButtonConfiguration.py +10 -10
  278. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/SetConfiguration.py +7 -7
  279. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/SetLedConfiguration.py +9 -9
  280. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/SetMinBrightness.py +7 -7
  281. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/Configuration.py +7 -7
  282. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/EvBlink.py +6 -6
  283. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/EvError.py +9 -9
  284. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/EvOff.py +6 -6
  285. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/EvOn.py +7 -7
  286. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/Status.py +9 -9
  287. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/EErrorCode.py +14 -4
  288. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/EStatus.py +12 -4
  289. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/MEventMask.py +65 -65
  290. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/MOptionMask.py +61 -61
  291. pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/MOptions.py +61 -61
  292. pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/commands/GetConfiguration.py +7 -7
  293. pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/commands/SetConfiguration.py +9 -9
  294. pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/data/Configuration.py +9 -9
  295. pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/params/ESensorType.py +12 -4
  296. pyhausbus/de/hausbus/homeassistant/proxy/pCA9555/_init_.py +1 -0
  297. pyhausbus/de/hausbus/homeassistant/proxy/pCA9555/data/EvError.py +26 -0
  298. pyhausbus/de/hausbus/homeassistant/proxy/pCA9555/data/_init_.py +1 -0
  299. pyhausbus/de/hausbus/homeassistant/proxy/pCA9555/params/EErrorCode.py +28 -0
  300. pyhausbus/de/hausbus/homeassistant/proxy/pCA9555/params/_init_.py +1 -0
  301. pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Exec.py +7 -7
  302. pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Quit.py +6 -6
  303. pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/ReloadUserPlugin.py +6 -6
  304. pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Restart.py +6 -6
  305. pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/SetVariable.py +7 -7
  306. pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Shutdown.py +6 -6
  307. pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Standby.py +6 -6
  308. pyhausbus/de/hausbus/homeassistant/proxy/pCServer/data/EvOffline.py +6 -6
  309. pyhausbus/de/hausbus/homeassistant/proxy/pCServer/data/EvOnline.py +6 -6
  310. pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands/Enable.py +9 -9
  311. pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands/GetConfiguration.py +6 -6
  312. pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands/SetConfiguration.py +18 -10
  313. pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands/SetTargetValue.py +7 -7
  314. pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data/Configuration.py +18 -10
  315. pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data/EvError.py +9 -9
  316. pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data/EvOff.py +6 -6
  317. pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data/EvOn.py +6 -6
  318. pyhausbus/de/hausbus/homeassistant/proxy/pIDController/params/EEnable.py +12 -4
  319. pyhausbus/de/hausbus/homeassistant/proxy/pIDController/params/EErrorCode.py +15 -4
  320. pyhausbus/de/hausbus/homeassistant/proxy/pIDController/params/MOptions.py +96 -0
  321. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/_init_.py +1 -0
  322. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/commands/GetConfiguration.py +15 -0
  323. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/commands/GetStatus.py +15 -0
  324. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/commands/SetConfiguration.py +74 -0
  325. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/commands/_init_.py +1 -0
  326. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/Configuration.py +74 -0
  327. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/EvError.py +26 -0
  328. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/EvHigh.py +15 -0
  329. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/EvInRange.py +15 -0
  330. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/EvLow.py +15 -0
  331. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/EvStatus.py +33 -0
  332. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/Status.py +33 -0
  333. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/_init_.py +1 -0
  334. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/params/EErrorCode.py +40 -0
  335. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/params/ELastEvent.py +28 -0
  336. pyhausbus/de/hausbus/homeassistant/proxy/pT1000/params/_init_.py +1 -0
  337. pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/commands/GetConfiguration.py +6 -6
  338. pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/commands/GetStatus.py +6 -6
  339. pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/commands/SetConfiguration.py +7 -7
  340. pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/Configuration.py +7 -7
  341. pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvError.py +9 -9
  342. pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvHighPower.py +6 -6
  343. pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvLowPower.py +6 -6
  344. pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvMediumPower.py +6 -6
  345. pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvStatus.py +9 -9
  346. pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/Status.py +9 -9
  347. pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/params/EErrorCode.py +14 -4
  348. pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/params/ELastEvent.py +12 -4
  349. pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/commands/GetConfiguration.py +6 -6
  350. pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/commands/GetLastData.py +6 -6
  351. pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/commands/GetState.py +6 -6
  352. pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/commands/SetConfiguration.py +6 -6
  353. pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/Configuration.py +6 -6
  354. pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/EvConnected.py +6 -6
  355. pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/EvData.py +7 -7
  356. pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/EvError.py +9 -9
  357. pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/LastData.py +7 -7
  358. pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/State.py +9 -9
  359. pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/params/EErrorCode.py +13 -4
  360. pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/params/EState.py +12 -4
  361. pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/commands/GetConfiguration.py +6 -6
  362. pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/commands/GetStatus.py +6 -6
  363. pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/commands/SetColor.py +7 -7
  364. pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/commands/SetConfiguration.py +7 -7
  365. pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/data/Configuration.py +7 -7
  366. pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/data/EvOff.py +6 -6
  367. pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/data/EvOn.py +7 -7
  368. pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/data/Status.py +7 -7
  369. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/GetConfiguration.py +6 -6
  370. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/GetStatus.py +6 -6
  371. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/MoveToPosition.py +7 -7
  372. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/SetConfiguration.py +9 -9
  373. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/SetPosition.py +7 -7
  374. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/Start.py +9 -9
  375. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/Stop.py +6 -6
  376. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/Configuration.py +9 -9
  377. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvClosed.py +7 -7
  378. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvError.py +9 -9
  379. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvNewMainState.py +9 -9
  380. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvNewSubState.py +9 -9
  381. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvOpen.py +6 -6
  382. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvStart.py +9 -9
  383. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/Status.py +7 -7
  384. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/params/EDirection.py +12 -4
  385. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/params/EErrorCode.py +14 -4
  386. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/params/ENewState.py +12 -4
  387. pyhausbus/de/hausbus/homeassistant/proxy/rollladen/params/MOptions.py +65 -65
  388. pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/GetConfiguration.py +6 -6
  389. pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/GetStatus.py +6 -6
  390. pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/Off.py +7 -7
  391. pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/On.py +7 -7
  392. pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/SetConfiguration.py +9 -9
  393. pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/Toggle.py +7 -7
  394. pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/ToggleByDuty.py +32 -0
  395. pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/Configuration.py +9 -9
  396. pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvCmdDelay.py +7 -7
  397. pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvDisabled.py +6 -6
  398. pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvError.py +9 -9
  399. pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvOff.py +6 -6
  400. pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvOn.py +7 -7
  401. pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvToggle.py +31 -7
  402. pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/Status.py +26 -12
  403. pyhausbus/de/hausbus/homeassistant/proxy/schalter/params/EErrorCode.py +14 -4
  404. pyhausbus/de/hausbus/homeassistant/proxy/schalter/params/EState.py +12 -4
  405. pyhausbus/de/hausbus/homeassistant/proxy/schalter/params/MOptions.py +61 -61
  406. pyhausbus/de/hausbus/homeassistant/proxy/systemTime/commands/GetTime.py +6 -6
  407. pyhausbus/de/hausbus/homeassistant/proxy/systemTime/commands/SetTime.py +10 -10
  408. pyhausbus/de/hausbus/homeassistant/proxy/systemTime/data/EvError.py +9 -9
  409. pyhausbus/de/hausbus/homeassistant/proxy/systemTime/data/Time.py +7 -7
  410. pyhausbus/de/hausbus/homeassistant/proxy/systemTime/params/EDate.py +12 -4
  411. pyhausbus/de/hausbus/homeassistant/proxy/systemTime/params/EErrorCode.py +13 -4
  412. pyhausbus/de/hausbus/homeassistant/proxy/systemTime/params/EMonth.py +12 -4
  413. pyhausbus/de/hausbus/homeassistant/proxy/systemTime/params/EWeekDay.py +12 -4
  414. pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/EnableEvents.py +9 -9
  415. pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/GetConfiguration.py +6 -6
  416. pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/GetEnabled.py +6 -6
  417. pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/GetStatus.py +6 -6
  418. pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/SetConfiguration.py +10 -10
  419. pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/TriggerStatusEvent.py +15 -0
  420. pyhausbus/de/hausbus/homeassistant/proxy/taster/data/Configuration.py +10 -10
  421. pyhausbus/de/hausbus/homeassistant/proxy/taster/data/Enabled.py +7 -7
  422. pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvClicked.py +9 -9
  423. pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvCovered.py +9 -9
  424. pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvDoubleClick.py +9 -9
  425. pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvEnabled.py +7 -7
  426. pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvError.py +10 -9
  427. pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvFree.py +9 -9
  428. pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvHoldEnd.py +9 -9
  429. pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvHoldStart.py +9 -9
  430. pyhausbus/de/hausbus/homeassistant/proxy/taster/data/Status.py +9 -9
  431. pyhausbus/de/hausbus/homeassistant/proxy/taster/params/EEnable.py +12 -4
  432. pyhausbus/de/hausbus/homeassistant/proxy/taster/params/EErrorCode.py +27 -0
  433. pyhausbus/de/hausbus/homeassistant/proxy/taster/params/EState.py +12 -4
  434. pyhausbus/de/hausbus/homeassistant/proxy/taster/params/MEventMask.py +65 -65
  435. pyhausbus/de/hausbus/homeassistant/proxy/taster/params/MOptionMask.py +61 -61
  436. pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/commands/GetConfiguration.py +6 -6
  437. pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/commands/GetStatus.py +6 -6
  438. pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/commands/SetConfiguration.py +7 -7
  439. pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/Configuration.py +7 -7
  440. pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvAbove.py +6 -6
  441. pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvError.py +9 -9
  442. pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvInRange.py +6 -6
  443. pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvLow.py +6 -6
  444. pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvStatus.py +9 -9
  445. pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/Status.py +9 -9
  446. pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/params/EErrorCode.py +14 -4
  447. pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/params/ELastEvent.py +12 -4
  448. pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/commands/AnnounceServer.py +7 -7
  449. pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/commands/GetCurrentIp.py +6 -6
  450. pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/data/CurrentIp.py +7 -7
  451. pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/data/EvWhoIsServer.py +6 -6
  452. pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/commands/GetConfiguration.py +6 -6
  453. pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/commands/GetStatus.py +6 -6
  454. pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/commands/SetConfiguration.py +8 -8
  455. pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/Configuration.py +7 -7
  456. pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvCold.py +6 -6
  457. pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvError.py +9 -9
  458. pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvHot.py +6 -6
  459. pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvStatus.py +9 -9
  460. pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvWarm.py +6 -6
  461. pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/Status.py +9 -9
  462. pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/params/EErrorCode.py +14 -4
  463. pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/params/ELastEvent.py +12 -4
  464. pyhausbus/de/hausbus/homeassistant/proxy/wetter/commands/GetWeather.py +6 -6
  465. pyhausbus/de/hausbus/homeassistant/proxy/wetter/data/Weather.py +9 -9
  466. pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands/GetConfiguration.py +6 -6
  467. pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands/GetCurrentIp.py +6 -6
  468. pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands/SetConfiguration.py +8 -8
  469. pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands/WakeUpDevice.py +7 -7
  470. pyhausbus/de/hausbus/homeassistant/proxy/wiFi/data/Configuration.py +8 -8
  471. pyhausbus/de/hausbus/homeassistant/proxy/wiFi/data/CurrentIp.py +7 -7
  472. pyhausbus/de/hausbus/homeassistant/proxy/wiFi/data/EvError.py +9 -9
  473. pyhausbus/de/hausbus/homeassistant/proxy/wiFi/params/EErrorCode.py +14 -4
  474. pyhausbus/templates/AR8_30_8-fach-Relaismodul.tpl +18 -0
  475. pyhausbus/templates/ESP32C3_69_WLAN-Steckdose.tpl +5 -0
  476. pyhausbus/templates/ESP32_00_4-fach-0-10V-Dimmer.tpl +14 -0
  477. pyhausbus/templates/ESP32_01_4-fach-1-10V-Dimmer.tpl +10 -0
  478. pyhausbus/templates/ESP32_04_4-fach-Relaismodul.tpl +12 -0
  479. pyhausbus/templates/ESP32_08_8-fach-Relaismodul.tpl +18 -0
  480. pyhausbus/templates/ESP32_0A_12-fach-Relaismodul.tpl +22 -0
  481. pyhausbus/templates/ESP32_0C_16-fach-Relaismodul.tpl +26 -0
  482. pyhausbus/templates/ESP32_0D_8-fach-Motormodul.tpl +18 -0
  483. pyhausbus/templates/ESP32_10_22-fach-UP-IO.tpl +29 -0
  484. pyhausbus/templates/ESP32_18_6-fach-Taster.tpl +33 -0
  485. pyhausbus/templates/ESP32_19_4-fach-Taster.tpl +29 -0
  486. pyhausbus/templates/ESP32_1A_2-fach-Taster.tpl +25 -0
  487. pyhausbus/templates/ESP32_1B_1-fach-Taster.tpl +23 -0
  488. pyhausbus/templates/ESP32_1C_6-fach-Taster.tpl +29 -0
  489. pyhausbus/templates/ESP32_20_32-fach-IO.tpl +39 -0
  490. pyhausbus/templates/ESP32_28_8-fach-Dimmer.tpl +18 -0
  491. pyhausbus/templates/ESP32_30_2-fach-RGB-Dimmer.tpl +17 -0
  492. pyhausbus/templates/ESP32_31_2-fach-RGB-Dimmer.tpl +17 -0
  493. pyhausbus/templates/ESP32_65_LAN-RS485-Brueckenmodul.tpl +1 -0
  494. pyhausbus/templates/ESP32_99_LocalBroadcastDevice.tpl +1 -0
  495. pyhausbus/templates/FckmMapping.def +1 -0
  496. pyhausbus/templates/HBC_00_4-fach-0-10V-Dimmer.tpl +10 -0
  497. pyhausbus/templates/HBC_01_4-fach-1-10V-Dimmer.tpl +10 -0
  498. pyhausbus/templates/HBC_08_8-fach-Relaismodul.tpl +18 -0
  499. pyhausbus/templates/HBC_0C_16-fach-Relaismodul.tpl +26 -0
  500. pyhausbus/templates/HBC_10_24-fach-UP-IO.tpl +31 -0
  501. pyhausbus/templates/HBC_18_6-fach-Taster.tpl +34 -0
  502. pyhausbus/templates/HBC_19_4-fach-Taster.tpl +28 -0
  503. pyhausbus/templates/HBC_1A_2-fach-Taster.tpl +24 -0
  504. pyhausbus/templates/HBC_1B_1-fach-Taster.tpl +22 -0
  505. pyhausbus/templates/HBC_1C_6-fach-Taster.tpl +33 -0
  506. pyhausbus/templates/HBC_1D_4-fach-Taster.tpl +29 -0
  507. pyhausbus/templates/HBC_1E_2-fach-Taster.tpl +29 -0
  508. pyhausbus/templates/HBC_1F_1-fach-Taster.tpl +27 -0
  509. pyhausbus/templates/HBC_20_32-fach-IO.tpl +39 -0
  510. pyhausbus/templates/HBC_29_8-fach-Dimmer.tpl +18 -0
  511. pyhausbus/templates/HBC_30_2-fach-RGB-Dimmer.tpl +17 -0
  512. pyhausbus/templates/LoxoneHausBusMapping.txt +80 -0
  513. pyhausbus/templates/LoxoneModuleMapping.txt +11 -0
  514. pyhausbus/templates/SD485_1E_6-fach-Taster.tpl +30 -0
  515. pyhausbus/templates/SD485_28_24-fach-UP-IO.tpl +31 -0
  516. pyhausbus/templates/SD485_29_1-fach-Taster.tpl +24 -0
  517. pyhausbus/templates/SD485_2A_2-fach-Taster.tpl +26 -0
  518. pyhausbus/templates/SD485_2C_4-fach-Taster.tpl +26 -0
  519. pyhausbus/templates/SD485_2E_6-fach-Taster.tpl +30 -0
  520. pyhausbus/templates/SD485_2F_6-fach-Taster.tpl +30 -0
  521. pyhausbus/templates/SD6_14_Multitaster.tpl +26 -0
  522. pyhausbus/templates/SD6_1E_Multitaster.tpl +26 -0
  523. pyhausbus/templates/classMapping.def +9 -0
  524. pyhausbus/templates/deviceTypes.def +47 -0
  525. {pyhausbus-1.0.1.dist-info → pyhausbus-1.0.3.dist-info}/LICENSE +21 -21
  526. {pyhausbus-1.0.1.dist-info → pyhausbus-1.0.3.dist-info}/METADATA +2 -1
  527. pyhausbus-1.0.3.dist-info/RECORD +639 -0
  528. {pyhausbus-1.0.1.dist-info → pyhausbus-1.0.3.dist-info}/WHEEL +1 -1
  529. pyhausbus/HausBusDevice.py +0 -70
  530. pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/BusTiming.py +0 -25
  531. pyhausbus-1.0.1.dist-info/RECORD +0 -526
@@ -1,526 +0,0 @@
1
- pyhausbus/ABusFeature.py,sha256=CoXamHLNnuVt4KKOj8m7aGu60EAkapTwF7jXlOy6wdA,556
2
- pyhausbus/BusDataMessage.py,sha256=riHYPByCZbE2nm_Zi6Vtg0niDCMPw2j1QK4pgSdSfnU,613
3
- pyhausbus/BusHandler.py,sha256=eRDuZHUywIO5c419eC_QMNS-jk3kEUSyv6eTRH6VWD0,4013
4
- pyhausbus/HausBusCommand.py,sha256=q-0NH0exPdWWPoKeyi8rCEJsX6le7xRxUE4hOCerG1g,2386
5
- pyhausbus/HausBusDevice.py,sha256=NRzaV-TZQ7P31yzL3dlY3TsB7xHxwCYcKwwNg8fFo5w,2441
6
- pyhausbus/HausBusUtils.py,sha256=bPi2W-iIWIpXtRaSa_qxhZbYenRuodD0-w0rUmAo9AY,4909
7
- pyhausbus/HomeServer.py,sha256=5V9GWY-dWL7DFwFMg3peK_h2mcEEX2gjcDX7g75FDGA,2801
8
- pyhausbus/IBusDataListener.py,sha256=2iakwRz-dg-wPVutAYeCm0cFykSl9bkTlxAU79GyycU,145
9
- pyhausbus/Main.py,sha256=tlYdZPiqodVioDHraxPype04r8McZFBMCSDMM4_6b1k,4333
10
- pyhausbus/ObjectId.py,sha256=32TfmGV3OyVaxq5hUqNJSqsGrq0vFOBkVt9TGWsZ75k,635
11
- pyhausbus/ResultWorker.py,sha256=-marmuD_j8t9FdumCVCcWosR6d1AQF7GD4j9EJA64yg,1714
12
- pyhausbus/UdpReceiveWorker.py,sha256=U0-2-QuBTxVmjC5PQu2Ofdmz-bqqgACKbtt9Xl1-5H8,2605
13
- pyhausbus/WeekTime.py,sha256=2dZ7r8CIYt1bbzYct7qdT-m6SP5HIG8QFo38Pje3Mgw,1232
14
- pyhausbus/de/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
15
- pyhausbus/de/hausbus/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
16
- pyhausbus/de/hausbus/homeassistant/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
17
- pyhausbus/de/hausbus/homeassistant/proxy/Controller.py,sha256=KLFSiDfwBApIFvSZxk2eOvKtkwGsHZnyWHC7oB6taO8,30700
18
- pyhausbus/de/hausbus/homeassistant/proxy/Counter.py,sha256=QnK7u__OumGbmB3YYULtTx5dFe69bkX8HPkEKLufPKY,4722
19
- pyhausbus/de/hausbus/homeassistant/proxy/CurrentReader.py,sha256=fAskSoitevKM8UhphMgEpdHJM7hbtAwWS1-XUFrCE8Y,7859
20
- pyhausbus/de/hausbus/homeassistant/proxy/DaliLine.py,sha256=B2mMf68Tacg8Fg-7UhiH-tIZfgHCrAmNnQEk42aELGE,4378
21
- pyhausbus/de/hausbus/homeassistant/proxy/DigitalPort.py,sha256=VPppM_oLrcFbmvKf6xwRGw_vezzVV5WIAc9dO4Gp89s,3187
22
- pyhausbus/de/hausbus/homeassistant/proxy/Dimmer.py,sha256=JTAySBfvbo2YctCK1r4vBqiWrlComLHnx63kaHP_fCw,6770
23
- pyhausbus/de/hausbus/homeassistant/proxy/Ethernet.py,sha256=cvOegubQwJgqrtPVKqjmd3cGVGHaXKVYBo_N7DYX9zY,6288
24
- pyhausbus/de/hausbus/homeassistant/proxy/Feuchtesensor.py,sha256=BortkLmtlOdJF-SMpYBbsAgFKANZNjHqVq8PdOKrDjg,7628
25
- pyhausbus/de/hausbus/homeassistant/proxy/Gateway.py,sha256=st5w9K2k_aEtNy-n13slFr8TKdBmPSy4vqbBBb9OjB8,4841
26
- pyhausbus/de/hausbus/homeassistant/proxy/Helligkeitssensor.py,sha256=-HKgOvueu2cdgNqUfKmo1xuPFhtPiiwFGXDozuM_85E,6365
27
- pyhausbus/de/hausbus/homeassistant/proxy/IRSensor.py,sha256=RZyQIjr5cyQIOCObb59eMBDWF6NJtKLSw73j0U0OSM0,2682
28
- pyhausbus/de/hausbus/homeassistant/proxy/Led.py,sha256=jcy_XlczYAJo3WuJr4mzs9x7jKHBcm9QAily89bgSTk,8363
29
- pyhausbus/de/hausbus/homeassistant/proxy/LogicalButton.py,sha256=niHCnUEcWpl7U2Rb9ArSky5aaD7ki0mgVyjyE3Acqyw,10648
30
- pyhausbus/de/hausbus/homeassistant/proxy/ModBusMaster.py,sha256=UziCnA3LG2NpXnp68nYvj-w6bEdzvak3LUO6pAXDvtw,2304
31
- pyhausbus/de/hausbus/homeassistant/proxy/ModbusSlave.py,sha256=mefjz9_truLPLxbY0h16JTBMHzoG99Z4AGbLlmtSZCo,483
32
- pyhausbus/de/hausbus/homeassistant/proxy/PCServer.py,sha256=ux0hvGOnbV66ygZZejb3vxkg1oUBeUK3RasNQhAKB0g,2856
33
- pyhausbus/de/hausbus/homeassistant/proxy/PIDController.py,sha256=hV7ZkbdIt0OaF0IuijBD3GBXzJxtiypSqnU_yg4cHsc,5218
34
- pyhausbus/de/hausbus/homeassistant/proxy/PowerMeter.py,sha256=CezWm4fQW8MWRlK9pFB96emJyoouHdXKpKpsOa23EqA,7496
35
- pyhausbus/de/hausbus/homeassistant/proxy/ProxyFactory.py,sha256=X5GaMmegWEV-oRJtizsTI0H71r_YBlp-I9DVHYJCwK8,40062
36
- pyhausbus/de/hausbus/homeassistant/proxy/RFIDReader.py,sha256=kIx6Gov0OXB_jjF7Ejl2qNtPlte9GKnamliP94Lea9E,3795
37
- pyhausbus/de/hausbus/homeassistant/proxy/RGBDimmer.py,sha256=nJAzLkozUrDwlXP5orxHM0egtKfyKZeKMKwtMXxt_QA,4797
38
- pyhausbus/de/hausbus/homeassistant/proxy/Rollladen.py,sha256=h8aregS_ONZk7VVr37k4lHiCNC_y4lZfaOMeM0oNC_0,7146
39
- pyhausbus/de/hausbus/homeassistant/proxy/Schalter.py,sha256=F5YcToMBMmYUZSF33sXlfH0KCDCxIxVEr1mmqNRVNP0,7285
40
- pyhausbus/de/hausbus/homeassistant/proxy/SnmpAgent.py,sha256=_0AhUBlEKhP5n98dtvWpRpJQ-iHIMsC932bEzKrvHgQ,481
41
- pyhausbus/de/hausbus/homeassistant/proxy/SystemTime.py,sha256=hc1T-LN6RRregayJ_NzhnPoUjEI7UMuyb0hUnfkaIxI,3124
42
- pyhausbus/de/hausbus/homeassistant/proxy/Taster.py,sha256=kR1t0b4B0MXUJfD8hhfDeO92Arvn62zaFeCsC4g4Hlw,8130
43
- pyhausbus/de/hausbus/homeassistant/proxy/Taupunkt.py,sha256=6xoUD-gzcUSmiksay6uuK6f_KPe9HIAD0SZkIALQO38,7433
44
- pyhausbus/de/hausbus/homeassistant/proxy/TcpClient.py,sha256=Z17XtSxB0UDISImea8RhFJdV-bHrqP1jlU4XCeEOZTo,2191
45
- pyhausbus/de/hausbus/homeassistant/proxy/Temperatursensor.py,sha256=eOfskQZn0LfcA3YTACBASoOcYbNWiUUXieEC_lgHhcc,7448
46
- pyhausbus/de/hausbus/homeassistant/proxy/Wetter.py,sha256=h2xq1QaWezkQTW_rP4yehDGVPWiXVCtUttOfVAiaNBg,1646
47
- pyhausbus/de/hausbus/homeassistant/proxy/WiFi.py,sha256=-bluBNVZcCvLIDRU9VIViiyY9ep6qgOwG-DOpHql6jQ,5585
48
- pyhausbus/de/hausbus/homeassistant/proxy/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
49
- pyhausbus/de/hausbus/homeassistant/proxy/controller/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
50
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/EnableFeature.py,sha256=qG3kbrcYZwYdczB3c9lWPH1thlq2tJlEIaBdx9Kv05k,793
51
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GenerateRandomDeviceId.py,sha256=LxwPvInpuYOL7DMZ0SsEXsq4RTWg3WpsFxYkrd0XOPI,271
52
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetConfiguration.py,sha256=6mtqyqEMR4yrqzKuyfhfrnB7x8rtleV7i4gjo2InsVw,253
53
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetModuleId.py,sha256=oguvVG0Sla8779d3t0TQNmapfGQTWuFXMjhgX96DWqs,506
54
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetRemoteObjects.py,sha256=tN0CdyQf48nPgFmJvT-D7JeHuBuFvTW8EsdBRI9QD4M,253
55
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetRuleState.py,sha256=5s-S6ddr4lal3tSIf2fPyUE2WxEAC3ZJJD8pH16z72c,485
56
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetSystemVariable.py,sha256=5tV4Tl8l4MsnHHwsDUWM8nldG0sAj52t0Qhqi5hZ9JQ,750
57
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetTime.py,sha256=cMZqmPOprS-tt92pH78t2BTbQ9sI1Pbk62kGneyI2uE,228
58
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetUnitGroupStatus.py,sha256=Tdaj_q56QebWdhqBRhotv1uL5dPt_p6SppaIAHDiNcI,493
59
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetUnusedMemory.py,sha256=PZUJvudZQRgPTBjsSIPcHy_uadWGz-Z8i59AfnfnvRg,250
60
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/Ping.py,sha256=EJmR953IkdBNh1GrlEzn9BbnMHkOzFz_XmY-qADfEkI,219
61
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/ReadMemory.py,sha256=OpJZcdWCcYsE7tWuOJ9ckXEuMy06h8hn1-zlhxvq19Y,615
62
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/ReadRules.py,sha256=R8_llgWvvQRbCf3vREHocZkBO2D6Eyra7ZRbh76GAag,641
63
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/Reset.py,sha256=FtzEQmryk1iXHVhCYrHhAcRzYNQaAYnpz32KPxh06iM,220
64
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetConfiguration.py,sha256=9xKttVf8WrsogdaHhSrZvgFTVywJz-_jcVCViaatZb4,3191
65
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetDebugOptions.py,sha256=YrhRsWD0RGRA1ECKlEz2odNoa6o2ZujKXkGW9OMftGU,942
66
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetRuleState.py,sha256=QEVk8zUyMcLMEUBrryXiJWN2qQzehU3NDAfL49Vi8Sc,708
67
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetSunTimes.py,sha256=1TQRzE_uj_62Y5PPDsewCCJjI_eSojrtuenUNIXGfuE,780
68
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetSystemVariable.py,sha256=JIUBPpcsHXuHaq8vZhMlJLTsIV7P3OGxI-ILIb1cse0,965
69
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetTime.py,sha256=peiHVeXcll1QpxW0SA_i3BeD8HHtk0_rbMIy9AWVm4c,479
70
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetUnitGroupState.py,sha256=nMeJc0rrG6HJix-whFg45qlXcWmdGpxkyED-gr9MfyU,1138
71
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/TriggerRuleElement.py,sha256=8RSJCtTfAPrvw2yQ-5hPDdrDfhxjKWR0YICfz1c2sTs,839
72
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/WriteMemory.py,sha256=HdbSLxiceVSYqDl_dbx7DFRJKQ6FpLALDe-P-u1UpjA,608
73
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/WriteRules.py,sha256=2aE_j43z124mP3u3MsOs53CriIxeTU5QUFdhYt_L3ls,632
74
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
75
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/Configuration.py,sha256=nKsaTvkkzJYOwfxCCM59RXbs3e--napQrB5XQz4dJws,4147
76
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvConsole.py,sha256=xgMvpuWy0W2y8FrDIBAdZCSYv2vT-ZZ9_0U6suuRVV8,541
77
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvDay.py,sha256=ktnDXvXmkEN_cqaMv9z5ERGUvatEZNWprsjkszBqH0Y,222
78
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvError.py,sha256=gHyYNT-7xWxAjQY9y_tL1qJRCkPG9NmOQWZl27tDNxc,544
79
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvGroupOff.py,sha256=C1MrZpcoxcND_EEvj-xmKuyPMEVlMsiPU1G6hTBbycY,651
80
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvGroupOn.py,sha256=QoK8f9jSQf-3XmMSbqtAneN3_sUlWkTsxUGeKriDp7U,648
81
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvGroupUndefined.py,sha256=T4Q3_lcyWDt2C1KPgEhrNuq8bRRr5WlOLPnnKdEOVhI,669
82
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvNewDeviceId.py,sha256=rT8ZI1snjIyhu8tqtVPEkMqv0ng8MhDogCRmEg9_ElI,464
83
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvNight.py,sha256=2rDi3wY6xIXE_IbiKGMH6ZIWZYvYdAbpayxZg0TLNc8,228
84
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvResetWifi.py,sha256=He0Ry0QKo0rPvo35AD7zrXin-8jEXxOpU4dtzyNpLTg,240
85
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvStarted.py,sha256=lLHL2hMxYDcOaqPDFxjIOMjK8iyezXQANCF0i6Nn8nQ,537
86
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvSystemVariableChanged.py,sha256=Ap06iQXQQmRs_o61bh1IEK-ylasOzpXETsqaBv_XxQI,985
87
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvTime.py,sha256=VC7BjeTLt9CrM21V9e1WHgSp5W0evr5Lr9G4-KYZe7E,476
88
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvZeroCrossData.py,sha256=TwqjQxEWRGyAPba-_56oq2sDVA8zv5dCfphgaArs6mU,6959
89
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/MemoryData.py,sha256=vwSRKynmbM18Mk_pZooX4jLG_m3XBWBAGkxf_fTNaxg,654
90
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/MemoryStatus.py,sha256=W0QGBCk7wmQr_6G8BlU6W_MX6C0PSMpQjWqRjGpWQJg,794
91
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/ModuleId.py,sha256=1pW2tgV9LknO9tg6g90OJw_YOPXN_D_v4UPpePMGKOc,1442
92
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/Pong.py,sha256=ayeT_gaXWuUVswIxRLrFDzB6GiizoLqpmEqMayUxIuU,219
93
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/RemoteObjects.py,sha256=v7DYAMT7dJ-L-oy8AU4a1PUbXos4sz7gf9u6M9HC2lA,515
94
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/RuleState.py,sha256=FAv2tJgPvthWhWyhGyH9RJlvGNidSjFtq02kbTSyOE8,626
95
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/RulesData.py,sha256=xB6IRTigoF5uA2zWKpcE7wd_7nqCIx85uIuWPujaJw0,621
96
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/SystemVariable.py,sha256=e4K-WFtf59RXVNoJJVsXvD6aOWonp3vOozmSTlzvObQ,936
97
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/Time.py,sha256=sUYC5aP6ENlUXeJnMiYen_7iaXV8TNGdGKbnChj0MLI,470
98
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/TimeDifference.py,sha256=y05xHCvm-NYxkgc0sUQTGYUILZSqeHzC2X0sS_mM0IY,606
99
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/TriggeredRule.py,sha256=g1KffLyMIqI-1Q_vAMwp-zVy0Ung3PbYqIVfylF3ZmM,687
100
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/UnitGroupStatus.py,sha256=mtTx5L6Ghe_EgFtU_ziuQhJJC6JE0SmrPk4mo4lMP2U,701
101
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/UnusedMemory.py,sha256=MvuQkI9lJ0BS444EHNdTS4tVWpUxZ6eDO2-7nBlRbNg,726
102
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
103
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EErrorCode.py,sha256=hK42yH0FjRBdw2fEP5cZ3pih09eVxfl7jhTX2muEC-g,719
104
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EFeatureId.py,sha256=d6PD13A9CuTdwQYHfC_qxhOpycI09h4e5eHt7A0Ad5c,403
105
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EFirmwareId.py,sha256=mP1NVS04lbOpPhy_CFDaTNzHjnV_riSPnyxUueyo-lw,580
106
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EIndex.py,sha256=lVZiSiFklPVL3uVOpeY24Z4cAJOP5HYG9j0lbQgGpGk,379
107
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EReason.py,sha256=D1jErRIGyo5qyb76uoHuK1VpPsOs9WSSKxjosWwfri8,444
108
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/ESlotType.py,sha256=S59j_ECWFz4J2KV_m6s-6I3_cWAwVYevY5ovxmbJIBM,479
109
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EStatus.py,sha256=rwZecF2rKoWTi6LWFDL8LTRZuhHL8igWGl3nfYmupeI,441
110
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EType.py,sha256=u0eM-hmdjdSSeZef2WuVqk0fNoUvTMRU1U83wu10HWI,376
111
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/MLogicalButtonMask.py,sha256=5m5jz7TqlV4R6ODMP4jFZJG4jPcqZ8vH5nerMcV_ads,3325
112
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/MOption.py,sha256=heDa1oanU-p_Fvsy_X30IbVQa6pc6SywuuCCIL6tuHg,3460
113
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
114
- pyhausbus/de/hausbus/homeassistant/proxy/counter/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
115
- pyhausbus/de/hausbus/homeassistant/proxy/counter/commands/GetConfiguration.py,sha256=pHLKUBMOTvBXWILBsAHYEVjcRKh7qlu_8aaOnfwh9hA,254
116
- pyhausbus/de/hausbus/homeassistant/proxy/counter/commands/GetStatus.py,sha256=BudpFiCZdwhrq1m41kOukeBaDerPYAELGmtgJCt3gxU,233
117
- pyhausbus/de/hausbus/homeassistant/proxy/counter/commands/SetConfiguration.py,sha256=2kWK7LDoLQ4KIf9FMktsi_dQUI5vGkFD8zqeCuSwqBA,1322
118
- pyhausbus/de/hausbus/homeassistant/proxy/counter/commands/SetCount.py,sha256=1b5zR87kaWzYjGKjzMJCPFp-0l0H8n8GYU7pHfoHi1s,672
119
- pyhausbus/de/hausbus/homeassistant/proxy/counter/commands/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
120
- pyhausbus/de/hausbus/homeassistant/proxy/counter/data/Configuration.py,sha256=q4U0ldGQyUIgfa7rZ9gFsdSrDWj-zhaYC-9xkTs5Kj8,1315
121
- pyhausbus/de/hausbus/homeassistant/proxy/counter/data/EvError.py,sha256=YdICsZyMI-a1p2Mj4ga_6T_z0zk8X4G978KflWn4jUw,542
122
- pyhausbus/de/hausbus/homeassistant/proxy/counter/data/EvStatus.py,sha256=7npQEMedtYHPsboAcpgK38LdWn4H2EYHpnYrTaIX1kc,674
123
- pyhausbus/de/hausbus/homeassistant/proxy/counter/data/Status.py,sha256=ZTuMHnfevBD5TK3AaNsgZVsa4j94BrVOzzWJcRGqyvw,668
124
- pyhausbus/de/hausbus/homeassistant/proxy/counter/data/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
125
- pyhausbus/de/hausbus/homeassistant/proxy/counter/params/EErrorCode.py,sha256=xRZwPW05PoPT8RmH15XB3X9QMdD0tmro2mYXcCQkCc0,397
126
- pyhausbus/de/hausbus/homeassistant/proxy/counter/params/MMode.py,sha256=zt3nQGQ60BxmhsHQ9we0wAWGbMMs1n8W0WAmYrjNZz8,3027
127
- pyhausbus/de/hausbus/homeassistant/proxy/counter/params/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
128
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
129
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/ClearSignalCount.py,sha256=zbMorfDWJ6GOeXji4wt13p78_YwUF_vNX1_OSflc2s0,254
130
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/DecSignalCount.py,sha256=o7bKl1972x7I2ILsyttSEXeX85pkOb70Wnx3OLdV9W8,249
131
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/GetConfiguration.py,sha256=TBFcxs-0igbIMSFa1GZiIHUCxVvzcQJ1ZNLE4v7nogM,254
132
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/GetCurrent.py,sha256=5nLtC0zRhF34jQw07JlIjMtC4gC1pDKNIsamqApEFM0,236
133
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/GetPower.py,sha256=CVThgVL6Qrr1kKzGsvQjcN5nf4y3tt1RRwdFXnpLbPA,230
134
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/GetSignalCount.py,sha256=uZLvlMPo4sQH88OcrxuHfNv7Q900YcnH7BgOW8DxaPI,248
135
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/IncSignalCount.py,sha256=_Lo5_W0PePwzlMeTDN0KOis7JooMYFqCZqWqATcUCQ8,248
136
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/SetConfiguration.py,sha256=zf-slU_7pXdoMIHSQAYrOL37xFH6T_F9bOEAudvBGZQ,1413
137
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/SetSignalCount.py,sha256=_8UjsDLhq7Svj9UaUfZNwXO3j8-6u46P_9W3gToiFYc,484
138
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
139
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/Configuration.py,sha256=xLf72AIFIBVz4aL_SwfY__RCr9-oEjn6nYBbfFT8mr8,1406
140
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/Current.py,sha256=0do3rPkd9R9N1nzzQnwTTpIw8UsQ5yu8NEgUxw3rn9o,466
141
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvCurrent.py,sha256=e9Joa4R7KRJJx2z_XGzmZBg_itj130cb1S-fSLbi2r0,472
142
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvDebug.py,sha256=qqHFzNvSjgIwsXiqinSr8H1LI7awoHgLWHxbQcyxTSQ,668
143
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvInterrupt.py,sha256=vFVBUi6AfY38XshOydvy4mmB_rxFB1cUnkj5jIaeHIY,596
144
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvSignal.py,sha256=JrlwSZlGmHaBXuLOdaMJfw2sjbGxyBsdMK5KnSnyPog,1191
145
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/Power.py,sha256=b6HuF87Fnja-IGUam5gZhoQBURjBpa0A7IF-bnv4tyY,435
146
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/SignalCount.py,sha256=MdfeUEDMz5odfIoN_8WUtRZaZOhNrIbeLuzZPaDOJlw,534
147
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
148
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/params/MConfig.py,sha256=GHDy08IlMmGuswCCACGgQNakUSIRt3Z2MMYjCWAor-E,438
149
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/params/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
150
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
151
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/AllOff.py,sha256=5uwRvkxqyww02Kzc12flW0MRcXpxCA6AV5Ro7gQx2sU,225
152
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/AllOn.py,sha256=QfjV6UbMwUWgAr-HxicKRsWjxbXRTxs232M-SlrvJkc,222
153
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/GetConfiguration.py,sha256=bnnIrYeDcKbmCnz40_cn5TCur6iiKVijAOCX5WtSBBQ,1038
154
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/SendCommand.py,sha256=E6mISV_xa-USafMx_Q3KWDbOsHkbIPwL27WBM3-E2zE,893
155
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/SetConfiguration.py,sha256=t0SfVaDHF0-9gq5ZqiyOQ82mHkfQskSSwuoe4PFUiAo,1038
156
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
157
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/data/Configuration.py,sha256=bGYayNuEGryO0AhUOzTb4GtscYEER4TjjjLERw-IQ8g,1031
158
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/data/EvError.py,sha256=1IWUMfalPdCulLaCf4ELad6CReYV9lFrU_fV69HngWc,544
159
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/data/Status.py,sha256=hiA5hoNyNIxzT2T7kVGS9jGi2GxHrxLKF5HZKLJEMQQ,421
160
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/data/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
161
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/params/EErrorCode.py,sha256=SryVow7EjQLARcF8wh6GbS06aozWDcuwnqHStRF8ejg,365
162
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/params/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
163
- pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
164
- pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/commands/GetConfiguration.py,sha256=EnUdHzkhn9ZF4HZUGyMo-G44S-CKcJg4sjTH-fR9ZkM,254
165
- pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/commands/SetConfiguration.py,sha256=slYO1DnXlrmsZNYCJJE3-NFRlghEqvnHru9msQqHaDI,2078
166
- pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/commands/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
167
- pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/data/Configuration.py,sha256=qmiAh5rtoR9bKMi2nyZ74cw-Q7pGDjlopndI1JntLg0,2166
168
- pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/data/EvError.py,sha256=ioIJmU0LV1aL0luHx892CVVeH59Ke-s0Bb_O5jPBDAY,546
169
- pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/data/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
170
- pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/params/EErrorCode.py,sha256=LWaLg_XGskdnHzVB5Cth0nC6qtg2n6Q0ucQvZaL8Lu0,893
171
- pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/params/EPin.py,sha256=MXSjn1Vl81UDz8_MIUB6k4emFC-j6bk9V4SL3QnwUNM,533
172
- pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/params/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
173
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
174
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/GetConfiguration.py,sha256=paoRbRIpeR-Vwdo_XoQTuPQJrNs9vWxKx2KX6S3MX3A,254
175
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/GetStatus.py,sha256=gtcfoXg24dS-tMlK3m2K-VkgZKjt8rjC-2EsoL7kb3w,233
176
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/SetBrightness.py,sha256=bA1Hsbjlw1NiuJe7m5hdr3IZEXEsTkj5LWmc4z0Z3IU,710
177
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/SetConfiguration.py,sha256=jIOUdWybDCwoNiXWZvupnkze5XIY_qxiEijd6yX6aFM,1671
178
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/Start.py,sha256=6lG3H_p_oxs-NryvXEqnV401RDtmwDbnZpD0Ej25tMY,533
179
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/Stop.py,sha256=KODa-eWbYLDdnmchjH_jE1LNAIVtYR2G1gB2uw2hgEo,218
180
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
181
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/Configuration.py,sha256=7mbHtO0PRyhrc1UX33qpJBlzBtK1y3sMl6r0OqNe4xg,1888
182
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/EvError.py,sha256=m91k4un-kr9jiIGDEO_j5CiYrc4256hQ4z908F4Fi6s,611
183
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/EvOff.py,sha256=UbIAmODg6bG926qezZxv_OQFuqPE4MpQk_P2RQOlo2c,223
184
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/EvOn.py,sha256=kRTT9xk7kc5TZTIaRx-kKIHNFkzAXimqv9WjNi3nFOY,708
185
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/EvStart.py,sha256=TtGU0ytR9yND-WzIgWBvix9QwHDDwgLi3MCu04djXxg,541
186
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/Status.py,sha256=PG2ZzhCnID55jE2Ayrj2MYSr9iycgTZFhhRY3H9bytY,714
187
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
188
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/params/EDirection.py,sha256=P811RnSUpnsisVnp5my8GjEeqBvgWzpQuR6Rzf4wVoA,403
189
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/params/EErrorCode.py,sha256=OuZpzK4ItplHmpfr6RESURLcVWZAp_poPwcsAcBXEO4,439
190
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/params/EMode.py,sha256=47C2JjSXJ5wJ7WwwlfmK-ziqgQIJaprDcNMB7bEdbY4,384
191
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/params/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
192
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
193
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/commands/GetConfiguration.py,sha256=sRhdmSVglrXD3C5qiHSn-PjHndFJB_sN4SkGeuJQU_g,255
194
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/commands/GetCurrentIp.py,sha256=ZLIFbOIdDR0hEznxF4ACHXvEWF_3tC3BU0Wv81wCkI0,243
195
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/commands/SetConfiguration.py,sha256=usUHr_eCt3d09CyMN7sV1qVvBWXoo1TwlLrDh_arogo,2637
196
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/commands/WakeUpDevice.py,sha256=MjMd-ciNrbYVq8uLpnhogdMAC_gJwshJ5NCoBYdxKUo,1216
197
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/commands/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
198
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/data/Configuration.py,sha256=qnunZ-eODqQCvPqLHZNwdutVx3q9hpCt-FCGYG-wPpI,2802
199
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/data/CurrentIp.py,sha256=OlY_yHbkotw5FMwDEAXlemAoqLxRwz3dOcnaQOHF66U,840
200
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/data/EvError.py,sha256=zDymWgrKIZsifIJYJW4EUAodNGgZArM8fQiB8ZqOTsM,544
201
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/data/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
202
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/params/EErrorCode.py,sha256=tDKGxk3RMcI-H-XXM10Ev6b929FhTjEZPen0BwuErJE,474
203
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/params/MOptions.py,sha256=HezaUZWUlt5f82KX5OZC9fDKLL8aMRzPwwB-UiwEk3Y,3036
204
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/params/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
205
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
206
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/commands/GetConfiguration.py,sha256=Sny2E2tP3AIbQzi5FdYix6pH4Rh_JSt38Aqc_5dUkL4,254
207
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/commands/GetStatus.py,sha256=CFPXJFk3gnZl713WzWg7O19beRGdKyrzSzNByokN0a0,233
208
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/commands/SetConfiguration.py,sha256=tOwUA8Q3pb9xa1RnAweWVGPVZWGsOPtHjLTmJ8o6jnc,3122
209
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/commands/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
210
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/Configuration.py,sha256=zaiy-naHweCmZ2yKV3papvvz8I_K_g-GV34Xmxbq4Mg,3114
211
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvConfortable.py,sha256=91TdC4fqWttm1LH-8voaCYIik9ryZfTtsvvoEbanEhA,247
212
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvDry.py,sha256=stgPGsK1VG2EZ_v3usstbXwilYAmubNVEZzx_3hmpP4,223
213
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvError.py,sha256=bRwLDCeQskRE_AD7U7LWPTIEx2tGdQ2B5pEvPixaL-Y,548
214
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvStatus.py,sha256=hgSeJPWYThGtd6pFH5d6q5y6tcGyP_GMextYF-VtkoA,1099
215
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvWet.py,sha256=FRxYzPzVgAI10H3BPKz8iF-aEZIRNVN9L2L_vNeS4yc,223
216
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/Status.py,sha256=bxZ6ZqRcY4-X2OedSqAi6dXi43oZt0vQBm6GdWmMQHg,1093
217
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
218
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/params/EErrorCode.py,sha256=r9ML34I3DVGRdnB5QrvLAAHpKj8gvHZ9qQ1Ah771Ors,578
219
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/params/ELastEvent.py,sha256=ndDfCL4zzAF0qftOijyBqIS_FEffOv_QiFUllnU3hCk,403
220
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/params/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
221
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
222
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/CheckBusTiming.py,sha256=H1oDRT9lTxrkrLErs2wOLuHKa9bA-GMBc3IAX6J4LZE,249
223
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/GetBusTiming.py,sha256=vwcVHudVhrSUebGOU-r12Va3lD5LkUeCrwZKyvWDT1s,243
224
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/GetConfiguration.py,sha256=EBX1T01ospGH5nu0GWwNTRauDVMpDISrQYwM2LxcSNM,255
225
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/GetConnectedDevices.py,sha256=Ug_er-a4ANQKOsTZ6uvysaK5ATzRT8K-Wq9iFVlyYso,264
226
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/ResetBusTiming.py,sha256=z2ndgsSWvfX7Gpm3wGWuD8hVlyBuKkttZZK4PrkfFZs,249
227
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/SetConfiguration.py,sha256=Hp_yua7Mgo97FhVCfwcPcSdV53d7YqPe48fGQlVDk98,715
228
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
229
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/BusTiming.py,sha256=ZXyIVOLPH_TYwG7tDk6BwB70u9tUYzq4yrEYg-XdKPE,435
230
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/Configuration.py,sha256=5fnVYy-y_DOOEdovhwnNATN2rTQOhgC_pg2ZRHrfCew,678
231
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/ConnectedDevices.py,sha256=_kZlZsIpxNI3k5uhVfsY8yhW_qN64I48JVmWvbSlAGM,472
232
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/EvError.py,sha256=NZDMQsAi0Jz-2tynYBdv1ZRsj9HYR4DA3R9xX47iiPo,543
233
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/EvGatewayLoad.py,sha256=0vY6PeLrIAYJPM0C2p9N_KyTdiX-My9J_VNOQN6mfrA,839
234
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
235
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/params/EErrorCode.py,sha256=V6oQHRpOj3WsocZgpsSgRocXaNOWcLZy8ytN99iDr0M,496
236
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/params/MOptions.py,sha256=RQd5wyPPEC262lJSIDFY9b96ZKwvGH1OErPv-0irxJc,3050
237
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/params/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
238
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
239
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/commands/GetConfiguration.py,sha256=3tdZAMddt1k_Z8o7hxO2vCv9C18pVCqHKCsqqJ-EqAA,254
240
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/commands/GetStatus.py,sha256=H_SsjZ0xVIstexZqUc3ZsPJ30O1NUdWU-JiT2aLPRJ4,233
241
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/commands/SetConfiguration.py,sha256=aUhzrPdZGyGasFnN2xDEdFeeMUAQSvCQe-dD5gEwlh0,2404
242
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/commands/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
243
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/Configuration.py,sha256=_bhpGYSdnWydWfcv1D0hp2hRjj_0Xrn1q71zgmUDbGY,2397
244
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvBright.py,sha256=Omfy_jqt0rfnvWR-kwkwA1egbTRhXSSKp8NfIcxipKQ,232
245
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvDark.py,sha256=mHGkH_1yAeDq368Qq_8hvrvepXENrvV-8p5foy_s5yI,226
246
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvError.py,sha256=bhYp9-6dYuqpEI3vMHdK991VKA8V51Vu4DOc4cUmfMg,552
247
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvLight.py,sha256=-b_cCIbABrVvJXkOKSeAV2VEH4FhjSQc1FZJuC-QSPg,229
248
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvStatus.py,sha256=ys_I59EXnHUJuwVhWx46wyIU0irQlFYIkr8wNVoSucM,778
249
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/Status.py,sha256=DEIvRhKo_jHAcmyVJurf9dRiZ3_OOfCx0PuSZ2HXVNs,772
250
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
251
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/params/EErrorCode.py,sha256=2EQtgOeLDVNAB_MTkNJr5Z7kfqP9WL4LKdFcQM0GLN8,444
252
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/params/ELastEvent.py,sha256=bTwsqNqNT6kFuj6DqbnvrSGmBhVbiqEJ00oanCWkil8,401
253
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/params/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
254
- pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
255
- pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/commands/Off.py,sha256=gO7Y1GUgcUV-RI6PuPqIM44dueJ9g2j2aNIdLBdOF3k,215
256
- pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/commands/On.py,sha256=WxEklCTesx0eJMVt18fJP3kFwVbSOps4TJWvoxCVmJc,212
257
- pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/commands/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
258
- pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvClicked.py,sha256=QEwjJ3rgfCHKh9GDPyRvcytCsLaUdXRH1naIRt5ROlk,643
259
- pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvHoldEnd.py,sha256=3an4Tp_BDpfNwiqmi_lPMpisjOa1dqlZ3B-KUXBs-PQ,643
260
- pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvHoldStart.py,sha256=CVva-T21twmwYO1Gre200y6xrlb4cDRbkoAlFTDz2Hw,649
261
- pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvOff.py,sha256=oy5B5GAwPOAFPjHE7_jrg28ePIudQ6frmfbQUrtoz44,223
262
- pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvOn.py,sha256=oXW1VpFbIdmZj8dn42BXJNQkV6uKAEmVehcZ0JYeb34,220
263
- pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
264
- pyhausbus/de/hausbus/homeassistant/proxy/led/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
265
- pyhausbus/de/hausbus/homeassistant/proxy/led/commands/Blink.py,sha256=_vuzEAaK_R9iCa7NBMKJR5M6OCExJI8Cq2UqUgYlOE4,1108
266
- pyhausbus/de/hausbus/homeassistant/proxy/led/commands/GetConfiguration.py,sha256=Bx0XH21jE_yCCIF2UFAp8YxhJfQlbAelUkkvbCk94So,254
267
- pyhausbus/de/hausbus/homeassistant/proxy/led/commands/GetMinBrightness.py,sha256=cz7vrHPEbj66Yzz5ZBS7A4Y48nqZr5ggX6Ea9UA4z-0,254
268
- pyhausbus/de/hausbus/homeassistant/proxy/led/commands/GetStatus.py,sha256=GxAL8dKqkAsiUium2XOAp8FifY2W12zXAwE4J5qZmhY,233
269
- pyhausbus/de/hausbus/homeassistant/proxy/led/commands/Off.py,sha256=B9q9oRFd-I2YWg655z14Im6pv-O6yy97RgogbHkKPSc,481
270
- pyhausbus/de/hausbus/homeassistant/proxy/led/commands/On.py,sha256=atDYMx457Zf2DhUTMAuCVsDqADh2WVEURdZernEusG8,935
271
- pyhausbus/de/hausbus/homeassistant/proxy/led/commands/SetConfiguration.py,sha256=IpdpvtFEgXnubdP2PsTeIuBShakNxbUsve74uVALRp4,1516
272
- pyhausbus/de/hausbus/homeassistant/proxy/led/commands/SetMinBrightness.py,sha256=ozHEn5K9YAFyuYI1ljCyL1U-osR-u7FNP2Z3D7ovp_I,576
273
- pyhausbus/de/hausbus/homeassistant/proxy/led/commands/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
274
- pyhausbus/de/hausbus/homeassistant/proxy/led/data/Configuration.py,sha256=lpVp2Ru-uqTvCRHn0V0FTmDrDnaaSqPT9b93BRkObO4,1534
275
- pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvBlink.py,sha256=UHqMZQK8X1SA2gTIrzMB_g0PHoHLCLlkURLjhTRoTu0,229
276
- pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvCmdDelay.py,sha256=t0VUZvi7kElmHkqR9NYDwFzB6jn4oKFuA6n0ELd8cTw,476
277
- pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvError.py,sha256=Ms61XG5L5HQbATNYsqnOGIU-9DLEGqZcSRAQ--eHOgs,447
278
- pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvOff.py,sha256=5ijc5uy6jXTTUEnunFZIyN-H9y6auVpYxhhVBdT-GLY,223
279
- pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvOn.py,sha256=MlDlUaBqj63LkLFBSc36K2tkMPjGF0plDYOTmm-37fc,704
280
- pyhausbus/de/hausbus/homeassistant/proxy/led/data/MinBrightness.py,sha256=HZmXLNyaQDNo4DVY3pyX6EhKMY8d_lpGSy_uNYBihX4,569
281
- pyhausbus/de/hausbus/homeassistant/proxy/led/data/Status.py,sha256=MIMm_Imk1RbytlBOx7XDV_1Z9DHbdSpDRLvwn9ud8sg,711
282
- pyhausbus/de/hausbus/homeassistant/proxy/led/data/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
283
- pyhausbus/de/hausbus/homeassistant/proxy/led/params/MOptions.py,sha256=o9Qd-Y5GuQIvL1YDtl7-DAFWqcizPgYjoumjeanqti4,3043
284
- pyhausbus/de/hausbus/homeassistant/proxy/led/params/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
285
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
286
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/Blink.py,sha256=5TyHLEcuIBuQFr0G_wZgIVR5HWZzsQ9CdzygzZFK2wQ,1040
287
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/GetConfiguration.py,sha256=7KohuMb3v8cKQqn7tLceV6H5n9Qzc4BgQmQj2PNB-WM,254
288
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/GetMinBrightness.py,sha256=UWV9aOmRW56JaoG2R0Ll9jFS9kQUjMMwRhLDLJxll_8,254
289
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/GetStatus.py,sha256=-W-TGTMOsdVzPftDWM6fWfBD-8pwYnLHDOqJq4MO0do,233
290
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/Off.py,sha256=tKsU_FUlP-OKEnvOfrWkIvNfntTiwz6mjv7y-Damw30,481
291
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/On.py,sha256=5nMKPICYLQf28jMyRTDNmSbtnHDmvTwgR4udx-Rpm88,912
292
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/SetButtonConfiguration.py,sha256=JpT26ir683RzE_yY3hK90KcXb5_OZngxyhe8LrIY7pw,1631
293
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/SetConfiguration.py,sha256=OMJKHfwHVaHf81Spbu6KwhZKjwC-tEg9rXDKMVvyoXM,3055
294
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/SetLedConfiguration.py,sha256=-rHjMSOkAVGRvUOdb9qxEg2Fli65EBj6gHX6xIPO_KU,1535
295
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/SetMinBrightness.py,sha256=sIbU1kNgRX40Sxm00D00xjvqVdEllGkIC3M3-Emg_Es,576
296
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
297
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/Configuration.py,sha256=NdPdEZP7tHAlQv2ElkjYxVesRjNimxfX-NtZmYmP3-4,3002
298
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/EvBlink.py,sha256=hWQXJGIEJ1LOF1N_1mNajvWEwE4Bv2SAS3l4xEU70_4,229
299
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/EvError.py,sha256=PrMOzQ1UcamLwrE8YBAJ4dPQYfxFz8cvV69n14Suly0,548
300
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/EvOff.py,sha256=gwrbgMnAplT-3d6YUHeaTH-amV_J2AjWdKS2Ool2VLk,223
301
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/EvOn.py,sha256=PsWIvsokVbbOHX66MTbhiEyO8WfgyBAopJW4e6JLJL0,463
302
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/Status.py,sha256=M6sQASi6fXJXyv54Ws8CkJmq-1L4NXVllSgzogtZnpM,532
303
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
304
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/EErrorCode.py,sha256=dsDkC757uC1mPzaTCEwPloBZA8EGp4k-WxpqA6YtMbY,390
305
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/EStatus.py,sha256=yETdfQq94m4cNUeohxoeKVpKVha_dp8b2ivtMSuzkd4,381
306
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/MEventMask.py,sha256=jZKtpQsEgzxoDPkLGbskwnGerzyG0YC2ETrPP7ytTd4,3336
307
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/MOptionMask.py,sha256=5I7LRWoupMTaWs7RIbRUoQvvYzxiS2nd7uIPb_Srzps,3010
308
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/MOptions.py,sha256=o9Qd-Y5GuQIvL1YDtl7-DAFWqcizPgYjoumjeanqti4,3043
309
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
310
- pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
311
- pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/commands/GetConfiguration.py,sha256=kEBHp8XYA0ddEirR0trbGaqetGZARh_B5mIqaVFB1W0,455
312
- pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/commands/SetConfiguration.py,sha256=U7tJC1-Sat1IfMFkEaaf96xC9DinjRH7vfpZKN-YtxY,1006
313
- pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/commands/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
314
- pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/data/Configuration.py,sha256=0rQ4Wjk9zme4rf31mQny5welYsmrXbSkKyDO1FMX2H0,996
315
- pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/data/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
316
- pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/params/ESensorType.py,sha256=04GvAIh_c_GET-OvDX5sqy5xoIhUKIRqQAVjfDVh5EE,586
317
- pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/params/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
318
- pyhausbus/de/hausbus/homeassistant/proxy/pCServer/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
319
- pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Exec.py,sha256=G2NykaRSkVYIJlr4DhRfoehcpWaHRNRI7m-mo74LOyE,422
320
- pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Quit.py,sha256=Oj-mU92gWQiIPyVS8GkdwXTJ0091SkbdtvGzK9Jr8Zg,218
321
- pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/ReloadUserPlugin.py,sha256=H-jGwVpwVKWbs6BURpg3u-yBuxdW6oGSbT5Rox2lgLc,254
322
- pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Restart.py,sha256=fB7ptxjLLxviXobnPk2BwOWyxC_MqXpVkGTchh-cHac,227
323
- pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/SetVariable.py,sha256=-p3VFMLvg-Rt3mPL7-QzBEbcA33enUbWcTXWGLfJyww,617
324
- pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Shutdown.py,sha256=s9NJK-T4mCRoI9WOvqvy4NZmkSRjMo0ZwRmfDNJwzWQ,230
325
- pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Standby.py,sha256=UQY26RNWIpg0gIU51cXFr881Hc_IZHMY6VEAd13rHNI,227
326
- pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
327
- pyhausbus/de/hausbus/homeassistant/proxy/pCServer/data/EvOffline.py,sha256=nIZ3Is-yWlt3k2Z_tDu1SJIsokDgDNdCPy7aXncWueg,234
328
- pyhausbus/de/hausbus/homeassistant/proxy/pCServer/data/EvOnline.py,sha256=TLXb2QKH6XQNsboqFXw97tN17_EWYfLHsVIi6iACX4Q,231
329
- pyhausbus/de/hausbus/homeassistant/proxy/pCServer/data/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
330
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
331
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands/Enable.py,sha256=UxqH__h6uiWrtpye37Ux-c-R3j00vnfx6u7soKxG9lc,538
332
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands/GetConfiguration.py,sha256=MQKUBuEqAvXSqfkICJ2vsxlwLGKwYMXUmCJ-7xOu04g,254
333
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands/SetConfiguration.py,sha256=f54_Jot3z6ZrSQMRGJDXvA7fiF1WJFa-K2nojAU6s_s,2094
334
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands/SetTargetValue.py,sha256=ZFGm9XVdEE6pDr-u8QHRt70JokoFiGcD7Awg45Ia3WE,519
335
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
336
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data/Configuration.py,sha256=jZl0WqgZPbk0Q1WXIH3QteGpHXBXyT3y6esFxqGQ4C4,2087
337
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data/EvError.py,sha256=NeQ904GiNwjzNiCoHkJEzebh9oeW-yAFXtM1mXTAvwE,548
338
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data/EvOff.py,sha256=IHjro8liHv4d1oqwMIL0N3kQElHCWgA_1gyDaWFswlk,223
339
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data/EvOn.py,sha256=6wHlJwxqGBUKgwYJhMYsGsWe-utgywFcxD5Mh-RsmeQ,220
340
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
341
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/params/EEnable.py,sha256=a-tE5nu2OizLi3Dks5fAkvAwVyUy2-N0badyZu_a-yU,371
342
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/params/EErrorCode.py,sha256=Is4Fte2EX7MKRdlWZdwGqdl9ElXQZUpYcxTG9dONntU,453
343
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/params/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
344
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
345
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/commands/GetConfiguration.py,sha256=bP_uQnztefBe3dRBhPgR6iOuA6ln8jmqW0tjIjdGPbw,254
346
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/commands/GetStatus.py,sha256=xiDkd9v7LQ2sgTst0e8ZjaMak5mAjlamdA5q2WxQP2k,233
347
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/commands/SetConfiguration.py,sha256=4Vs_CUi4y15HP0wbJkolzolzC9S2f9KQ_TIxHGbz4cE,3130
348
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/commands/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
349
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/Configuration.py,sha256=ddINOB1wGMFl_YhsKwHekPt4nzGe09c3PkxSgJ93BGc,3123
350
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvError.py,sha256=cPyCwzmAvAvfcBrAp_dXkXgeuRPM6wPI_tVp6-wpYiU,545
351
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvHighPower.py,sha256=1F3UBManP7HpOxkJsfDoKoGmnlchoedx_Dx-zJJDYWc,241
352
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvLowPower.py,sha256=FV8V3P7DLcJP_I0CcoPkvMx2KCN-tcoKmu4dMV1U-lE,238
353
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvMediumPower.py,sha256=4CoKltQ1_2---1XGOqMRvpxAO3ZoaR7fynYT8579CA8,247
354
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvStatus.py,sha256=NrcsizEUPKtnNt9IkoBFFM_NAAXG0R7sMxzD5e1pIIQ,970
355
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/Status.py,sha256=YI-oHlYX5MXeqmO7dKiCJubLRExqo_chITJ9S3mWd4k,968
356
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
357
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/params/EErrorCode.py,sha256=KxxcjrhReYA0GgnpQy48ksQKhCeOAl0iGifgqTRwaOY,435
358
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/params/ELastEvent.py,sha256=lsacGiSparQDtw3xSxOdhZ3-UadQGIdhit9MoFZGKKk,399
359
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/params/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
360
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
361
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/commands/GetConfiguration.py,sha256=z-gvv-MIK-4ngDB0-MgHXlmOID8wbdC5iDS6JH-83ww,254
362
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/commands/GetLastData.py,sha256=3sK0TQXs0pReV35w2x200X3NH5RaswoaLH3ef3BBRkA,239
363
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/commands/GetState.py,sha256=mgjq47oGtQHbuslBs0nrxDGE1_Q1SwDoqK5Qg4X938c,230
364
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/commands/SetConfiguration.py,sha256=MtiOJUMdqbJDffrI6jGSaZJvXukoDByxA4e3icQZ1IA,254
365
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/commands/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
366
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/Configuration.py,sha256=GYKF26ObEyjZVyrhT14da-XEllyTGXSScdpGtFysCuI,247
367
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/EvConnected.py,sha256=Z8d7dQ6f44k_BMg53795DC7HHLymRnVEGxLfckdyIUw,241
368
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/EvData.py,sha256=mG4gEXO-sRfJ2c_aGIuCEMhb0rDsTFiD5rMVGdwEVUU,441
369
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/EvError.py,sha256=8KFD5cmRnggvpzeOV74cCgOXMfbRAhG79Q30TuOpI8A,545
370
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/LastData.py,sha256=dwL0TqyPgqe57rx1fqH49qY39uIjHPLyTrigZv1JjHs,448
371
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/State.py,sha256=PtYJX6mF1xAWG3uMB9BeuQN5qcqvMOB1nEfSEJBAYIo,524
372
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
373
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/params/EErrorCode.py,sha256=YCR1ddpCbllmkyELNc6jbuZEVxYbe5t5nRTFxFpqVZw,478
374
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/params/EState.py,sha256=XR9qiWRJPzkCgs_CDy1qK5zSga48oMYlv1KuzHZM4eI,431
375
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/params/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
376
- pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
377
- pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/commands/GetConfiguration.py,sha256=d3zJbMZYXs9zRKOgJYkzhWnBhHFpYxnK5pvah-GARaI,254
378
- pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/commands/GetStatus.py,sha256=2nzXiSPV_yLZCBB45iWYF69UCxrZd31yqFJOYvO1rdI,233
379
- pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/commands/SetColor.py,sha256=rwLRPHOnllMJpqhtVB1MkIoYPbNKCP0FfWGHnXJbHac,1322
380
- pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/commands/SetConfiguration.py,sha256=m9JygUEcHfRF7NG_Z6CYQztRTXbtMf9f-W9wVXT670U,511
381
- pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/commands/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
382
- pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/data/Configuration.py,sha256=Gym7SOdwiVxtiHLeelbFtfrwoRMWdBtA4vNeJadUW9A,548
383
- pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/data/EvOff.py,sha256=hvPxgsVNw6LM1LBxMoqn2YpzXGuiy4Die7pNTzuhzPU,223
384
- pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/data/EvOn.py,sha256=IOmmXOIPZLPNlzfX5nEUQcDxQ7og7Bx1FmGjQignnV4,1312
385
- pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/data/Status.py,sha256=bond0BPCcGSls9ocQvJmzN6T7SVJOgvYNiUFFJEr5xE,1318
386
- pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/data/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
387
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
388
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/GetConfiguration.py,sha256=Oilqo3NWG5jhpi-NmAfjbj_VcI1mlqZu49ozwD-FCSI,254
389
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/GetStatus.py,sha256=xWLpGNQHfTfCC5bvfHNqATsAx_wbefTqcdkZBI3YbXU,233
390
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/MoveToPosition.py,sha256=814Q-pT0hoyd7yIZXkpNrl6DHp6FD1zDCgZNExtelXs,468
391
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/SetConfiguration.py,sha256=an4WmWHKrEwQAlAv5GFbekdv5p3jbQZ229cVwltkAFk,1290
392
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/SetPosition.py,sha256=tBWC0rI2_ejMl14WDmGdsyKb3nHExW73JjswwCo-zao,492
393
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/Start.py,sha256=xatHcamkgFOENXHFTgyO1c_KU5EzC6LZ6KMeiVJRWbo,536
394
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/Stop.py,sha256=CwlsW6RVnL4oI4qULs5Ouaqvif2weSiJ5WCfGafWXQs,218
395
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
396
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/Configuration.py,sha256=UjEAS4__xX0JvRcLTKnnxvrZLE3GczJiTfyYXI6Xufo,1283
397
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvClosed.py,sha256=5H5kXG98VcYEr2zh1fbDifsezfXMgch2UZ88WnR98IY,452
398
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvError.py,sha256=mjq4CgKRmwDOZhUWIypR-1VKrWpfNnemkBaeSr6HNQ4,544
399
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvNewMainState.py,sha256=wKJUq53QgAbcNqN8ZOuSbCD1OWutBFRiouNCRsTHWgU,757
400
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvNewSubState.py,sha256=YsGiWOJAqUOPnvuAcWZsSrsema8OecxjMO5JVu7Cvik,754
401
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvOpen.py,sha256=x27E7MIE_O8XHL7fCmCG5Ezt2mqjvZzRATfjfNjVeUM,226
402
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvStart.py,sha256=05x0ThmkUJO3sNKCSWzGSp-_HMb2iZeNlcORIUqUYOg,544
403
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/Status.py,sha256=xY-petWgHqlD5cVX34uOIoyBv6MyHCRNi9d-ctFAvqU,436
404
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
405
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/params/EDirection.py,sha256=ABMOBIzbOzHgfEt4YXcNCmtiZHKH52l6CiJE16tSZ1o,411
406
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/params/EErrorCode.py,sha256=SryVow7EjQLARcF8wh6GbS06aozWDcuwnqHStRF8ejg,365
407
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/params/ENewState.py,sha256=V7iw_mwvt87_Z1MuUs94xZXA7L7Z_MGi32r20RtV-S4,467
408
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/params/MOptions.py,sha256=4KV5eRSqSn9z10jzpHNj9yvNNT77yw0NlumFyTpoaNw,3127
409
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/params/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
410
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
411
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/GetConfiguration.py,sha256=U-8d_K6zfLUXjOq3jVHJ7O_waQYzfwmYl3QdBDBXgwQ,254
412
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/GetStatus.py,sha256=X_odwDac5-UObdJZtArVOyaLT0Giasdd0jaVUcwTIFc,233
413
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/Off.py,sha256=XoXCPyCJCArwXd1eWkt_xMgGLPZuvi3KraTlgjFjZHQ,481
414
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/On.py,sha256=mSVLosjhJKNBmOwVkf0v9ebtWtiY0ksFOjEmp38Qipc,731
415
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/SetConfiguration.py,sha256=tD5-vasSFPJjFASshjVFGeyl956fzvYnLWzFY2ozFEY,1705
416
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/Toggle.py,sha256=GXLsj2pZfXzYBsOjN_MQW-8Sq7sGe3dat6ljGp51msc,900
417
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
418
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/Configuration.py,sha256=nE6P8VOGitCouFLlKDTsW_HLhRz-UZiunDqxa17yXWg,1698
419
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvCmdDelay.py,sha256=8JOHn18P6FgjL25JLf3sB5OY6rYgcLPYXzt-pgAzR48,476
420
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvDisabled.py,sha256=Q8suC8tCu3eAF_VS72gMGFGxIdksrsTOSMgD836jhBM,238
421
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvError.py,sha256=i7wBBLHb6njHfOXCSD5qZg94PszZ0274cd8ID9Ypix4,543
422
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvOff.py,sha256=IPxgCRfYqmSce9_bATNxW9diTCpwBroRyVv6poVme0I,223
423
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvOn.py,sha256=QY63XGCnUDLvGhPd7j1ZjfD1y58BSkR3ss-lVBd00X8,436
424
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvToggle.py,sha256=ptdgJvSxDawWhmN-Xn4bj8D0u7ZXptw4rCSbXkFYJUQ,232
425
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/Status.py,sha256=WTfuIGeJNsNlf2SEED0rd35t7D_Uzn72-cnpww8ifV8,733
426
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
427
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/params/EErrorCode.py,sha256=06gnU-NYpPmK1JoxLEPhtM4FkX0Kk2YQ0c036gpZCro,389
428
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/params/EState.py,sha256=icPt-aBguUxsTBk1DJP9khC65MsoIAAU9P8yeBwBGBc,419
429
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/params/MOptions.py,sha256=m9-ryW1dfy94nbca2YNjhy52b8R6BQv3QIoCEGt27iw,3141
430
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/params/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
431
- pyhausbus/de/hausbus/homeassistant/proxy/systemTime/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
432
- pyhausbus/de/hausbus/homeassistant/proxy/systemTime/commands/GetTime.py,sha256=Itsui9EoMe548kvY0Re7E2q4dc6_Or7RxO3dn6p0P0M,226
433
- pyhausbus/de/hausbus/homeassistant/proxy/systemTime/commands/SetTime.py,sha256=JcSm_0G5L0V6Eped9rJxZmO8Ka_1ides0IreML1nRio,1697
434
- pyhausbus/de/hausbus/homeassistant/proxy/systemTime/commands/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
435
- pyhausbus/de/hausbus/homeassistant/proxy/systemTime/data/EvError.py,sha256=dI4ajPEYs3lKGd7NDOgIYeldXhlZMqDOCbQd4Kth5BY,544
436
- pyhausbus/de/hausbus/homeassistant/proxy/systemTime/data/Time.py,sha256=FsRwdc_kS39QmXQ6BVxBafXqUEV3HRVO20z7lRlplOo,1440
437
- pyhausbus/de/hausbus/homeassistant/proxy/systemTime/data/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
438
- pyhausbus/de/hausbus/homeassistant/proxy/systemTime/params/EDate.py,sha256=pHcdiXxOLiSEEbkQ82ESmLejlyUgTPOVgHogHDbgCN8,611
439
- pyhausbus/de/hausbus/homeassistant/proxy/systemTime/params/EErrorCode.py,sha256=YYKTlLFblVr4EE3lAKmy8CwnspqE06hhgYYdY1-e1V4,449
440
- pyhausbus/de/hausbus/homeassistant/proxy/systemTime/params/EMonth.py,sha256=f2cFpVTLObPQLDPs94PF-6yBIyRK82d5jQEbnrNhUKc,490
441
- pyhausbus/de/hausbus/homeassistant/proxy/systemTime/params/EWeekDay.py,sha256=1B40627XkYoSsp39u74qFcCfNEnwboBNG0XIsgXt_c4,444
442
- pyhausbus/de/hausbus/homeassistant/proxy/systemTime/params/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
443
- pyhausbus/de/hausbus/homeassistant/proxy/taster/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
444
- pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/EnableEvents.py,sha256=99oN3EF_TQdX3qttoYw6J91ImwI0wn4b7tYpj0vtp3s,1013
445
- pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/GetConfiguration.py,sha256=HevKOpTDytWa4zlJ7BA7588TbadnSW4inY0DVmaHfCY,254
446
- pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/GetEnabled.py,sha256=HOEy0SqH8Aj5em2nOOIZvO_H1pvCMa7oOds11addAZ0,236
447
- pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/GetStatus.py,sha256=upA-VT7M-GlLKm3OxjVOC95bUsGhw--Z9YbWkg1nmjE,233
448
- pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/SetConfiguration.py,sha256=uPzxa8E7TEqhX-5dRvzvKPkKOb_GZddurFzxh2O6Zjw,1866
449
- pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
450
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/Configuration.py,sha256=aRnfxehK_os7mqLSCTBit7xn2YJTHYkpBSip_S8JdTg,1859
451
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/Enabled.py,sha256=bANy6EAfsURICsBXRQFIFxFwnKb-c_jwhvmh-IRtEeI,484
452
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvClicked.py,sha256=klLbH10SSUCgpwNdKjq82UW9XC08ejrGDMi3O0XgpkE,499
453
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvCovered.py,sha256=pXra2jfA6mrhcxTDR9X2htbbfEoRE-AjXpaUPi0WvOg,499
454
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvDoubleClick.py,sha256=FqYNDU8ns7nxrHEcZqs_NR5RqJ1USTN2H15bh0t7utc,511
455
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvEnabled.py,sha256=vkJp1dfDcTeN7Wf8T5ljI7jOqIFt_4dDffTx-xuD9DI,509
456
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvError.py,sha256=xxTlBez6UfaaRXbP_bxvn_RMqFrSn0PEGSbDJD6e-G4,447
457
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvFree.py,sha256=Cb8tTs71KlD_VYrTa_vrjUxo4TR03yAUR7drllaMjjI,490
458
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvHoldEnd.py,sha256=rCOpvY7bj7f9OY775ANjGovRvckERqrGE9a002T-Dp0,499
459
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvHoldStart.py,sha256=xEAJuFdzH3oiTfMxJcxpkTP_PPBvp2I-P9gVo-VAbic,505
460
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/Status.py,sha256=PDkBczs5Dpkoezwh3_pmQSZcWkH1BGD4bs9TwVX30n0,490
461
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
462
- pyhausbus/de/hausbus/homeassistant/proxy/taster/params/EEnable.py,sha256=qR5ead_UIGw7OXD-CC3hFNeYsfUaFj-EcNoEHNp4rhc,386
463
- pyhausbus/de/hausbus/homeassistant/proxy/taster/params/EState.py,sha256=o8udJUwWcgwu88EFaKuvwdBoUR6cBBhM63Y-fP6XqWA,388
464
- pyhausbus/de/hausbus/homeassistant/proxy/taster/params/MEventMask.py,sha256=nwdEydcNDYrDC5UPP0icis7vbIHroik5UUKFmjIOs_4,3336
465
- pyhausbus/de/hausbus/homeassistant/proxy/taster/params/MOptionMask.py,sha256=5I7LRWoupMTaWs7RIbRUoQvvYzxiS2nd7uIPb_Srzps,3010
466
- pyhausbus/de/hausbus/homeassistant/proxy/taster/params/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
467
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
468
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/commands/GetConfiguration.py,sha256=Btk9rstzKE1T_2XfFS1KQ5qu246ENaMo5crJIY-D8F8,254
469
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/commands/GetStatus.py,sha256=eeZXy9qlI_fuRqMO3knpnjlp3_6BNpg3Ng_z9-2sImU,233
470
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/commands/SetConfiguration.py,sha256=Ngr4-me70hnY5cSGYYYsCRt4zUc7xmk-DE36xpZ4REU,3116
471
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/commands/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
472
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/Configuration.py,sha256=p4iDITsSW1sF1egSTeL_vi_vBakKFKFqALA1oA4WQr0,3109
473
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvAbove.py,sha256=UE7HnosYv2-Bdgd1hkUlRataWFxJUshb5O-lhKc3mxg,229
474
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvError.py,sha256=n7msVcYe3H5zFN6Ds4wIeiiohh0iJvzEW-PIFM49vpE,543
475
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvInRange.py,sha256=zpMwjvd1tFLcL8A0WRknTprPhLVSU6Fn54eC2FXB5Nw,235
476
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvLow.py,sha256=HgIqAxPYdeDd-IgbhcEpIWX5zS_gs2C5vSJKBrcbuQ0,223
477
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvStatus.py,sha256=k83pUOONmO8nOhic_vkc7ob0U0juZySpWXca2VIy_Cg,990
478
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/Status.py,sha256=k0y7nrGFN0cnO1GJep6bNyCukpaorF8z6O2ulKEQsTI,984
479
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
480
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/params/EErrorCode.py,sha256=r9ML34I3DVGRdnB5QrvLAAHpKj8gvHZ9qQ1Ah771Ors,578
481
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/params/ELastEvent.py,sha256=b6SI7w0w3MQAgaxyUC7HkmpFXH_f7QRuQw3GS3j9BTI,404
482
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/params/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
483
- pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
484
- pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/commands/AnnounceServer.py,sha256=_Rp2bNWQYQjbfmvMtftaupIxNX-S6y6QhhRgdNDY9bM,1031
485
- pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/commands/GetCurrentIp.py,sha256=rZKSwzDg6axYrdTfWAMyC-WNbJ9w3NGElxrNcGCwSnU,242
486
- pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/commands/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
487
- pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/data/CurrentIp.py,sha256=yP0wPkkW_ckzZm0jOLyCjZW7uDjostE5FxCWHucrz-E,839
488
- pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/data/EvWhoIsServer.py,sha256=8FwUg-PVxHyb6rPejhLWrBj-RANlxLLpzTFtAy-nbK8,247
489
- pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/data/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
490
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
491
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/commands/GetConfiguration.py,sha256=lwKueBXV2vMKpQOYRcaoPR02FMm_nYG7l8MWVk4HlNY,254
492
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/commands/GetStatus.py,sha256=LYMs3rRRoKt5MW3NRObnFs6A8V93dIQPMBFnglSv2aU,233
493
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/commands/SetConfiguration.py,sha256=Qs_5IAtg6-kZ9-7BvB2g_jGJC79oC-Zu1NkG25TH2Nw,3122
494
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/commands/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
495
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/Configuration.py,sha256=-oALYAXoBm11XC8R6uJ3XbBSad1CO0w6Hba35NAXep8,3082
496
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvCold.py,sha256=T07du9AsltFFkz765QthzechIjypdepIZ-4gsTxN0IU,226
497
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvError.py,sha256=n1NUTT_FdY-d2YnqkXMH9q3dSU_NRtH1xceLYZJlbtA,551
498
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvHot.py,sha256=cM3S8n9Rm4q-Dl0vv2ndGb2VgEAVV9aXWnfBaYmPPGI,223
499
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvStatus.py,sha256=3tuQ_B_Rpk2LpGj_pwKUkTrPxF5q47YewIqe4QNUFEc,998
500
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvWarm.py,sha256=syFboSQ4ufIM91QwutPbPVJSY0hUzcI8XeUQJyr1dw4,226
501
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/Status.py,sha256=zmjX0WKxW-gcqC7vPr-BMOSpHBfYHZq5Iaj-0iLMjUk,992
502
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
503
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/params/EErrorCode.py,sha256=r9ML34I3DVGRdnB5QrvLAAHpKj8gvHZ9qQ1Ah771Ors,578
504
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/params/ELastEvent.py,sha256=4R0Y9327u6U-Ek3V6K2qsOO7H1b6j9A1E2WTMHkYR4E,397
505
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/params/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
506
- pyhausbus/de/hausbus/homeassistant/proxy/wetter/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
507
- pyhausbus/de/hausbus/homeassistant/proxy/wetter/commands/GetWeather.py,sha256=ORywnjE6E2Hkc8S6ITFo1kE-BTKRDPnFedSJqLs8pIk,235
508
- pyhausbus/de/hausbus/homeassistant/proxy/wetter/commands/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
509
- pyhausbus/de/hausbus/homeassistant/proxy/wetter/data/Weather.py,sha256=DcELW1mo_k1t-xf30_3-vWCB3A8UgX_3oOzynWY1WAw,1454
510
- pyhausbus/de/hausbus/homeassistant/proxy/wetter/data/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
511
- pyhausbus/de/hausbus/homeassistant/proxy/wiFi/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
512
- pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands/GetConfiguration.py,sha256=rAcWMI7dC8wtXnws_yoncVcd6jfSOrgfvDHVISJFMJI,255
513
- pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands/GetCurrentIp.py,sha256=X7zNergmt9wxz3LAw3af9rBHs5wuSEHQny6AES8I3XI,243
514
- pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands/SetConfiguration.py,sha256=oj7k3ZMt71bpb-eLonowu0Q0Q06mT5J5Y9MxBlBmf6U,2106
515
- pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands/WakeUpDevice.py,sha256=z4WLy5X9GOidzwzKQuMplZdN9bs_4NnGv_oEzgdg1A0,1216
516
- pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
517
- pyhausbus/de/hausbus/homeassistant/proxy/wiFi/data/Configuration.py,sha256=8peAxAfR-Z0mwBRUkr4zpwbGG3s3q_C40w0HusWO1Gs,2099
518
- pyhausbus/de/hausbus/homeassistant/proxy/wiFi/data/CurrentIp.py,sha256=CQlXOJTHw7XZYHKEppDEd_2wmuhcaCOJBXb0UdbvrQ0,840
519
- pyhausbus/de/hausbus/homeassistant/proxy/wiFi/data/EvError.py,sha256=heTZfYOQ6lw2VSqmSa_f39jHsT2121wgjejvCnn06HE,540
520
- pyhausbus/de/hausbus/homeassistant/proxy/wiFi/data/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
521
- pyhausbus/de/hausbus/homeassistant/proxy/wiFi/params/EErrorCode.py,sha256=VFr7nVTg9RiCHiE9M7Lk2vEMyj5O7whrC2bJGCKT1CA,378
522
- pyhausbus/de/hausbus/homeassistant/proxy/wiFi/params/_init_.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
523
- pyhausbus-1.0.1.dist-info/LICENSE,sha256=o5kWncdm1-QwSPPsPlLL8BhpXCt6u3Kj7jWPsPSDcs4,1073
524
- pyhausbus-1.0.1.dist-info/METADATA,sha256=Oh2fk3AqSqTEWpeRpO0BEdOz5OTdOGoxXOqyDD11hKY,1273
525
- pyhausbus-1.0.1.dist-info/WHEEL,sha256=IrRNNNJ-uuL1ggO5qMvT1GGhQVdQU54d6ZpYqEZfEWo,92
526
- pyhausbus-1.0.1.dist-info/RECORD,,