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,20 +1,20 @@
|
|
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.tcpClient.data.CurrentIp import CurrentIp
|
7
|
-
|
8
|
-
class TcpClient(ABusFeature):
|
9
|
-
CLASS_ID:int = 91
|
10
|
-
|
11
|
-
def __init__ (self,objectId:int):
|
12
|
-
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.tcpClient.data.CurrentIp import CurrentIp
|
13
7
|
|
8
|
+
class TcpClient(ABusFeature):
|
9
|
+
CLASS_ID:int = 91
|
10
|
+
|
11
|
+
def __init__ (self,objectId:int):
|
12
|
+
super().__init__(objectId)
|
13
|
+
|
14
14
|
@staticmethod
|
15
15
|
def create(deviceId:int, instanceId:int):
|
16
|
-
return TcpClient(HausBusUtils.getObjectId(deviceId, 91, instanceId))
|
17
|
-
|
16
|
+
return TcpClient(HausBusUtils.getObjectId(deviceId, 91, instanceId))
|
17
|
+
|
18
18
|
"""
|
19
19
|
@param IP0 .
|
20
20
|
@param IP1 .
|
@@ -22,51 +22,51 @@ class TcpClient(ABusFeature):
|
|
22
22
|
@param IP3 .
|
23
23
|
@param port .
|
24
24
|
"""
|
25
|
-
def announceServer(self, IP0:int, IP1:int, IP2:int, IP3:int, port:int):
|
26
|
-
|
27
|
-
hbCommand = HausBusCommand(self.objectId, 1, "announceServer")
|
25
|
+
def announceServer(self, IP0:int, IP1:int, IP2:int, IP3:int, port:int):
|
26
|
+
logging.info("announceServer"+" IP0 = "+str(IP0)+" IP1 = "+str(IP1)+" IP2 = "+str(IP2)+" IP3 = "+str(IP3)+" port = "+str(port))
|
27
|
+
hbCommand = HausBusCommand(self.objectId, 1, "announceServer")
|
28
28
|
hbCommand.addByte(IP0)
|
29
29
|
hbCommand.addByte(IP1)
|
30
30
|
hbCommand.addByte(IP2)
|
31
31
|
hbCommand.addByte(IP3)
|
32
32
|
hbCommand.addWord(port)
|
33
33
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
34
|
-
hbCommand.send()
|
35
|
-
|
36
|
-
|
34
|
+
hbCommand.send()
|
35
|
+
logging.info("returns")
|
36
|
+
|
37
37
|
"""
|
38
38
|
"""
|
39
|
-
def getCurrentIp(self):
|
40
|
-
|
41
|
-
hbCommand = HausBusCommand(self.objectId, 2, "getCurrentIp")
|
39
|
+
def getCurrentIp(self):
|
40
|
+
logging.info("getCurrentIp")
|
41
|
+
hbCommand = HausBusCommand(self.objectId, 2, "getCurrentIp")
|
42
42
|
ResultWorker()._setResultInfo(CurrentIp,self.getObjectId())
|
43
|
-
hbCommand.send()
|
44
|
-
|
45
|
-
|
43
|
+
hbCommand.send()
|
44
|
+
logging.info("returns")
|
45
|
+
|
46
46
|
"""
|
47
47
|
@param IP0 .
|
48
48
|
@param IP1 .
|
49
49
|
@param IP2 .
|
50
50
|
@param IP3 .
|
51
51
|
"""
|
52
|
-
def CurrentIp(self, IP0:int, IP1:int, IP2:int, IP3:int):
|
53
|
-
|
54
|
-
hbCommand = HausBusCommand(self.objectId, 128, "CurrentIp")
|
52
|
+
def CurrentIp(self, IP0:int, IP1:int, IP2:int, IP3:int):
|
53
|
+
logging.info("CurrentIp"+" IP0 = "+str(IP0)+" IP1 = "+str(IP1)+" IP2 = "+str(IP2)+" IP3 = "+str(IP3))
|
54
|
+
hbCommand = HausBusCommand(self.objectId, 128, "CurrentIp")
|
55
55
|
hbCommand.addByte(IP0)
|
56
56
|
hbCommand.addByte(IP1)
|
57
57
|
hbCommand.addByte(IP2)
|
58
58
|
hbCommand.addByte(IP3)
|
59
59
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
60
|
-
hbCommand.send()
|
61
|
-
|
62
|
-
|
60
|
+
hbCommand.send()
|
61
|
+
logging.info("returns")
|
62
|
+
|
63
63
|
"""
|
64
64
|
"""
|
65
|
-
def evWhoIsServer(self):
|
66
|
-
|
67
|
-
hbCommand = HausBusCommand(self.objectId, 200, "evWhoIsServer")
|
65
|
+
def evWhoIsServer(self):
|
66
|
+
logging.info("evWhoIsServer")
|
67
|
+
hbCommand = HausBusCommand(self.objectId, 200, "evWhoIsServer")
|
68
68
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
69
|
-
hbCommand.send()
|
70
|
-
|
71
|
-
|
69
|
+
hbCommand.send()
|
70
|
+
logging.info("returns")
|
71
|
+
|
72
72
|
|
@@ -1,59 +1,59 @@
|
|
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.temperatursensor.data.Configuration import Configuration
|
7
|
-
from pyhausbus.de.hausbus.homeassistant.proxy.temperatursensor.data.Status import Status
|
8
|
-
from pyhausbus.de.hausbus.homeassistant.proxy.temperatursensor.params.ELastEvent import ELastEvent
|
9
|
-
from pyhausbus.de.hausbus.homeassistant.proxy.temperatursensor.params.EErrorCode import EErrorCode
|
10
|
-
|
11
|
-
class Temperatursensor(ABusFeature):
|
12
|
-
CLASS_ID:int = 32
|
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.temperatursensor.data.Configuration import Configuration
|
7
|
+
from pyhausbus.de.hausbus.homeassistant.proxy.temperatursensor.data.Status import Status
|
8
|
+
from pyhausbus.de.hausbus.homeassistant.proxy.temperatursensor.params.ELastEvent import ELastEvent
|
9
|
+
from pyhausbus.de.hausbus.homeassistant.proxy.temperatursensor.params.EErrorCode import EErrorCode
|
16
10
|
|
11
|
+
class Temperatursensor(ABusFeature):
|
12
|
+
CLASS_ID:int = 32
|
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 Temperatursensor(HausBusUtils.getObjectId(deviceId, 32, instanceId))
|
20
|
-
|
19
|
+
return Temperatursensor(HausBusUtils.getObjectId(deviceId, 32, instanceId))
|
20
|
+
|
21
21
|
"""
|
22
22
|
"""
|
23
|
-
def evCold(self):
|
24
|
-
|
25
|
-
hbCommand = HausBusCommand(self.objectId, 200, "evCold")
|
23
|
+
def evCold(self):
|
24
|
+
logging.info("evCold")
|
25
|
+
hbCommand = HausBusCommand(self.objectId, 200, "evCold")
|
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 evWarm(self):
|
33
|
-
|
34
|
-
hbCommand = HausBusCommand(self.objectId, 201, "evWarm")
|
32
|
+
def evWarm(self):
|
33
|
+
logging.info("evWarm")
|
34
|
+
hbCommand = HausBusCommand(self.objectId, 201, "evWarm")
|
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 evHot(self):
|
42
|
-
|
43
|
-
hbCommand = HausBusCommand(self.objectId, 202, "evHot")
|
41
|
+
def evHot(self):
|
42
|
+
logging.info("evHot")
|
43
|
+
hbCommand = HausBusCommand(self.objectId, 202, "evHot")
|
44
44
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
45
|
-
hbCommand.send()
|
46
|
-
|
47
|
-
|
45
|
+
hbCommand.send()
|
46
|
+
logging.info("returns")
|
47
|
+
|
48
48
|
"""
|
49
49
|
"""
|
50
|
-
def getConfiguration(self):
|
51
|
-
|
52
|
-
hbCommand = HausBusCommand(self.objectId, 0, "getConfiguration")
|
50
|
+
def getConfiguration(self):
|
51
|
+
logging.info("getConfiguration")
|
52
|
+
hbCommand = HausBusCommand(self.objectId, 0, "getConfiguration")
|
53
53
|
ResultWorker()._setResultInfo(Configuration,self.getObjectId())
|
54
|
-
hbCommand.send()
|
55
|
-
|
56
|
-
|
54
|
+
hbCommand.send()
|
55
|
+
logging.info("returns")
|
56
|
+
|
57
57
|
"""
|
58
58
|
@param lowerThreshold untere Temperaturschwelle.
|
59
59
|
@param lowerThresholdFraction lowerThresholdFraction.
|
@@ -66,9 +66,9 @@ class Temperatursensor(ABusFeature):
|
|
66
66
|
@param calibration Dieser Wert wird verwendet um die vom Sensor gelieferten Messwerte zu justieren. [1/10 Grad].
|
67
67
|
@param deltaSensorID Die InstanceID des Sensors auf diesem Controller.
|
68
68
|
"""
|
69
|
-
def Configuration(self, lowerThreshold:int, lowerThresholdFraction:int, upperThreshold:int, upperThresholdFraction:int, reportTimeBase:int, minReportTime:int, maxReportTime:int, hysteresis:int, calibration:int, deltaSensorID:int):
|
70
|
-
|
71
|
-
hbCommand = HausBusCommand(self.objectId, 128, "Configuration")
|
69
|
+
def Configuration(self, lowerThreshold:int, lowerThresholdFraction:int, upperThreshold:int, upperThresholdFraction:int, reportTimeBase:int, minReportTime:int, maxReportTime:int, hysteresis:int, calibration:int, deltaSensorID:int):
|
70
|
+
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))
|
71
|
+
hbCommand = HausBusCommand(self.objectId, 128, "Configuration")
|
72
72
|
hbCommand.addSByte(lowerThreshold)
|
73
73
|
hbCommand.addSByte(lowerThresholdFraction)
|
74
74
|
hbCommand.addSByte(upperThreshold)
|
@@ -80,24 +80,24 @@ class Temperatursensor(ABusFeature):
|
|
80
80
|
hbCommand.addSByte(calibration)
|
81
81
|
hbCommand.addByte(deltaSensorID)
|
82
82
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
83
|
-
hbCommand.send()
|
84
|
-
|
85
|
-
|
83
|
+
hbCommand.send()
|
84
|
+
logging.info("returns")
|
85
|
+
|
86
86
|
"""
|
87
87
|
@param lowerThreshold untere Temperaturschwelle.
|
88
88
|
@param lowerThresholdFraction Nachkommastellen der unteren Temperaturschwelle [00-99].
|
89
89
|
@param upperThreshold obere Temperaturschwelle.
|
90
90
|
@param upperThresholdFraction Nachkommastellen der oberen Temperaturschwelle [00-99].
|
91
|
-
@param reportTimeBase Zeitbasis
|
91
|
+
@param reportTimeBase Zeitbasis fuer die Einstellungen von minReportTime und maxReportTime [s].
|
92
92
|
@param minReportTime Mindestzeit.
|
93
93
|
@param maxReportTime Maximalzeit.
|
94
94
|
@param hysteresis Hysterese [Wert * 0.
|
95
95
|
@param calibration Dieser Wert wird verwendet um die vom Sensor gelieferten Messwerte zu justieren. [1/10 Grad].
|
96
96
|
@param deltaSensorID Die InstanceID des Sensors auf diesem Controller.
|
97
97
|
"""
|
98
|
-
def setConfiguration(self, lowerThreshold:int, lowerThresholdFraction:int, upperThreshold:int, upperThresholdFraction:int, reportTimeBase:int, minReportTime:int, maxReportTime:int, hysteresis:int, calibration:int, deltaSensorID:int):
|
99
|
-
|
100
|
-
hbCommand = HausBusCommand(self.objectId, 1, "setConfiguration")
|
98
|
+
def setConfiguration(self, lowerThreshold:int, lowerThresholdFraction:int, upperThreshold:int, upperThresholdFraction:int, reportTimeBase:int, minReportTime:int, maxReportTime:int, hysteresis:int, calibration:int, deltaSensorID:int):
|
99
|
+
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))
|
100
|
+
hbCommand = HausBusCommand(self.objectId, 1, "setConfiguration")
|
101
101
|
hbCommand.addSByte(lowerThreshold)
|
102
102
|
hbCommand.addSByte(lowerThresholdFraction)
|
103
103
|
hbCommand.addSByte(upperThreshold)
|
@@ -109,57 +109,57 @@ class Temperatursensor(ABusFeature):
|
|
109
109
|
hbCommand.addSByte(calibration)
|
110
110
|
hbCommand.addByte(deltaSensorID)
|
111
111
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
112
|
-
hbCommand.send()
|
113
|
-
|
114
|
-
|
112
|
+
hbCommand.send()
|
113
|
+
logging.info("returns")
|
114
|
+
|
115
115
|
"""
|
116
116
|
"""
|
117
|
-
def getStatus(self):
|
118
|
-
|
119
|
-
hbCommand = HausBusCommand(self.objectId, 2, "getStatus")
|
117
|
+
def getStatus(self):
|
118
|
+
logging.info("getStatus")
|
119
|
+
hbCommand = HausBusCommand(self.objectId, 2, "getStatus")
|
120
120
|
ResultWorker()._setResultInfo(Status,self.getObjectId())
|
121
|
-
hbCommand.send()
|
122
|
-
|
123
|
-
|
121
|
+
hbCommand.send()
|
122
|
+
logging.info("returns")
|
123
|
+
|
124
124
|
"""
|
125
125
|
@param celsius Grad Celsius.
|
126
126
|
@param centiCelsius hundertstel Grad Celsius.
|
127
127
|
@param lastEvent .
|
128
128
|
"""
|
129
|
-
def evStatus(self, celsius:int, centiCelsius:int, lastEvent:ELastEvent):
|
130
|
-
|
131
|
-
hbCommand = HausBusCommand(self.objectId, 203, "evStatus")
|
129
|
+
def evStatus(self, celsius:int, centiCelsius:int, lastEvent:ELastEvent):
|
130
|
+
logging.info("evStatus"+" celsius = "+str(celsius)+" centiCelsius = "+str(centiCelsius)+" lastEvent = "+str(lastEvent))
|
131
|
+
hbCommand = HausBusCommand(self.objectId, 203, "evStatus")
|
132
132
|
hbCommand.addSByte(celsius)
|
133
133
|
hbCommand.addSByte(centiCelsius)
|
134
134
|
hbCommand.addByte(lastEvent.value)
|
135
135
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
136
|
-
hbCommand.send()
|
137
|
-
|
138
|
-
|
136
|
+
hbCommand.send()
|
137
|
+
logging.info("returns")
|
138
|
+
|
139
139
|
"""
|
140
140
|
@param errorCode .
|
141
141
|
"""
|
142
|
-
def evError(self, errorCode:EErrorCode):
|
143
|
-
|
144
|
-
hbCommand = HausBusCommand(self.objectId, 255, "evError")
|
142
|
+
def evError(self, errorCode:EErrorCode):
|
143
|
+
logging.info("evError"+" errorCode = "+str(errorCode))
|
144
|
+
hbCommand = HausBusCommand(self.objectId, 255, "evError")
|
145
145
|
hbCommand.addByte(errorCode.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
|
|
@@ -1,29 +1,29 @@
|
|
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.WeekTime import WeekTime
|
7
|
-
|
8
|
-
class Wetter(ABusFeature):
|
9
|
-
CLASS_ID:int = 2
|
10
|
-
|
11
|
-
def __init__ (self,objectId:int):
|
12
|
-
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.WeekTime import WeekTime
|
13
7
|
|
8
|
+
class Wetter(ABusFeature):
|
9
|
+
CLASS_ID:int = 2
|
10
|
+
|
11
|
+
def __init__ (self,objectId:int):
|
12
|
+
super().__init__(objectId)
|
13
|
+
|
14
14
|
@staticmethod
|
15
15
|
def create(deviceId:int, instanceId:int):
|
16
|
-
return Wetter(HausBusUtils.getObjectId(deviceId, 2, instanceId))
|
17
|
-
|
16
|
+
return Wetter(HausBusUtils.getObjectId(deviceId, 2, instanceId))
|
17
|
+
|
18
18
|
"""
|
19
19
|
"""
|
20
|
-
def getWeather(self):
|
21
|
-
|
22
|
-
hbCommand = HausBusCommand(self.objectId, 5, "getWeather")
|
20
|
+
def getWeather(self):
|
21
|
+
logging.info("getWeather")
|
22
|
+
hbCommand = HausBusCommand(self.objectId, 5, "getWeather")
|
23
23
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
24
|
-
hbCommand.send()
|
25
|
-
|
26
|
-
|
24
|
+
hbCommand.send()
|
25
|
+
logging.info("returns")
|
26
|
+
|
27
27
|
"""
|
28
28
|
@param humidity Luftfeuchtigkeit.
|
29
29
|
@param pressure Luftdruck.
|
@@ -34,9 +34,9 @@ class Wetter(ABusFeature):
|
|
34
34
|
"""
|
35
35
|
def weather(self, humidity:int, pressure:int, temp:int, sunrise:WeekTime=None
|
36
36
|
, sunset:WeekTime=None
|
37
|
-
, text:str):
|
38
|
-
|
39
|
-
hbCommand = HausBusCommand(self.objectId, 128, "weather")
|
37
|
+
, text:str):
|
38
|
+
logging.info("weather"+" humidity = "+str(humidity)+" pressure = "+str(pressure)+" temp = "+str(temp)+" sunrise = "+str(sunrise)+" sunset = "+str(sunset)+" text = "+str(text))
|
39
|
+
hbCommand = HausBusCommand(self.objectId, 128, "weather")
|
40
40
|
hbCommand.addByte(humidity)
|
41
41
|
hbCommand.addWord(pressure)
|
42
42
|
hbCommand.addByte(temp)
|
@@ -44,7 +44,7 @@ class Wetter(ABusFeature):
|
|
44
44
|
hbCommand.addWord(sunset.getValue())
|
45
45
|
hbCommand.addString(text)
|
46
46
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
47
|
-
hbCommand.send()
|
48
|
-
|
49
|
-
|
47
|
+
hbCommand.send()
|
48
|
+
logging.info("returns")
|
49
|
+
|
50
50
|
|
@@ -1,42 +1,42 @@
|
|
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.wiFi.params.EErrorCode import EErrorCode
|
7
|
-
from pyhausbus.de.hausbus.homeassistant.proxy.wiFi.data.Configuration import Configuration
|
8
|
-
from pyhausbus.de.hausbus.homeassistant.proxy.wiFi.data.CurrentIp import CurrentIp
|
9
|
-
|
10
|
-
class WiFi(ABusFeature):
|
11
|
-
CLASS_ID:int = 164
|
12
|
-
|
13
|
-
def __init__ (self,objectId:int):
|
14
|
-
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.wiFi.params.EErrorCode import EErrorCode
|
7
|
+
from pyhausbus.de.hausbus.homeassistant.proxy.wiFi.data.Configuration import Configuration
|
8
|
+
from pyhausbus.de.hausbus.homeassistant.proxy.wiFi.data.CurrentIp import CurrentIp
|
15
9
|
|
10
|
+
class WiFi(ABusFeature):
|
11
|
+
CLASS_ID:int = 164
|
12
|
+
|
13
|
+
def __init__ (self,objectId:int):
|
14
|
+
super().__init__(objectId)
|
15
|
+
|
16
16
|
@staticmethod
|
17
17
|
def create(deviceId:int, instanceId:int):
|
18
|
-
return WiFi(HausBusUtils.getObjectId(deviceId, 164, instanceId))
|
19
|
-
|
18
|
+
return WiFi(HausBusUtils.getObjectId(deviceId, 164, instanceId))
|
19
|
+
|
20
20
|
"""
|
21
21
|
@param errorCode .
|
22
22
|
"""
|
23
|
-
def evError(self, errorCode:EErrorCode):
|
24
|
-
|
25
|
-
hbCommand = HausBusCommand(self.objectId, 255, "evError")
|
23
|
+
def evError(self, errorCode:EErrorCode):
|
24
|
+
logging.info("evError"+" errorCode = "+str(errorCode))
|
25
|
+
hbCommand = HausBusCommand(self.objectId, 255, "evError")
|
26
26
|
hbCommand.addByte(errorCode.value)
|
27
27
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
28
|
-
hbCommand.send()
|
29
|
-
|
30
|
-
|
28
|
+
hbCommand.send()
|
29
|
+
logging.info("returns")
|
30
|
+
|
31
31
|
"""
|
32
32
|
"""
|
33
|
-
def getConfiguration(self):
|
34
|
-
|
35
|
-
hbCommand = HausBusCommand(self.objectId, 0, "getConfiguration")
|
33
|
+
def getConfiguration(self):
|
34
|
+
logging.info("getConfiguration")
|
35
|
+
hbCommand = HausBusCommand(self.objectId, 0, "getConfiguration")
|
36
36
|
ResultWorker()._setResultInfo(Configuration,self.getObjectId())
|
37
|
-
hbCommand.send()
|
38
|
-
|
39
|
-
|
37
|
+
hbCommand.send()
|
38
|
+
logging.info("returns")
|
39
|
+
|
40
40
|
"""
|
41
41
|
@param mac1 .
|
42
42
|
@param mac2 .
|
@@ -45,9 +45,9 @@ class WiFi(ABusFeature):
|
|
45
45
|
@param mac5 .
|
46
46
|
@param mac6 .
|
47
47
|
"""
|
48
|
-
def wakeUpDevice(self, mac1:int, mac2:int, mac3:int, mac4:int, mac5:int, mac6:int):
|
49
|
-
|
50
|
-
hbCommand = HausBusCommand(self.objectId, 2, "wakeUpDevice")
|
48
|
+
def wakeUpDevice(self, mac1:int, mac2:int, mac3:int, mac4:int, mac5:int, mac6:int):
|
49
|
+
logging.info("wakeUpDevice"+" mac1 = "+str(mac1)+" mac2 = "+str(mac2)+" mac3 = "+str(mac3)+" mac4 = "+str(mac4)+" mac5 = "+str(mac5)+" mac6 = "+str(mac6))
|
50
|
+
hbCommand = HausBusCommand(self.objectId, 2, "wakeUpDevice")
|
51
51
|
hbCommand.addByte(mac1)
|
52
52
|
hbCommand.addByte(mac2)
|
53
53
|
hbCommand.addByte(mac3)
|
@@ -55,21 +55,21 @@ class WiFi(ABusFeature):
|
|
55
55
|
hbCommand.addByte(mac5)
|
56
56
|
hbCommand.addByte(mac6)
|
57
57
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
58
|
-
hbCommand.send()
|
59
|
-
|
60
|
-
|
58
|
+
hbCommand.send()
|
59
|
+
logging.info("returns")
|
60
|
+
|
61
61
|
"""
|
62
62
|
@param SSID .
|
63
63
|
@param Password .
|
64
|
-
@param Server_Port Zusaetzlicher Port fuer die Homeserverfunktionen z.B 15557
|
64
|
+
@param Server_Port Zusaetzlicher Port fuer die Homeserverfunktionen z.B 15557 fuer Loxone oder 5855 f?r IOBroker.
|
65
65
|
@param Server_IP0 Server IP-Adresse im Format IP0.IP1.IP2.IP3 0.0.0.0 deaktiviert das Gateway 13 und 14.
|
66
66
|
@param Server_IP1 Server IP-Adresse im Format IP0.IP1.IP2.IP3 0.0.0.0 deaktiviert das Gateway 13 und 14.
|
67
67
|
@param Server_IP2 Server IP-Adresse im Format IP0.IP1.IP2.IP3 0.0.0.0 deaktiviert das Gateway 13 und 14.
|
68
68
|
@param Server_IP3 Server IP-Adresse im Format IP0.IP1.IP2.IP3 0.0.0.0 deaktiviert das Gateway 13 und 14.
|
69
69
|
"""
|
70
|
-
def setConfiguration(self, SSID:str, Password:str, Server_Port:int, Server_IP0:int, Server_IP1:int, Server_IP2:int, Server_IP3:int):
|
71
|
-
|
72
|
-
hbCommand = HausBusCommand(self.objectId, 1, "setConfiguration")
|
70
|
+
def setConfiguration(self, SSID:str, Password:str, Server_Port:int, Server_IP0:int, Server_IP1:int, Server_IP2:int, Server_IP3:int):
|
71
|
+
logging.info("setConfiguration"+" SSID = "+str(SSID)+" Password = "+str(Password)+" Server_Port = "+str(Server_Port)+" Server_IP0 = "+str(Server_IP0)+" Server_IP1 = "+str(Server_IP1)+" Server_IP2 = "+str(Server_IP2)+" Server_IP3 = "+str(Server_IP3))
|
72
|
+
hbCommand = HausBusCommand(self.objectId, 1, "setConfiguration")
|
73
73
|
hbCommand.addString(SSID)
|
74
74
|
hbCommand.addString(Password)
|
75
75
|
hbCommand.addWord(Server_Port)
|
@@ -78,21 +78,21 @@ class WiFi(ABusFeature):
|
|
78
78
|
hbCommand.addByte(Server_IP2)
|
79
79
|
hbCommand.addByte(Server_IP3)
|
80
80
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
81
|
-
hbCommand.send()
|
82
|
-
|
83
|
-
|
81
|
+
hbCommand.send()
|
82
|
+
logging.info("returns")
|
83
|
+
|
84
84
|
"""
|
85
85
|
@param SSID .
|
86
86
|
@param Password .
|
87
|
-
@param Server_Port Zusaetzlicher Port fuer die Homeserverfunktionen z.B 15557
|
87
|
+
@param Server_Port Zusaetzlicher Port fuer die Homeserverfunktionen z.B 15557 fuer Loxone oder 5855 f?r IOBroker.
|
88
88
|
@param Server_IP0 Server IP-Adresse im Format IP0.IP1.IP2.IP3 0.0.0.0 deaktiviert das Gateway 13 und 14.
|
89
89
|
@param Server_IP1 Server IP-Adresse im Format IP0.IP1.IP2.IP3 0.0.0.0 deaktiviert das Gateway 13 und 14.
|
90
90
|
@param Server_IP2 Server IP-Adresse im Format IP0.IP1.IP2.IP3 0.0.0.0 deaktiviert das Gateway 13 und 14.
|
91
91
|
@param Server_IP3 Server IP-Adresse im Format IP0.IP1.IP2.IP3 0.0.0.0 deaktiviert das Gateway 13 und 14.
|
92
92
|
"""
|
93
|
-
def Configuration(self, SSID:str, Password:str, Server_Port:int, Server_IP0:int, Server_IP1:int, Server_IP2:int, Server_IP3:int):
|
94
|
-
|
95
|
-
hbCommand = HausBusCommand(self.objectId, 128, "Configuration")
|
93
|
+
def Configuration(self, SSID:str, Password:str, Server_Port:int, Server_IP0:int, Server_IP1:int, Server_IP2:int, Server_IP3:int):
|
94
|
+
logging.info("Configuration"+" SSID = "+str(SSID)+" Password = "+str(Password)+" Server_Port = "+str(Server_Port)+" Server_IP0 = "+str(Server_IP0)+" Server_IP1 = "+str(Server_IP1)+" Server_IP2 = "+str(Server_IP2)+" Server_IP3 = "+str(Server_IP3))
|
95
|
+
hbCommand = HausBusCommand(self.objectId, 128, "Configuration")
|
96
96
|
hbCommand.addString(SSID)
|
97
97
|
hbCommand.addString(Password)
|
98
98
|
hbCommand.addWord(Server_Port)
|
@@ -101,33 +101,33 @@ class WiFi(ABusFeature):
|
|
101
101
|
hbCommand.addByte(Server_IP2)
|
102
102
|
hbCommand.addByte(Server_IP3)
|
103
103
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
104
|
-
hbCommand.send()
|
105
|
-
|
106
|
-
|
104
|
+
hbCommand.send()
|
105
|
+
logging.info("returns")
|
106
|
+
|
107
107
|
"""
|
108
108
|
"""
|
109
|
-
def getCurrentIp(self):
|
110
|
-
|
111
|
-
hbCommand = HausBusCommand(self.objectId, 3, "getCurrentIp")
|
109
|
+
def getCurrentIp(self):
|
110
|
+
logging.info("getCurrentIp")
|
111
|
+
hbCommand = HausBusCommand(self.objectId, 3, "getCurrentIp")
|
112
112
|
ResultWorker()._setResultInfo(CurrentIp,self.getObjectId())
|
113
|
-
hbCommand.send()
|
114
|
-
|
115
|
-
|
113
|
+
hbCommand.send()
|
114
|
+
logging.info("returns")
|
115
|
+
|
116
116
|
"""
|
117
117
|
@param IP0 .
|
118
118
|
@param IP1 .
|
119
119
|
@param IP2 .
|
120
120
|
@param IP3 .
|
121
121
|
"""
|
122
|
-
def CurrentIp(self, IP0:int, IP1:int, IP2:int, IP3:int):
|
123
|
-
|
124
|
-
hbCommand = HausBusCommand(self.objectId, 129, "CurrentIp")
|
122
|
+
def CurrentIp(self, IP0:int, IP1:int, IP2:int, IP3:int):
|
123
|
+
logging.info("CurrentIp"+" IP0 = "+str(IP0)+" IP1 = "+str(IP1)+" IP2 = "+str(IP2)+" IP3 = "+str(IP3))
|
124
|
+
hbCommand = HausBusCommand(self.objectId, 129, "CurrentIp")
|
125
125
|
hbCommand.addByte(IP0)
|
126
126
|
hbCommand.addByte(IP1)
|
127
127
|
hbCommand.addByte(IP2)
|
128
128
|
hbCommand.addByte(IP3)
|
129
129
|
ResultWorker()._setResultInfo(None,self.getObjectId())
|
130
|
-
hbCommand.send()
|
131
|
-
|
132
|
-
|
130
|
+
hbCommand.send()
|
131
|
+
logging.info("returns")
|
132
|
+
|
133
133
|
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import pyhausbus.HausBusUtils as HausBusUtils
|
2
|
+
|
3
|
+
class GetConfiguration:
|
4
|
+
CLASS_ID = 36
|
5
|
+
FUNCTION_ID = 0
|
6
|
+
|
7
|
+
@staticmethod
|
8
|
+
def _fromBytes(dataIn:bytearray, offset):
|
9
|
+
return GetConfiguration()
|
10
|
+
|
11
|
+
def __str__(self):
|
12
|
+
return f"GetConfiguration()"
|
13
|
+
|
14
|
+
|
15
|
+
|
@@ -1,15 +1,15 @@
|
|
1
|
-
import pyhausbus.HausBusUtils as HausBusUtils
|
2
|
-
|
3
|
-
class CheckBusTiming:
|
4
|
-
CLASS_ID = 176
|
5
|
-
FUNCTION_ID = 2
|
1
|
+
import pyhausbus.HausBusUtils as HausBusUtils
|
6
2
|
|
3
|
+
class GetStatus:
|
4
|
+
CLASS_ID = 36
|
5
|
+
FUNCTION_ID = 2
|
6
|
+
|
7
7
|
@staticmethod
|
8
|
-
def _fromBytes(dataIn:bytearray, offset):
|
9
|
-
return
|
8
|
+
def _fromBytes(dataIn:bytearray, offset):
|
9
|
+
return GetStatus()
|
10
10
|
|
11
11
|
def __str__(self):
|
12
|
-
return f"
|
12
|
+
return f"GetStatus()"
|
13
13
|
|
14
14
|
|
15
15
|
|