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.
- pyhausbus/ABusFeature.py +22 -22
- pyhausbus/BusDataMessage.py +23 -23
- pyhausbus/BusHandler.py +110 -110
- pyhausbus/HausBusCommand.py +83 -83
- pyhausbus/HausBusUtils.py +203 -203
- pyhausbus/HomeServer.py +86 -68
- pyhausbus/IBusDataListener.py +6 -6
- pyhausbus/Main.py +100 -100
- pyhausbus/ObjectId.py +22 -22
- pyhausbus/ResultWorker.py +53 -53
- pyhausbus/Templates.py +140 -0
- pyhausbus/UdpReceiveWorker.py +73 -73
- pyhausbus/WeekTime.py +55 -55
- pyhausbus/de/hausbus/homeassistant/proxy/AnalogEingang.py +139 -0
- pyhausbus/de/hausbus/homeassistant/proxy/Controller.py +357 -342
- pyhausbus/de/hausbus/homeassistant/proxy/Counter.py +65 -65
- pyhausbus/de/hausbus/homeassistant/proxy/CurrentReader.py +133 -121
- pyhausbus/de/hausbus/homeassistant/proxy/DaliLine.py +63 -63
- pyhausbus/de/hausbus/homeassistant/proxy/DigitalPort.py +40 -40
- pyhausbus/de/hausbus/homeassistant/proxy/Dimmer.py +91 -91
- pyhausbus/de/hausbus/homeassistant/proxy/Drucksensor.py +141 -0
- pyhausbus/de/hausbus/homeassistant/proxy/Ethernet.py +61 -61
- pyhausbus/de/hausbus/homeassistant/proxy/Feuchtesensor.py +77 -77
- pyhausbus/de/hausbus/homeassistant/proxy/Gateway.py +108 -97
- pyhausbus/de/hausbus/homeassistant/proxy/Helligkeitssensor.py +77 -77
- pyhausbus/de/hausbus/homeassistant/proxy/IRSensor.py +55 -55
- pyhausbus/de/hausbus/homeassistant/proxy/Led.py +117 -116
- pyhausbus/de/hausbus/homeassistant/proxy/LogicalButton.py +116 -116
- pyhausbus/de/hausbus/homeassistant/proxy/ModBusMaster.py +34 -34
- pyhausbus/de/hausbus/homeassistant/proxy/ModbusSlave.py +13 -13
- pyhausbus/de/hausbus/homeassistant/proxy/PCA9555.py +29 -0
- pyhausbus/de/hausbus/homeassistant/proxy/PCServer.py +67 -67
- pyhausbus/de/hausbus/homeassistant/proxy/PIDController.py +69 -64
- pyhausbus/de/hausbus/homeassistant/proxy/PT1000.py +153 -0
- pyhausbus/de/hausbus/homeassistant/proxy/PowerMeter.py +77 -77
- pyhausbus/de/hausbus/homeassistant/proxy/ProxyFactory.py +86 -12
- pyhausbus/de/hausbus/homeassistant/proxy/RFIDReader.py +78 -78
- pyhausbus/de/hausbus/homeassistant/proxy/RGBDimmer.py +63 -63
- pyhausbus/de/hausbus/homeassistant/proxy/Rollladen.py +110 -110
- pyhausbus/de/hausbus/homeassistant/proxy/Schalter.py +127 -104
- pyhausbus/de/hausbus/homeassistant/proxy/SnmpAgent.py +13 -13
- pyhausbus/de/hausbus/homeassistant/proxy/SystemTime.py +42 -42
- pyhausbus/de/hausbus/homeassistant/proxy/Taster.py +128 -118
- pyhausbus/de/hausbus/homeassistant/proxy/Taupunkt.py +77 -77
- pyhausbus/de/hausbus/homeassistant/proxy/TcpClient.py +38 -38
- pyhausbus/de/hausbus/homeassistant/proxy/Temperatursensor.py +78 -78
- pyhausbus/de/hausbus/homeassistant/proxy/Wetter.py +26 -26
- pyhausbus/de/hausbus/homeassistant/proxy/WiFi.py +60 -60
- pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/_init_.py +1 -0
- pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/commands/GetConfiguration.py +15 -0
- pyhausbus/de/hausbus/homeassistant/proxy/{gateway/commands/CheckBusTiming.py → analogEingang/commands/GetStatus.py} +8 -8
- pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/commands/SetConfiguration.py +74 -0
- pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/commands/_init_.py +1 -0
- pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/data/Configuration.py +74 -0
- pyhausbus/de/hausbus/homeassistant/proxy/{gateway/commands/ResetBusTiming.py → analogEingang/data/EvHigh.py} +8 -8
- pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/data/EvInRange.py +15 -0
- pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/data/EvLow.py +15 -0
- pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/data/EvStatus.py +33 -0
- pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/data/Status.py +25 -0
- pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/data/_init_.py +1 -0
- pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/params/ELastEvent.py +28 -0
- pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/params/_init_.py +1 -0
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/EnableFeature.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GenerateRandomDeviceId.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetModuleId.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetRemoteObjects.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetRuleState.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetSystemVariable.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetTime.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetUnitGroupStatus.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetUnusedMemory.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/Ping.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/ReadMemory.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/ReadRules.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/Reset.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/ResetOneWireManager.py +25 -0
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetConfiguration.py +10 -10
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetDebugOptions.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetRuleState.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetSunTimes.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetSystemVariable.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetTime.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetUnitGroupState.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/TriggerRuleElement.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/WriteMemory.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/WriteRules.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/Configuration.py +10 -10
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvConsole.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvDay.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvGroupOff.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvGroupOn.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvGroupUndefined.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvNewDeviceId.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvNight.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvResetWifi.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvStarted.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvSystemVariableChanged.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvTime.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvZeroCrossData.py +23 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/MemoryData.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/MemoryStatus.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/ModuleId.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/Pong.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/RemoteObjects.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/RuleState.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/RulesData.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/SystemVariable.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/Time.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/TimeDifference.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/TriggeredRule.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/UnitGroupStatus.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/UnusedMemory.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EErrorCode.py +17 -4
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EFeatureId.py +13 -4
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EFirmwareId.py +15 -6
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EIndex.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EReason.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/ESlotType.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EStatus.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EType.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/MLogicalButtonMask.py +61 -61
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/MOption.py +61 -61
- pyhausbus/de/hausbus/homeassistant/proxy/counter/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/counter/commands/GetStatus.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/counter/commands/SetConfiguration.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/counter/commands/SetCount.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/counter/data/Configuration.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/counter/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/counter/data/EvStatus.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/counter/data/Status.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/counter/params/EErrorCode.py +13 -4
- pyhausbus/de/hausbus/homeassistant/proxy/counter/params/MMode.py +61 -61
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/ClearSignalCount.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/DecSignalCount.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/GetCurrent.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/GetPower.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/GetSignalCount.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/IncSignalCount.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/SetConfiguration.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/SetSignalCount.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/Configuration.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/Current.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvCurrent.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvDebug.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvError.py +26 -0
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvInterrupt.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvSignal.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/Power.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/SignalCount.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/params/EErrorCode.py +27 -0
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/params/MConfig.py +13 -13
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/AllOff.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/AllOn.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/GetConfiguration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/SendCommand.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/SetConfiguration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/data/Configuration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/data/Status.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/params/EErrorCode.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/commands/SetConfiguration.py +11 -11
- pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/data/Configuration.py +28 -28
- pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/params/EErrorCode.py +13 -4
- pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/params/EPin.py +13 -4
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/GetStatus.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/SetBrightness.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/SetConfiguration.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/Start.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/Stop.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/Configuration.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/EvOff.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/EvOn.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/EvStart.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/Status.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/params/EDirection.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/params/EErrorCode.py +14 -4
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/params/EMode.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/_init_.py +1 -0
- pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/commands/GetConfiguration.py +15 -0
- pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/commands/GetStatus.py +15 -0
- pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/commands/SetConfiguration.py +74 -0
- pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/commands/_init_.py +1 -0
- pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/Configuration.py +74 -0
- pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/EvHigh.py +15 -0
- pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/EvInRange.py +15 -0
- pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/EvLow.py +15 -0
- pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/EvStatus.py +33 -0
- pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/Status.py +33 -0
- pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/_init_.py +1 -0
- pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/params/ELastEvent.py +28 -0
- pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/params/_init_.py +1 -0
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/commands/GetCurrentIp.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/commands/SetConfiguration.py +10 -10
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/commands/WakeUpDevice.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/data/Configuration.py +10 -10
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/data/CurrentIp.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/params/EErrorCode.py +13 -4
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/params/MOptions.py +61 -61
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/commands/GetStatus.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/commands/SetConfiguration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/Configuration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvConfortable.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvDry.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvStatus.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvWet.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/Status.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/params/EErrorCode.py +14 -4
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/params/ELastEvent.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/GetConnectedDevices.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/{GetBusTiming.py → GetMinIdleTime.py} +8 -8
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/SetConfiguration.py +10 -10
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/SetMinIdleTime.py +25 -0
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/SetPreferLoxone.py +26 -0
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/Configuration.py +10 -10
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/ConnectedDevices.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/EvGatewayLoad.py +38 -17
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/MinIdleTime.py +25 -0
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/params/EErrorCode.py +14 -4
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/params/EValue.py +27 -0
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/params/MOptions.py +65 -65
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/commands/GetStatus.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/commands/SetConfiguration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/Configuration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvBright.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvDark.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvLight.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvStatus.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/Status.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/params/EErrorCode.py +14 -4
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/params/ELastEvent.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/commands/Off.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/commands/On.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvClicked.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvHoldEnd.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvHoldStart.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvOff.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvOn.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/led/commands/Blink.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/led/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/led/commands/GetMinBrightness.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/led/commands/GetStatus.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/led/commands/Off.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/led/commands/On.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/led/commands/SetConfiguration.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/led/commands/SetMinBrightness.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/led/data/Configuration.py +10 -10
- pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvBlink.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvCmdDelay.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvError.py +10 -9
- pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvOff.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvOn.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/led/data/MinBrightness.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/led/data/Status.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/led/params/EErrorCode.py +26 -0
- pyhausbus/de/hausbus/homeassistant/proxy/led/params/MOptions.py +61 -61
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/Blink.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/GetMinBrightness.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/GetStatus.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/Off.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/On.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/SetButtonConfiguration.py +10 -10
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/SetConfiguration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/SetLedConfiguration.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/SetMinBrightness.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/Configuration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/EvBlink.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/EvOff.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/EvOn.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/Status.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/EErrorCode.py +14 -4
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/EStatus.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/MEventMask.py +65 -65
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/MOptionMask.py +61 -61
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/MOptions.py +61 -61
- pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/commands/GetConfiguration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/commands/SetConfiguration.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/data/Configuration.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/params/ESensorType.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/pCA9555/_init_.py +1 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pCA9555/data/EvError.py +26 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pCA9555/data/_init_.py +1 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pCA9555/params/EErrorCode.py +28 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pCA9555/params/_init_.py +1 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Exec.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Quit.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/ReloadUserPlugin.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Restart.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/SetVariable.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Shutdown.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Standby.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/pCServer/data/EvOffline.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/pCServer/data/EvOnline.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands/Enable.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands/SetConfiguration.py +18 -10
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands/SetTargetValue.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data/Configuration.py +18 -10
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data/EvOff.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data/EvOn.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/params/EEnable.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/params/EErrorCode.py +15 -4
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/params/MOptions.py +96 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/_init_.py +1 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/commands/GetConfiguration.py +15 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/commands/GetStatus.py +15 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/commands/SetConfiguration.py +74 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/commands/_init_.py +1 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/Configuration.py +74 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/EvError.py +26 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/EvHigh.py +15 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/EvInRange.py +15 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/EvLow.py +15 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/EvStatus.py +33 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/Status.py +33 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/_init_.py +1 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/params/EErrorCode.py +40 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/params/ELastEvent.py +28 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/params/_init_.py +1 -0
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/commands/GetStatus.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/commands/SetConfiguration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/Configuration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvHighPower.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvLowPower.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvMediumPower.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvStatus.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/Status.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/params/EErrorCode.py +14 -4
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/params/ELastEvent.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/commands/GetLastData.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/commands/GetState.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/commands/SetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/Configuration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/EvConnected.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/EvData.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/LastData.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/State.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/params/EErrorCode.py +13 -4
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/params/EState.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/commands/GetStatus.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/commands/SetColor.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/commands/SetConfiguration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/data/Configuration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/data/EvOff.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/data/EvOn.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/data/Status.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/GetStatus.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/MoveToPosition.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/SetConfiguration.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/SetPosition.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/Start.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/Stop.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/Configuration.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvClosed.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvNewMainState.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvNewSubState.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvOpen.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvStart.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/Status.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/params/EDirection.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/params/EErrorCode.py +14 -4
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/params/ENewState.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/params/MOptions.py +65 -65
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/GetStatus.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/Off.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/On.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/SetConfiguration.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/Toggle.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/ToggleByDuty.py +32 -0
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/Configuration.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvCmdDelay.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvDisabled.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvOff.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvOn.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvToggle.py +31 -7
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/Status.py +26 -12
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/params/EErrorCode.py +14 -4
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/params/EState.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/params/MOptions.py +61 -61
- pyhausbus/de/hausbus/homeassistant/proxy/systemTime/commands/GetTime.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/systemTime/commands/SetTime.py +10 -10
- pyhausbus/de/hausbus/homeassistant/proxy/systemTime/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/systemTime/data/Time.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/systemTime/params/EDate.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/systemTime/params/EErrorCode.py +13 -4
- pyhausbus/de/hausbus/homeassistant/proxy/systemTime/params/EMonth.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/systemTime/params/EWeekDay.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/EnableEvents.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/GetEnabled.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/GetStatus.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/SetConfiguration.py +10 -10
- pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/TriggerStatusEvent.py +15 -0
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/Configuration.py +10 -10
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/Enabled.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvClicked.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvCovered.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvDoubleClick.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvEnabled.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvError.py +10 -9
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvFree.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvHoldEnd.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvHoldStart.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/Status.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/taster/params/EEnable.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/taster/params/EErrorCode.py +27 -0
- pyhausbus/de/hausbus/homeassistant/proxy/taster/params/EState.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/taster/params/MEventMask.py +65 -65
- pyhausbus/de/hausbus/homeassistant/proxy/taster/params/MOptionMask.py +61 -61
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/commands/GetStatus.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/commands/SetConfiguration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/Configuration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvAbove.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvInRange.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvLow.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvStatus.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/Status.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/params/EErrorCode.py +14 -4
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/params/ELastEvent.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/commands/AnnounceServer.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/commands/GetCurrentIp.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/data/CurrentIp.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/data/EvWhoIsServer.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/commands/GetStatus.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/commands/SetConfiguration.py +8 -8
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/Configuration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvCold.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvHot.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvStatus.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvWarm.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/Status.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/params/EErrorCode.py +14 -4
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/params/ELastEvent.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/wetter/commands/GetWeather.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/wetter/data/Weather.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands/GetCurrentIp.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands/SetConfiguration.py +8 -8
- pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands/WakeUpDevice.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/wiFi/data/Configuration.py +8 -8
- pyhausbus/de/hausbus/homeassistant/proxy/wiFi/data/CurrentIp.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/wiFi/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/wiFi/params/EErrorCode.py +14 -4
- pyhausbus/templates/AR8_30_8-fach-Relaismodul.tpl +18 -0
- pyhausbus/templates/ESP32C3_69_WLAN-Steckdose.tpl +5 -0
- pyhausbus/templates/ESP32_00_4-fach-0-10V-Dimmer.tpl +14 -0
- pyhausbus/templates/ESP32_01_4-fach-1-10V-Dimmer.tpl +10 -0
- pyhausbus/templates/ESP32_04_4-fach-Relaismodul.tpl +12 -0
- pyhausbus/templates/ESP32_08_8-fach-Relaismodul.tpl +18 -0
- pyhausbus/templates/ESP32_0A_12-fach-Relaismodul.tpl +22 -0
- pyhausbus/templates/ESP32_0C_16-fach-Relaismodul.tpl +26 -0
- pyhausbus/templates/ESP32_0D_8-fach-Motormodul.tpl +18 -0
- pyhausbus/templates/ESP32_10_22-fach-UP-IO.tpl +29 -0
- pyhausbus/templates/ESP32_18_6-fach-Taster.tpl +33 -0
- pyhausbus/templates/ESP32_19_4-fach-Taster.tpl +29 -0
- pyhausbus/templates/ESP32_1A_2-fach-Taster.tpl +25 -0
- pyhausbus/templates/ESP32_1B_1-fach-Taster.tpl +23 -0
- pyhausbus/templates/ESP32_1C_6-fach-Taster.tpl +29 -0
- pyhausbus/templates/ESP32_20_32-fach-IO.tpl +39 -0
- pyhausbus/templates/ESP32_28_8-fach-Dimmer.tpl +18 -0
- pyhausbus/templates/ESP32_30_2-fach-RGB-Dimmer.tpl +17 -0
- pyhausbus/templates/ESP32_31_2-fach-RGB-Dimmer.tpl +17 -0
- pyhausbus/templates/ESP32_65_LAN-RS485-Brueckenmodul.tpl +1 -0
- pyhausbus/templates/ESP32_99_LocalBroadcastDevice.tpl +1 -0
- pyhausbus/templates/FckmMapping.def +1 -0
- pyhausbus/templates/HBC_00_4-fach-0-10V-Dimmer.tpl +10 -0
- pyhausbus/templates/HBC_01_4-fach-1-10V-Dimmer.tpl +10 -0
- pyhausbus/templates/HBC_08_8-fach-Relaismodul.tpl +18 -0
- pyhausbus/templates/HBC_0C_16-fach-Relaismodul.tpl +26 -0
- pyhausbus/templates/HBC_10_24-fach-UP-IO.tpl +31 -0
- pyhausbus/templates/HBC_18_6-fach-Taster.tpl +34 -0
- pyhausbus/templates/HBC_19_4-fach-Taster.tpl +28 -0
- pyhausbus/templates/HBC_1A_2-fach-Taster.tpl +24 -0
- pyhausbus/templates/HBC_1B_1-fach-Taster.tpl +22 -0
- pyhausbus/templates/HBC_1C_6-fach-Taster.tpl +33 -0
- pyhausbus/templates/HBC_1D_4-fach-Taster.tpl +29 -0
- pyhausbus/templates/HBC_1E_2-fach-Taster.tpl +29 -0
- pyhausbus/templates/HBC_1F_1-fach-Taster.tpl +27 -0
- pyhausbus/templates/HBC_20_32-fach-IO.tpl +39 -0
- pyhausbus/templates/HBC_29_8-fach-Dimmer.tpl +18 -0
- pyhausbus/templates/HBC_30_2-fach-RGB-Dimmer.tpl +17 -0
- pyhausbus/templates/LoxoneHausBusMapping.txt +80 -0
- pyhausbus/templates/LoxoneModuleMapping.txt +11 -0
- pyhausbus/templates/SD485_1E_6-fach-Taster.tpl +30 -0
- pyhausbus/templates/SD485_28_24-fach-UP-IO.tpl +31 -0
- pyhausbus/templates/SD485_29_1-fach-Taster.tpl +24 -0
- pyhausbus/templates/SD485_2A_2-fach-Taster.tpl +26 -0
- pyhausbus/templates/SD485_2C_4-fach-Taster.tpl +26 -0
- pyhausbus/templates/SD485_2E_6-fach-Taster.tpl +30 -0
- pyhausbus/templates/SD485_2F_6-fach-Taster.tpl +30 -0
- pyhausbus/templates/SD6_14_Multitaster.tpl +26 -0
- pyhausbus/templates/SD6_1E_Multitaster.tpl +26 -0
- pyhausbus/templates/classMapping.def +9 -0
- pyhausbus/templates/deviceTypes.def +47 -0
- {pyhausbus-1.0.1.dist-info → pyhausbus-1.0.3.dist-info}/LICENSE +21 -21
- {pyhausbus-1.0.1.dist-info → pyhausbus-1.0.3.dist-info}/METADATA +2 -1
- pyhausbus-1.0.3.dist-info/RECORD +639 -0
- {pyhausbus-1.0.1.dist-info → pyhausbus-1.0.3.dist-info}/WHEEL +1 -1
- pyhausbus/HausBusDevice.py +0 -70
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/BusTiming.py +0 -25
- pyhausbus-1.0.1.dist-info/RECORD +0 -526
@@ -1,79 +1,80 @@
|
|
1
|
-
|
2
|
-
from pyhausbus.HausBusCommand import HausBusCommand
|
3
|
-
from pyhausbus.ABusFeature import *
|
4
|
-
from pyhausbus.ResultWorker import ResultWorker
|
5
|
-
import pyhausbus.HausBusUtils as HausBusUtils
|
6
|
-
from pyhausbus.de.hausbus.homeassistant.proxy.taster.params.EState import EState
|
7
|
-
from pyhausbus.de.hausbus.homeassistant.proxy.taster.data.Configuration import Configuration
|
8
|
-
from pyhausbus.de.hausbus.homeassistant.proxy.taster.params.MEventMask import MEventMask
|
9
|
-
from pyhausbus.de.hausbus.homeassistant.proxy.taster.params.MOptionMask import MOptionMask
|
10
|
-
from pyhausbus.de.hausbus.homeassistant.proxy.taster.params.
|
11
|
-
from pyhausbus.de.hausbus.homeassistant.proxy.taster.
|
12
|
-
from pyhausbus.de.hausbus.homeassistant.proxy.taster.data.
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
1
|
+
import logging
|
2
|
+
from pyhausbus.HausBusCommand import HausBusCommand
|
3
|
+
from pyhausbus.ABusFeature import *
|
4
|
+
from pyhausbus.ResultWorker import ResultWorker
|
5
|
+
import pyhausbus.HausBusUtils as HausBusUtils
|
6
|
+
from pyhausbus.de.hausbus.homeassistant.proxy.taster.params.EState import EState
|
7
|
+
from pyhausbus.de.hausbus.homeassistant.proxy.taster.data.Configuration import Configuration
|
8
|
+
from pyhausbus.de.hausbus.homeassistant.proxy.taster.params.MEventMask import MEventMask
|
9
|
+
from pyhausbus.de.hausbus.homeassistant.proxy.taster.params.MOptionMask import MOptionMask
|
10
|
+
from pyhausbus.de.hausbus.homeassistant.proxy.taster.params.EErrorCode import EErrorCode
|
11
|
+
from pyhausbus.de.hausbus.homeassistant.proxy.taster.params.EEnable import EEnable
|
12
|
+
from pyhausbus.de.hausbus.homeassistant.proxy.taster.data.Status import Status
|
13
|
+
from pyhausbus.de.hausbus.homeassistant.proxy.taster.data.Enabled import Enabled
|
14
|
+
|
15
|
+
class Taster(ABusFeature):
|
16
|
+
CLASS_ID:int = 16
|
17
|
+
|
18
|
+
def __init__ (self,objectId:int):
|
19
|
+
super().__init__(objectId)
|
20
|
+
|
20
21
|
@staticmethod
|
21
22
|
def create(deviceId:int, instanceId:int):
|
22
|
-
return Taster(HausBusUtils.getObjectId(deviceId, 16, instanceId))
|
23
|
-
|
23
|
+
return Taster(HausBusUtils.getObjectId(deviceId, 16, instanceId))
|
24
|
+
|
24
25
|
"""
|
25
26
|
@param state .
|
26
27
|
"""
|
27
|
-
def evClicked(self, state:EState):
|
28
|
-
|
29
|
-
hbCommand = HausBusCommand(self.objectId, 201, "evClicked")
|
28
|
+
def evClicked(self, state:EState):
|
29
|
+
logging.info("evClicked"+" state = "+str(state))
|
30
|
+
hbCommand = HausBusCommand(self.objectId, 201, "evClicked")
|
30
31
|
hbCommand.addByte(state.value)
|
31
32
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
32
|
-
hbCommand.send()
|
33
|
-
|
34
|
-
|
33
|
+
hbCommand.send()
|
34
|
+
logging.info("returns")
|
35
|
+
|
35
36
|
"""
|
36
37
|
@param state .
|
37
38
|
"""
|
38
|
-
def evDoubleClick(self, state:EState):
|
39
|
-
|
40
|
-
hbCommand = HausBusCommand(self.objectId, 202, "evDoubleClick")
|
39
|
+
def evDoubleClick(self, state:EState):
|
40
|
+
logging.info("evDoubleClick"+" state = "+str(state))
|
41
|
+
hbCommand = HausBusCommand(self.objectId, 202, "evDoubleClick")
|
41
42
|
hbCommand.addByte(state.value)
|
42
43
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
43
|
-
hbCommand.send()
|
44
|
-
|
45
|
-
|
44
|
+
hbCommand.send()
|
45
|
+
logging.info("returns")
|
46
|
+
|
46
47
|
"""
|
47
48
|
@param state .
|
48
49
|
"""
|
49
|
-
def evHoldStart(self, state:EState):
|
50
|
-
|
51
|
-
hbCommand = HausBusCommand(self.objectId, 203, "evHoldStart")
|
50
|
+
def evHoldStart(self, state:EState):
|
51
|
+
logging.info("evHoldStart"+" state = "+str(state))
|
52
|
+
hbCommand = HausBusCommand(self.objectId, 203, "evHoldStart")
|
52
53
|
hbCommand.addByte(state.value)
|
53
54
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
54
|
-
hbCommand.send()
|
55
|
-
|
56
|
-
|
55
|
+
hbCommand.send()
|
56
|
+
logging.info("returns")
|
57
|
+
|
57
58
|
"""
|
58
59
|
@param state .
|
59
60
|
"""
|
60
|
-
def evHoldEnd(self, state:EState):
|
61
|
-
|
62
|
-
hbCommand = HausBusCommand(self.objectId, 204, "evHoldEnd")
|
61
|
+
def evHoldEnd(self, state:EState):
|
62
|
+
logging.info("evHoldEnd"+" state = "+str(state))
|
63
|
+
hbCommand = HausBusCommand(self.objectId, 204, "evHoldEnd")
|
63
64
|
hbCommand.addByte(state.value)
|
64
65
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
65
|
-
hbCommand.send()
|
66
|
-
|
67
|
-
|
66
|
+
hbCommand.send()
|
67
|
+
logging.info("returns")
|
68
|
+
|
68
69
|
"""
|
69
70
|
"""
|
70
|
-
def getConfiguration(self):
|
71
|
-
|
72
|
-
hbCommand = HausBusCommand(self.objectId, 0, "getConfiguration")
|
71
|
+
def getConfiguration(self):
|
72
|
+
logging.info("getConfiguration")
|
73
|
+
hbCommand = HausBusCommand(self.objectId, 0, "getConfiguration")
|
73
74
|
ResultWorker()._setResultInfo(Configuration,self.getObjectId())
|
74
|
-
hbCommand.send()
|
75
|
-
|
76
|
-
|
75
|
+
hbCommand.send()
|
76
|
+
logging.info("returns")
|
77
|
+
|
77
78
|
"""
|
78
79
|
@param holdTimeout Zeit a 10ms.
|
79
80
|
@param waitForDoubleClickTimeout Zeit a 10ms.
|
@@ -81,18 +82,18 @@ class Taster(ABusFeature):
|
|
81
82
|
@param optionMask 0: invertiert die Eingangslogik\r\n1: setzt den Initialzustand auf 0.
|
82
83
|
@param debounceTime EntprellZeit in ms 1-254\r\nStandard ist 40ms.
|
83
84
|
"""
|
84
|
-
def setConfiguration(self, holdTimeout:int, waitForDoubleClickTimeout:int, eventMask:MEventMask, optionMask:MOptionMask, debounceTime:int):
|
85
|
-
|
86
|
-
hbCommand = HausBusCommand(self.objectId, 1, "setConfiguration")
|
85
|
+
def setConfiguration(self, holdTimeout:int, waitForDoubleClickTimeout:int, eventMask:MEventMask, optionMask:MOptionMask, debounceTime:int):
|
86
|
+
logging.info("setConfiguration"+" holdTimeout = "+str(holdTimeout)+" waitForDoubleClickTimeout = "+str(waitForDoubleClickTimeout)+" eventMask = "+str(eventMask)+" optionMask = "+str(optionMask)+" debounceTime = "+str(debounceTime))
|
87
|
+
hbCommand = HausBusCommand(self.objectId, 1, "setConfiguration")
|
87
88
|
hbCommand.addByte(holdTimeout)
|
88
89
|
hbCommand.addByte(waitForDoubleClickTimeout)
|
89
90
|
hbCommand.addByte(eventMask.getValue())
|
90
91
|
hbCommand.addByte(optionMask.getValue())
|
91
92
|
hbCommand.addByte(debounceTime)
|
92
93
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
93
|
-
hbCommand.send()
|
94
|
-
|
95
|
-
|
94
|
+
hbCommand.send()
|
95
|
+
logging.info("returns")
|
96
|
+
|
96
97
|
"""
|
97
98
|
@param holdTimeout Zeit a 10ms.
|
98
99
|
@param waitForDoubleClickTimeout Zeit a 10ms.
|
@@ -100,113 +101,122 @@ class Taster(ABusFeature):
|
|
100
101
|
@param optionMask 0: invertiert die Eingangslogik\r\n1: setzt den Initialzustand auf 0.
|
101
102
|
@param debounceTime EntprellZeit in ms 1-254\r\nStandard ist 40ms.
|
102
103
|
"""
|
103
|
-
def Configuration(self, holdTimeout:int, waitForDoubleClickTimeout:int, eventMask:MEventMask, optionMask:MOptionMask, debounceTime:int):
|
104
|
-
|
105
|
-
hbCommand = HausBusCommand(self.objectId, 128, "Configuration")
|
104
|
+
def Configuration(self, holdTimeout:int, waitForDoubleClickTimeout:int, eventMask:MEventMask, optionMask:MOptionMask, debounceTime:int):
|
105
|
+
logging.info("Configuration"+" holdTimeout = "+str(holdTimeout)+" waitForDoubleClickTimeout = "+str(waitForDoubleClickTimeout)+" eventMask = "+str(eventMask)+" optionMask = "+str(optionMask)+" debounceTime = "+str(debounceTime))
|
106
|
+
hbCommand = HausBusCommand(self.objectId, 128, "Configuration")
|
106
107
|
hbCommand.addByte(holdTimeout)
|
107
108
|
hbCommand.addByte(waitForDoubleClickTimeout)
|
108
109
|
hbCommand.addByte(eventMask.getValue())
|
109
110
|
hbCommand.addByte(optionMask.getValue())
|
110
111
|
hbCommand.addByte(debounceTime)
|
111
112
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
112
|
-
hbCommand.send()
|
113
|
-
|
114
|
-
|
113
|
+
hbCommand.send()
|
114
|
+
logging.info("returns")
|
115
|
+
|
115
116
|
"""
|
116
117
|
@param state .
|
117
118
|
"""
|
118
|
-
def evCovered(self, state:EState):
|
119
|
-
|
120
|
-
hbCommand = HausBusCommand(self.objectId, 200, "evCovered")
|
119
|
+
def evCovered(self, state:EState):
|
120
|
+
logging.info("evCovered"+" state = "+str(state))
|
121
|
+
hbCommand = HausBusCommand(self.objectId, 200, "evCovered")
|
121
122
|
hbCommand.addByte(state.value)
|
122
123
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
123
|
-
hbCommand.send()
|
124
|
-
|
125
|
-
|
124
|
+
hbCommand.send()
|
125
|
+
logging.info("returns")
|
126
|
+
|
126
127
|
"""
|
127
128
|
@param state .
|
128
129
|
"""
|
129
|
-
def evFree(self, state:EState):
|
130
|
-
|
131
|
-
hbCommand = HausBusCommand(self.objectId, 205, "evFree")
|
130
|
+
def evFree(self, state:EState):
|
131
|
+
logging.info("evFree"+" state = "+str(state))
|
132
|
+
hbCommand = HausBusCommand(self.objectId, 205, "evFree")
|
132
133
|
hbCommand.addByte(state.value)
|
133
134
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
134
|
-
hbCommand.send()
|
135
|
-
|
136
|
-
|
135
|
+
hbCommand.send()
|
136
|
+
logging.info("returns")
|
137
|
+
|
137
138
|
"""
|
138
139
|
@param errorCode .
|
139
140
|
"""
|
140
|
-
def evError(self, errorCode:
|
141
|
-
|
142
|
-
hbCommand = HausBusCommand(self.objectId, 255, "evError")
|
143
|
-
hbCommand.addByte(errorCode)
|
141
|
+
def evError(self, errorCode:EErrorCode):
|
142
|
+
logging.info("evError"+" errorCode = "+str(errorCode))
|
143
|
+
hbCommand = HausBusCommand(self.objectId, 255, "evError")
|
144
|
+
hbCommand.addByte(errorCode.value)
|
144
145
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
145
|
-
hbCommand.send()
|
146
|
-
|
147
|
-
|
146
|
+
hbCommand.send()
|
147
|
+
logging.info("returns")
|
148
|
+
|
148
149
|
"""
|
149
150
|
@param enable FALSE: Deaktiviert das Versenden von Events\r\nTRUE: Aktiviert das Versenden von Events\r\nINVERT: Invertiert das aktuelle Verhalten.
|
150
151
|
@param disabledDuration Zeit1s-255s f? ? ? ?r die die Events deaktiviert werden sollen 0 = unendlich \r\nDieser Parameter wirkt nur.
|
151
152
|
"""
|
152
|
-
def enableEvents(self, enable:EEnable, disabledDuration:int):
|
153
|
-
|
154
|
-
hbCommand = HausBusCommand(self.objectId, 2, "enableEvents")
|
153
|
+
def enableEvents(self, enable:EEnable, disabledDuration:int):
|
154
|
+
logging.info("enableEvents"+" enable = "+str(enable)+" disabledDuration = "+str(disabledDuration))
|
155
|
+
hbCommand = HausBusCommand(self.objectId, 2, "enableEvents")
|
155
156
|
hbCommand.addByte(enable.value)
|
156
157
|
hbCommand.addByte(disabledDuration)
|
157
158
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
158
|
-
hbCommand.send()
|
159
|
-
|
160
|
-
|
159
|
+
hbCommand.send()
|
160
|
+
logging.info("returns")
|
161
|
+
|
161
162
|
"""
|
162
163
|
"""
|
163
|
-
def getStatus(self):
|
164
|
-
|
165
|
-
hbCommand = HausBusCommand(self.objectId, 3, "getStatus")
|
164
|
+
def getStatus(self):
|
165
|
+
logging.info("getStatus")
|
166
|
+
hbCommand = HausBusCommand(self.objectId, 3, "getStatus")
|
166
167
|
ResultWorker()._setResultInfo(Status,self.getObjectId())
|
167
|
-
hbCommand.send()
|
168
|
-
|
169
|
-
|
168
|
+
hbCommand.send()
|
169
|
+
logging.info("returns")
|
170
|
+
|
170
171
|
"""
|
171
172
|
@param state .
|
172
173
|
"""
|
173
|
-
def Status(self, state:EState):
|
174
|
-
|
175
|
-
hbCommand = HausBusCommand(self.objectId, 129, "Status")
|
174
|
+
def Status(self, state:EState):
|
175
|
+
logging.info("Status"+" state = "+str(state))
|
176
|
+
hbCommand = HausBusCommand(self.objectId, 129, "Status")
|
176
177
|
hbCommand.addByte(state.value)
|
177
178
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
178
|
-
hbCommand.send()
|
179
|
-
|
180
|
-
|
179
|
+
hbCommand.send()
|
180
|
+
logging.info("returns")
|
181
|
+
|
181
182
|
"""
|
182
183
|
@param enabled 0: Events wurden gerade deaktiviert\r\n1: Events wurden gerade aktiviert.
|
183
184
|
"""
|
184
|
-
def evEnabled(self, enabled:int):
|
185
|
-
|
186
|
-
hbCommand = HausBusCommand(self.objectId, 206, "evEnabled")
|
185
|
+
def evEnabled(self, enabled:int):
|
186
|
+
logging.info("evEnabled"+" enabled = "+str(enabled))
|
187
|
+
hbCommand = HausBusCommand(self.objectId, 206, "evEnabled")
|
187
188
|
hbCommand.addByte(enabled)
|
188
189
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
189
|
-
hbCommand.send()
|
190
|
-
|
191
|
-
|
190
|
+
hbCommand.send()
|
191
|
+
logging.info("returns")
|
192
|
+
|
192
193
|
"""
|
193
194
|
@param enabled 0: Events sind deaktviert\r\n1: Events sind aktiviert.
|
194
195
|
"""
|
195
|
-
def Enabled(self, enabled:int):
|
196
|
-
|
197
|
-
hbCommand = HausBusCommand(self.objectId, 130, "Enabled")
|
196
|
+
def Enabled(self, enabled:int):
|
197
|
+
logging.info("Enabled"+" enabled = "+str(enabled))
|
198
|
+
hbCommand = HausBusCommand(self.objectId, 130, "Enabled")
|
198
199
|
hbCommand.addByte(enabled)
|
199
200
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
200
|
-
hbCommand.send()
|
201
|
-
|
202
|
-
|
201
|
+
hbCommand.send()
|
202
|
+
logging.info("returns")
|
203
|
+
|
203
204
|
"""
|
204
205
|
"""
|
205
|
-
def getEnabled(self):
|
206
|
-
|
207
|
-
hbCommand = HausBusCommand(self.objectId, 4, "getEnabled")
|
206
|
+
def getEnabled(self):
|
207
|
+
logging.info("getEnabled")
|
208
|
+
hbCommand = HausBusCommand(self.objectId, 4, "getEnabled")
|
208
209
|
ResultWorker()._setResultInfo(Enabled,self.getObjectId())
|
209
|
-
hbCommand.send()
|
210
|
-
|
211
|
-
|
210
|
+
hbCommand.send()
|
211
|
+
logging.info("returns")
|
212
|
+
|
213
|
+
"""
|
214
|
+
"""
|
215
|
+
def triggerStatusEvent(self):
|
216
|
+
logging.info("triggerStatusEvent")
|
217
|
+
hbCommand = HausBusCommand(self.objectId, 5, "triggerStatusEvent")
|
218
|
+
ResultWorker()._setResultInfo(None,self.getObjectId())
|
219
|
+
hbCommand.send()
|
220
|
+
logging.info("returns")
|
221
|
+
|
212
222
|
|
@@ -1,70 +1,70 @@
|
|
1
|
-
|
2
|
-
from pyhausbus.HausBusCommand import HausBusCommand
|
3
|
-
from pyhausbus.ABusFeature import *
|
4
|
-
from pyhausbus.ResultWorker import ResultWorker
|
5
|
-
import pyhausbus.HausBusUtils as HausBusUtils
|
6
|
-
from pyhausbus.de.hausbus.homeassistant.proxy.taupunkt.params.EErrorCode import EErrorCode
|
7
|
-
from pyhausbus.de.hausbus.homeassistant.proxy.taupunkt.data.Configuration import Configuration
|
8
|
-
from pyhausbus.de.hausbus.homeassistant.proxy.taupunkt.data.Status import Status
|
9
|
-
from pyhausbus.de.hausbus.homeassistant.proxy.taupunkt.params.ELastEvent import ELastEvent
|
10
|
-
|
11
|
-
class Taupunkt(ABusFeature):
|
12
|
-
CLASS_ID:int = 42
|
13
|
-
|
14
|
-
def __init__ (self,objectId:int):
|
15
|
-
super().__init__(objectId)
|
1
|
+
import logging
|
2
|
+
from pyhausbus.HausBusCommand import HausBusCommand
|
3
|
+
from pyhausbus.ABusFeature import *
|
4
|
+
from pyhausbus.ResultWorker import ResultWorker
|
5
|
+
import pyhausbus.HausBusUtils as HausBusUtils
|
6
|
+
from pyhausbus.de.hausbus.homeassistant.proxy.taupunkt.params.EErrorCode import EErrorCode
|
7
|
+
from pyhausbus.de.hausbus.homeassistant.proxy.taupunkt.data.Configuration import Configuration
|
8
|
+
from pyhausbus.de.hausbus.homeassistant.proxy.taupunkt.data.Status import Status
|
9
|
+
from pyhausbus.de.hausbus.homeassistant.proxy.taupunkt.params.ELastEvent import ELastEvent
|
16
10
|
|
11
|
+
class Taupunkt(ABusFeature):
|
12
|
+
CLASS_ID:int = 42
|
13
|
+
|
14
|
+
def __init__ (self,objectId:int):
|
15
|
+
super().__init__(objectId)
|
16
|
+
|
17
17
|
@staticmethod
|
18
18
|
def create(deviceId:int, instanceId:int):
|
19
|
-
return Taupunkt(HausBusUtils.getObjectId(deviceId, 42, instanceId))
|
20
|
-
|
19
|
+
return Taupunkt(HausBusUtils.getObjectId(deviceId, 42, instanceId))
|
20
|
+
|
21
21
|
"""
|
22
22
|
"""
|
23
|
-
def evLow(self):
|
24
|
-
|
25
|
-
hbCommand = HausBusCommand(self.objectId, 200, "evLow")
|
23
|
+
def evLow(self):
|
24
|
+
logging.info("evLow")
|
25
|
+
hbCommand = HausBusCommand(self.objectId, 200, "evLow")
|
26
26
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
27
|
-
hbCommand.send()
|
28
|
-
|
29
|
-
|
27
|
+
hbCommand.send()
|
28
|
+
logging.info("returns")
|
29
|
+
|
30
30
|
"""
|
31
31
|
"""
|
32
|
-
def evInRange(self):
|
33
|
-
|
34
|
-
hbCommand = HausBusCommand(self.objectId, 201, "evInRange")
|
32
|
+
def evInRange(self):
|
33
|
+
logging.info("evInRange")
|
34
|
+
hbCommand = HausBusCommand(self.objectId, 201, "evInRange")
|
35
35
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
36
|
-
hbCommand.send()
|
37
|
-
|
38
|
-
|
36
|
+
hbCommand.send()
|
37
|
+
logging.info("returns")
|
38
|
+
|
39
39
|
"""
|
40
40
|
"""
|
41
|
-
def evAbove(self):
|
42
|
-
|
43
|
-
hbCommand = HausBusCommand(self.objectId, 202, "evAbove")
|
41
|
+
def evAbove(self):
|
42
|
+
logging.info("evAbove")
|
43
|
+
hbCommand = HausBusCommand(self.objectId, 202, "evAbove")
|
44
44
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
45
|
-
hbCommand.send()
|
46
|
-
|
47
|
-
|
45
|
+
hbCommand.send()
|
46
|
+
logging.info("returns")
|
47
|
+
|
48
48
|
"""
|
49
49
|
@param errorCode .
|
50
50
|
"""
|
51
|
-
def evError(self, errorCode:EErrorCode):
|
52
|
-
|
53
|
-
hbCommand = HausBusCommand(self.objectId, 255, "evError")
|
51
|
+
def evError(self, errorCode:EErrorCode):
|
52
|
+
logging.info("evError"+" errorCode = "+str(errorCode))
|
53
|
+
hbCommand = HausBusCommand(self.objectId, 255, "evError")
|
54
54
|
hbCommand.addByte(errorCode.value)
|
55
55
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
56
|
-
hbCommand.send()
|
57
|
-
|
58
|
-
|
56
|
+
hbCommand.send()
|
57
|
+
logging.info("returns")
|
58
|
+
|
59
59
|
"""
|
60
60
|
"""
|
61
|
-
def getConfiguration(self):
|
62
|
-
|
63
|
-
hbCommand = HausBusCommand(self.objectId, 0, "getConfiguration")
|
61
|
+
def getConfiguration(self):
|
62
|
+
logging.info("getConfiguration")
|
63
|
+
hbCommand = HausBusCommand(self.objectId, 0, "getConfiguration")
|
64
64
|
ResultWorker()._setResultInfo(Configuration,self.getObjectId())
|
65
|
-
hbCommand.send()
|
66
|
-
|
67
|
-
|
65
|
+
hbCommand.send()
|
66
|
+
logging.info("returns")
|
67
|
+
|
68
68
|
"""
|
69
69
|
@param lowerThreshold untere Taupunktschwelle.
|
70
70
|
@param lowerThresholdFraction Nachkommastellen der unteren Taupunktschwelle[00-99].
|
@@ -77,9 +77,9 @@ class Taupunkt(ABusFeature):
|
|
77
77
|
@param calibration Dieser Wert wird verwendet um die vom Sensor gelieferten Messwerte zu justieren. [1/10 Prozent].
|
78
78
|
@param deltaSensorID Die InstanceID des Sensors auf diesem Controller.
|
79
79
|
"""
|
80
|
-
def setConfiguration(self, lowerThreshold:int, lowerThresholdFraction:int, upperThreshold:int, upperThresholdFraction:int, reportTimeBase:int, minReportTime:int, maxReportTime:int, hysteresis:int, calibration:int, deltaSensorID:int):
|
81
|
-
|
82
|
-
hbCommand = HausBusCommand(self.objectId, 1, "setConfiguration")
|
80
|
+
def setConfiguration(self, lowerThreshold:int, lowerThresholdFraction:int, upperThreshold:int, upperThresholdFraction:int, reportTimeBase:int, minReportTime:int, maxReportTime:int, hysteresis:int, calibration:int, deltaSensorID:int):
|
81
|
+
logging.info("setConfiguration"+" lowerThreshold = "+str(lowerThreshold)+" lowerThresholdFraction = "+str(lowerThresholdFraction)+" upperThreshold = "+str(upperThreshold)+" upperThresholdFraction = "+str(upperThresholdFraction)+" reportTimeBase = "+str(reportTimeBase)+" minReportTime = "+str(minReportTime)+" maxReportTime = "+str(maxReportTime)+" hysteresis = "+str(hysteresis)+" calibration = "+str(calibration)+" deltaSensorID = "+str(deltaSensorID))
|
82
|
+
hbCommand = HausBusCommand(self.objectId, 1, "setConfiguration")
|
83
83
|
hbCommand.addSByte(lowerThreshold)
|
84
84
|
hbCommand.addSByte(lowerThresholdFraction)
|
85
85
|
hbCommand.addSByte(upperThreshold)
|
@@ -91,18 +91,18 @@ class Taupunkt(ABusFeature):
|
|
91
91
|
hbCommand.addSByte(calibration)
|
92
92
|
hbCommand.addByte(deltaSensorID)
|
93
93
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
94
|
-
hbCommand.send()
|
95
|
-
|
96
|
-
|
94
|
+
hbCommand.send()
|
95
|
+
logging.info("returns")
|
96
|
+
|
97
97
|
"""
|
98
98
|
"""
|
99
|
-
def getStatus(self):
|
100
|
-
|
101
|
-
hbCommand = HausBusCommand(self.objectId, 2, "getStatus")
|
99
|
+
def getStatus(self):
|
100
|
+
logging.info("getStatus")
|
101
|
+
hbCommand = HausBusCommand(self.objectId, 2, "getStatus")
|
102
102
|
ResultWorker()._setResultInfo(Status,self.getObjectId())
|
103
|
-
hbCommand.send()
|
104
|
-
|
105
|
-
|
103
|
+
hbCommand.send()
|
104
|
+
logging.info("returns")
|
105
|
+
|
106
106
|
"""
|
107
107
|
@param lowerThreshold untere Taupunktschwelle.
|
108
108
|
@param lowerThresholdFraction Nachkommastellen der unteren Taupunktschwelle[00-99].
|
@@ -115,9 +115,9 @@ class Taupunkt(ABusFeature):
|
|
115
115
|
@param calibration Dieser Wert wird verwendet um die vom Sensor gelieferten Messwerte zu justieren. [1/10 Prozent].
|
116
116
|
@param deltaSensorID Die InstanceID des Sensors auf diesem Controller.
|
117
117
|
"""
|
118
|
-
def Configuration(self, lowerThreshold:int, lowerThresholdFraction:int, upperThreshold:int, upperThresholdFraction:int, reportTimeBase:int, minReportTime:int, maxReportTime:int, hysteresis:int, calibration:int, deltaSensorID:int):
|
119
|
-
|
120
|
-
hbCommand = HausBusCommand(self.objectId, 128, "Configuration")
|
118
|
+
def Configuration(self, lowerThreshold:int, lowerThresholdFraction:int, upperThreshold:int, upperThresholdFraction:int, reportTimeBase:int, minReportTime:int, maxReportTime:int, hysteresis:int, calibration:int, deltaSensorID:int):
|
119
|
+
logging.info("Configuration"+" lowerThreshold = "+str(lowerThreshold)+" lowerThresholdFraction = "+str(lowerThresholdFraction)+" upperThreshold = "+str(upperThreshold)+" upperThresholdFraction = "+str(upperThresholdFraction)+" reportTimeBase = "+str(reportTimeBase)+" minReportTime = "+str(minReportTime)+" maxReportTime = "+str(maxReportTime)+" hysteresis = "+str(hysteresis)+" calibration = "+str(calibration)+" deltaSensorID = "+str(deltaSensorID))
|
120
|
+
hbCommand = HausBusCommand(self.objectId, 128, "Configuration")
|
121
121
|
hbCommand.addSByte(lowerThreshold)
|
122
122
|
hbCommand.addSByte(lowerThresholdFraction)
|
123
123
|
hbCommand.addSByte(upperThreshold)
|
@@ -129,37 +129,37 @@ class Taupunkt(ABusFeature):
|
|
129
129
|
hbCommand.addSByte(calibration)
|
130
130
|
hbCommand.addByte(deltaSensorID)
|
131
131
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
132
|
-
hbCommand.send()
|
133
|
-
|
134
|
-
|
132
|
+
hbCommand.send()
|
133
|
+
logging.info("returns")
|
134
|
+
|
135
135
|
"""
|
136
136
|
@param celsius Grad Celsius.
|
137
137
|
@param centiCelsius hundertstel Grad Celsius.
|
138
138
|
@param lastEvent .
|
139
139
|
"""
|
140
|
-
def evStatus(self, celsius:int, centiCelsius:int, lastEvent:ELastEvent):
|
141
|
-
|
142
|
-
hbCommand = HausBusCommand(self.objectId, 203, "evStatus")
|
140
|
+
def evStatus(self, celsius:int, centiCelsius:int, lastEvent:ELastEvent):
|
141
|
+
logging.info("evStatus"+" celsius = "+str(celsius)+" centiCelsius = "+str(centiCelsius)+" lastEvent = "+str(lastEvent))
|
142
|
+
hbCommand = HausBusCommand(self.objectId, 203, "evStatus")
|
143
143
|
hbCommand.addSByte(celsius)
|
144
144
|
hbCommand.addSByte(centiCelsius)
|
145
145
|
hbCommand.addByte(lastEvent.value)
|
146
146
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
147
|
-
hbCommand.send()
|
148
|
-
|
149
|
-
|
147
|
+
hbCommand.send()
|
148
|
+
logging.info("returns")
|
149
|
+
|
150
150
|
"""
|
151
151
|
@param celsius Grad Celsius.
|
152
152
|
@param centiCelsius hundertstel Grad Celsius.
|
153
153
|
@param lastEvent .
|
154
154
|
"""
|
155
|
-
def Status(self, celsius:int, centiCelsius:int, lastEvent:ELastEvent):
|
156
|
-
|
157
|
-
hbCommand = HausBusCommand(self.objectId, 129, "Status")
|
155
|
+
def Status(self, celsius:int, centiCelsius:int, lastEvent:ELastEvent):
|
156
|
+
logging.info("Status"+" celsius = "+str(celsius)+" centiCelsius = "+str(centiCelsius)+" lastEvent = "+str(lastEvent))
|
157
|
+
hbCommand = HausBusCommand(self.objectId, 129, "Status")
|
158
158
|
hbCommand.addSByte(celsius)
|
159
159
|
hbCommand.addSByte(centiCelsius)
|
160
160
|
hbCommand.addByte(lastEvent.value)
|
161
161
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
162
|
-
hbCommand.send()
|
163
|
-
|
164
|
-
|
162
|
+
hbCommand.send()
|
163
|
+
logging.info("returns")
|
164
|
+
|
165
165
|
|