pyhausbus 1.0.1__tar.gz → 1.0.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pyhausbus-1.0.3/LICENSE +21 -0
- pyhausbus-1.0.3/PKG-INFO +30 -0
- pyhausbus-1.0.3/README.md +3 -0
- pyhausbus-1.0.3/pyhausbus/ABusFeature.py +22 -0
- pyhausbus-1.0.3/pyhausbus/BusDataMessage.py +23 -0
- pyhausbus-1.0.3/pyhausbus/BusHandler.py +110 -0
- pyhausbus-1.0.3/pyhausbus/HausBusCommand.py +84 -0
- pyhausbus-1.0.3/pyhausbus/HausBusUtils.py +203 -0
- pyhausbus-1.0.3/pyhausbus/HomeServer.py +86 -0
- pyhausbus-1.0.3/pyhausbus/IBusDataListener.py +7 -0
- pyhausbus-1.0.3/pyhausbus/Main.py +100 -0
- pyhausbus-1.0.3/pyhausbus/ObjectId.py +22 -0
- pyhausbus-1.0.3/pyhausbus/ResultWorker.py +53 -0
- pyhausbus-1.0.3/pyhausbus/Templates.py +140 -0
- pyhausbus-1.0.3/pyhausbus/UdpReceiveWorker.py +73 -0
- pyhausbus-1.0.3/pyhausbus/WeekTime.py +56 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/AnalogEingang.py +139 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/Controller.py +778 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/Counter.py +123 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/CurrentReader.py +229 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/DaliLine.py +123 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/DigitalPort.py +90 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/Dimmer.py +168 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/Drucksensor.py +141 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/Ethernet.py +146 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/Feuchtesensor.py +165 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/Gateway.py +146 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/Helligkeitssensor.py +153 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/IRSensor.py +92 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/Led.py +214 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/LogicalButton.py +272 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/ModBusMaster.py +60 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/ModbusSlave.py +17 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/PCA9555.py +29 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/PCServer.py +104 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/PIDController.py +135 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/PT1000.py +153 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/PowerMeter.py +165 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/ProxyFactory.py +756 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/RFIDReader.py +120 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/RGBDimmer.py +119 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/Rollladen.py +192 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/Schalter.py +213 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/SnmpAgent.py +17 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/SystemTime.py +88 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/Taster.py +222 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/Taupunkt.py +165 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/TcpClient.py +72 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/Temperatursensor.py +165 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/Wetter.py +50 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/WiFi.py +133 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/commands/GetConfiguration.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/commands/GetStatus.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/commands/SetConfiguration.py +74 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/data/Configuration.py +74 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/data/EvHigh.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/data/EvInRange.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/data/EvLow.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/data/EvStatus.py +33 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/data/Status.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/params/ELastEvent.py +28 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/EnableFeature.py +33 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GenerateRandomDeviceId.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetConfiguration.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetModuleId.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetRemoteObjects.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetRuleState.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetSystemVariable.py +33 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetTime.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetUnitGroupStatus.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetUnusedMemory.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/Ping.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/ReadMemory.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/ReadRules.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/Reset.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/ResetOneWireManager.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetConfiguration.py +104 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetDebugOptions.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetRuleState.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetSunTimes.py +33 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetSystemVariable.py +40 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetTime.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetUnitGroupState.py +46 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/TriggerRuleElement.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/WriteMemory.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/WriteRules.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/Configuration.py +132 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvConsole.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvDay.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvError.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvGroupOff.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvGroupOn.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvGroupUndefined.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvNewDeviceId.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvNight.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvResetWifi.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvStarted.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvSystemVariableChanged.py +40 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvTime.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvZeroCrossData.py +263 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/MemoryData.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/MemoryStatus.py +33 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/ModuleId.py +54 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/Pong.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/RemoteObjects.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/RuleState.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/RulesData.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/SystemVariable.py +40 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/Time.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/TimeDifference.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/TriggeredRule.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/UnitGroupStatus.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/UnusedMemory.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EErrorCode.py +46 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EFeatureId.py +30 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EFirmwareId.py +40 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EIndex.py +27 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EReason.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/params/ESlotType.py +33 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EStatus.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EType.py +28 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/params/MLogicalButtonMask.py +96 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller/params/MOption.py +96 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/counter/commands/GetConfiguration.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/counter/commands/GetStatus.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/counter/commands/SetConfiguration.py +47 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/counter/commands/SetCount.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/counter/data/Configuration.py +47 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/counter/data/EvError.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/counter/data/EvStatus.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/counter/data/Status.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/counter/params/EErrorCode.py +27 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/counter/params/MMode.py +96 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/ClearSignalCount.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/DecSignalCount.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/GetConfiguration.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/GetCurrent.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/GetPower.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/GetSignalCount.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/IncSignalCount.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/SetConfiguration.py +47 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/SetSignalCount.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/Configuration.py +47 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/Current.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvCurrent.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvDebug.py +33 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvError.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvInterrupt.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvSignal.py +46 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/Power.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/SignalCount.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/params/EErrorCode.py +27 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/params/MConfig.py +24 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/AllOff.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/AllOn.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/GetConfiguration.py +46 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/SendCommand.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/SetConfiguration.py +46 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/daliLine/data/Configuration.py +46 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/daliLine/data/EvError.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/daliLine/data/Status.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/daliLine/params/EErrorCode.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/commands/GetConfiguration.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/commands/SetConfiguration.py +113 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/data/Configuration.py +113 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/data/EvError.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/params/EErrorCode.py +42 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/params/EPin.py +39 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/GetConfiguration.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/GetStatus.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/SetBrightness.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/SetConfiguration.py +54 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/Start.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/Stop.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/Configuration.py +54 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/EvError.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/EvOff.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/EvOn.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/EvStart.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/Status.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/dimmer/params/EDirection.py +28 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/dimmer/params/EErrorCode.py +31 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/dimmer/params/EMode.py +28 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/commands/GetConfiguration.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/commands/GetStatus.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/commands/SetConfiguration.py +74 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/Configuration.py +74 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/EvHigh.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/EvInRange.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/EvLow.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/EvStatus.py +33 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/Status.py +33 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/params/ELastEvent.py +28 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/ethernet/commands/GetConfiguration.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/ethernet/commands/GetCurrentIp.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/ethernet/commands/SetConfiguration.py +89 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/ethernet/commands/WakeUpDevice.py +60 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/ethernet/data/Configuration.py +89 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/ethernet/data/CurrentIp.py +46 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/ethernet/data/EvError.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/ethernet/params/EErrorCode.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/ethernet/params/MOptions.py +96 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/commands/GetConfiguration.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/commands/GetStatus.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/commands/SetConfiguration.py +88 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/Configuration.py +88 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvConfortable.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvDry.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvError.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvStatus.py +40 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvWet.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/Status.py +40 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/params/EErrorCode.py +40 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/params/ELastEvent.py +28 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/GetConfiguration.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/GetConnectedDevices.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/GetMinIdleTime.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/SetConfiguration.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/SetMinIdleTime.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/SetPreferLoxone.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/Configuration.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/ConnectedDevices.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/EvError.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/EvGatewayLoad.py +53 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/MinIdleTime.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/gateway/params/EErrorCode.py +35 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/gateway/params/EValue.py +27 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/gateway/params/MOptions.py +96 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/commands/GetConfiguration.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/commands/GetStatus.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/commands/SetConfiguration.py +74 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/Configuration.py +74 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvBright.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvDark.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvError.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvLight.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvStatus.py +33 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/Status.py +33 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/params/EErrorCode.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/params/ELastEvent.py +28 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/commands/Off.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/commands/On.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvClicked.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvHoldEnd.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvHoldStart.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvOff.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvOn.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/led/commands/Blink.py +46 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/led/commands/GetConfiguration.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/led/commands/GetMinBrightness.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/led/commands/GetStatus.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/led/commands/Off.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/led/commands/On.py +39 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/led/commands/SetConfiguration.py +47 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/led/commands/SetMinBrightness.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/led/data/Configuration.py +47 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvBlink.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvCmdDelay.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvError.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvOff.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvOn.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/led/data/MinBrightness.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/led/data/Status.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/led/params/EErrorCode.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/led/params/MOptions.py +96 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/Blink.py +46 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/GetConfiguration.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/GetMinBrightness.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/GetStatus.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/Off.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/On.py +39 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/SetButtonConfiguration.py +48 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/SetConfiguration.py +130 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/SetLedConfiguration.py +47 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/SetMinBrightness.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/Configuration.py +130 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/EvBlink.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/EvError.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/EvOff.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/EvOn.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/Status.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/EErrorCode.py +29 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/EStatus.py +28 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/MEventMask.py +96 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/MOptionMask.py +96 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/MOptions.py +96 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/commands/GetConfiguration.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/commands/SetConfiguration.py +40 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/data/Configuration.py +40 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/params/ESensorType.py +35 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pCA9555/data/EvError.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pCA9555/params/EErrorCode.py +28 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Exec.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Quit.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/ReloadUserPlugin.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Restart.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/SetVariable.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Shutdown.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Standby.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pCServer/data/EvOffline.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pCServer/data/EvOnline.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands/Enable.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands/GetConfiguration.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands/SetConfiguration.py +82 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands/SetTargetValue.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data/Configuration.py +82 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data/EvError.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data/EvOff.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data/EvOn.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pIDController/params/EEnable.py +27 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pIDController/params/EErrorCode.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pIDController/params/MOptions.py +96 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pT1000/commands/GetConfiguration.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pT1000/commands/GetStatus.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pT1000/commands/SetConfiguration.py +74 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/Configuration.py +74 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/EvError.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/EvHigh.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/EvInRange.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/EvLow.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/EvStatus.py +33 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/Status.py +33 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pT1000/params/EErrorCode.py +40 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pT1000/params/ELastEvent.py +28 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/commands/GetConfiguration.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/commands/GetStatus.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/commands/SetConfiguration.py +88 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/Configuration.py +88 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvError.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvHighPower.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvLowPower.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvMediumPower.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvStatus.py +40 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/Status.py +40 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/params/EErrorCode.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/params/ELastEvent.py +28 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/commands/GetConfiguration.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/commands/GetLastData.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/commands/GetState.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/commands/SetConfiguration.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/Configuration.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/EvConnected.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/EvData.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/EvError.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/LastData.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/State.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/params/EErrorCode.py +33 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/params/EState.py +31 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/commands/GetConfiguration.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/commands/GetStatus.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/commands/SetColor.py +46 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/commands/SetConfiguration.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/data/Configuration.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/data/EvOff.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/data/EvOn.py +46 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/data/Status.py +46 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/GetConfiguration.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/GetStatus.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/MoveToPosition.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/SetConfiguration.py +40 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/SetPosition.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/Start.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/Stop.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/Configuration.py +40 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvClosed.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvError.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvNewMainState.py +33 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvNewSubState.py +33 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvOpen.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvStart.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/Status.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/params/EDirection.py +29 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/params/EErrorCode.py +27 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/params/ENewState.py +31 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/params/MOptions.py +96 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/GetConfiguration.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/GetStatus.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/Off.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/On.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/SetConfiguration.py +54 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/Toggle.py +39 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/ToggleByDuty.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/Configuration.py +54 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvCmdDelay.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvDisabled.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvError.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvOff.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvOn.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvToggle.py +39 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/Status.py +47 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/schalter/params/EErrorCode.py +28 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/schalter/params/EState.py +31 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/schalter/params/MOptions.py +96 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/systemTime/commands/GetTime.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/systemTime/commands/SetTime.py +70 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/systemTime/data/EvError.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/systemTime/data/Time.py +67 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/systemTime/params/EDate.py +56 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/systemTime/params/EErrorCode.py +31 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/systemTime/params/EMonth.py +37 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/systemTime/params/EWeekDay.py +32 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/EnableEvents.py +33 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/GetConfiguration.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/GetEnabled.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/GetStatus.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/SetConfiguration.py +55 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/TriggerStatusEvent.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taster/data/Configuration.py +55 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taster/data/Enabled.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvClicked.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvCovered.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvDoubleClick.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvEnabled.py +25 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvError.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvFree.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvHoldEnd.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvHoldStart.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taster/data/Status.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taster/params/EEnable.py +28 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taster/params/EErrorCode.py +27 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taster/params/EState.py +28 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taster/params/MEventMask.py +96 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taster/params/MOptionMask.py +96 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/commands/GetConfiguration.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/commands/GetStatus.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/commands/SetConfiguration.py +88 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/Configuration.py +88 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvAbove.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvError.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvInRange.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvLow.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvStatus.py +40 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/Status.py +40 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/params/EErrorCode.py +40 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/params/ELastEvent.py +28 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/params/_init_.py +1 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/_init_.py +1 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/commands/AnnounceServer.py +53 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/commands/GetCurrentIp.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/commands/_init_.py +1 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/data/CurrentIp.py +46 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/data/EvWhoIsServer.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/data/_init_.py +1 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/_init_.py +1 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/commands/GetConfiguration.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/commands/GetStatus.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/commands/SetConfiguration.py +88 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/commands/_init_.py +1 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/Configuration.py +88 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvCold.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvError.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvHot.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvStatus.py +40 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvWarm.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/Status.py +40 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/_init_.py +1 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/params/EErrorCode.py +40 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/params/ELastEvent.py +28 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/params/_init_.py +1 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/wetter/_init_.py +1 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/wetter/commands/GetWeather.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/wetter/commands/_init_.py +1 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/wetter/data/Weather.py +61 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/wetter/data/_init_.py +1 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/wiFi/_init_.py +1 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands/GetConfiguration.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands/GetCurrentIp.py +15 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands/SetConfiguration.py +67 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands/WakeUpDevice.py +60 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands/_init_.py +1 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/wiFi/data/Configuration.py +67 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/wiFi/data/CurrentIp.py +46 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/wiFi/data/EvError.py +26 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/wiFi/data/_init_.py +1 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/wiFi/params/EErrorCode.py +28 -0
- pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/wiFi/params/_init_.py +1 -0
- pyhausbus-1.0.3/pyhausbus/templates/AR8_30_8-fach-Relaismodul.tpl +18 -0
- pyhausbus-1.0.3/pyhausbus/templates/ESP32C3_69_WLAN-Steckdose.tpl +5 -0
- pyhausbus-1.0.3/pyhausbus/templates/ESP32_00_4-fach-0-10V-Dimmer.tpl +14 -0
- pyhausbus-1.0.3/pyhausbus/templates/ESP32_01_4-fach-1-10V-Dimmer.tpl +10 -0
- pyhausbus-1.0.3/pyhausbus/templates/ESP32_04_4-fach-Relaismodul.tpl +12 -0
- pyhausbus-1.0.3/pyhausbus/templates/ESP32_08_8-fach-Relaismodul.tpl +18 -0
- pyhausbus-1.0.3/pyhausbus/templates/ESP32_0A_12-fach-Relaismodul.tpl +22 -0
- pyhausbus-1.0.3/pyhausbus/templates/ESP32_0C_16-fach-Relaismodul.tpl +26 -0
- pyhausbus-1.0.3/pyhausbus/templates/ESP32_0D_8-fach-Motormodul.tpl +18 -0
- pyhausbus-1.0.3/pyhausbus/templates/ESP32_10_22-fach-UP-IO.tpl +29 -0
- pyhausbus-1.0.3/pyhausbus/templates/ESP32_18_6-fach-Taster.tpl +33 -0
- pyhausbus-1.0.3/pyhausbus/templates/ESP32_19_4-fach-Taster.tpl +29 -0
- pyhausbus-1.0.3/pyhausbus/templates/ESP32_1A_2-fach-Taster.tpl +25 -0
- pyhausbus-1.0.3/pyhausbus/templates/ESP32_1B_1-fach-Taster.tpl +23 -0
- pyhausbus-1.0.3/pyhausbus/templates/ESP32_1C_6-fach-Taster.tpl +29 -0
- pyhausbus-1.0.3/pyhausbus/templates/ESP32_20_32-fach-IO.tpl +39 -0
- pyhausbus-1.0.3/pyhausbus/templates/ESP32_28_8-fach-Dimmer.tpl +18 -0
- pyhausbus-1.0.3/pyhausbus/templates/ESP32_30_2-fach-RGB-Dimmer.tpl +17 -0
- pyhausbus-1.0.3/pyhausbus/templates/ESP32_31_2-fach-RGB-Dimmer.tpl +17 -0
- pyhausbus-1.0.3/pyhausbus/templates/ESP32_65_LAN-RS485-Brueckenmodul.tpl +1 -0
- pyhausbus-1.0.3/pyhausbus/templates/ESP32_99_LocalBroadcastDevice.tpl +1 -0
- pyhausbus-1.0.3/pyhausbus/templates/FckmMapping.def +1 -0
- pyhausbus-1.0.3/pyhausbus/templates/HBC_00_4-fach-0-10V-Dimmer.tpl +10 -0
- pyhausbus-1.0.3/pyhausbus/templates/HBC_01_4-fach-1-10V-Dimmer.tpl +10 -0
- pyhausbus-1.0.3/pyhausbus/templates/HBC_08_8-fach-Relaismodul.tpl +18 -0
- pyhausbus-1.0.3/pyhausbus/templates/HBC_0C_16-fach-Relaismodul.tpl +26 -0
- pyhausbus-1.0.3/pyhausbus/templates/HBC_10_24-fach-UP-IO.tpl +31 -0
- pyhausbus-1.0.3/pyhausbus/templates/HBC_18_6-fach-Taster.tpl +34 -0
- pyhausbus-1.0.3/pyhausbus/templates/HBC_19_4-fach-Taster.tpl +28 -0
- pyhausbus-1.0.3/pyhausbus/templates/HBC_1A_2-fach-Taster.tpl +24 -0
- pyhausbus-1.0.3/pyhausbus/templates/HBC_1B_1-fach-Taster.tpl +22 -0
- pyhausbus-1.0.3/pyhausbus/templates/HBC_1C_6-fach-Taster.tpl +33 -0
- pyhausbus-1.0.3/pyhausbus/templates/HBC_1D_4-fach-Taster.tpl +29 -0
- pyhausbus-1.0.3/pyhausbus/templates/HBC_1E_2-fach-Taster.tpl +29 -0
- pyhausbus-1.0.3/pyhausbus/templates/HBC_1F_1-fach-Taster.tpl +27 -0
- pyhausbus-1.0.3/pyhausbus/templates/HBC_20_32-fach-IO.tpl +39 -0
- pyhausbus-1.0.3/pyhausbus/templates/HBC_29_8-fach-Dimmer.tpl +18 -0
- pyhausbus-1.0.3/pyhausbus/templates/HBC_30_2-fach-RGB-Dimmer.tpl +17 -0
- pyhausbus-1.0.3/pyhausbus/templates/LoxoneHausBusMapping.txt +80 -0
- pyhausbus-1.0.3/pyhausbus/templates/LoxoneModuleMapping.txt +11 -0
- pyhausbus-1.0.3/pyhausbus/templates/SD485_1E_6-fach-Taster.tpl +30 -0
- pyhausbus-1.0.3/pyhausbus/templates/SD485_28_24-fach-UP-IO.tpl +31 -0
- pyhausbus-1.0.3/pyhausbus/templates/SD485_29_1-fach-Taster.tpl +24 -0
- pyhausbus-1.0.3/pyhausbus/templates/SD485_2A_2-fach-Taster.tpl +26 -0
- pyhausbus-1.0.3/pyhausbus/templates/SD485_2C_4-fach-Taster.tpl +26 -0
- pyhausbus-1.0.3/pyhausbus/templates/SD485_2E_6-fach-Taster.tpl +30 -0
- pyhausbus-1.0.3/pyhausbus/templates/SD485_2F_6-fach-Taster.tpl +30 -0
- pyhausbus-1.0.3/pyhausbus/templates/SD6_14_Multitaster.tpl +26 -0
- pyhausbus-1.0.3/pyhausbus/templates/SD6_1E_Multitaster.tpl +26 -0
- pyhausbus-1.0.3/pyhausbus/templates/classMapping.def +9 -0
- pyhausbus-1.0.3/pyhausbus/templates/deviceTypes.def +47 -0
- pyhausbus-1.0.3/pyproject.toml +20 -0
- pyhausbus-1.0.1/LICENSE +0 -21
- pyhausbus-1.0.1/PKG-INFO +0 -29
- pyhausbus-1.0.1/README.md +0 -3
- pyhausbus-1.0.1/pyhausbus/ABusFeature.py +0 -22
- pyhausbus-1.0.1/pyhausbus/BusDataMessage.py +0 -23
- pyhausbus-1.0.1/pyhausbus/BusHandler.py +0 -110
- pyhausbus-1.0.1/pyhausbus/HausBusCommand.py +0 -84
- pyhausbus-1.0.1/pyhausbus/HausBusDevice.py +0 -70
- pyhausbus-1.0.1/pyhausbus/HausBusUtils.py +0 -203
- pyhausbus-1.0.1/pyhausbus/HomeServer.py +0 -68
- pyhausbus-1.0.1/pyhausbus/IBusDataListener.py +0 -7
- pyhausbus-1.0.1/pyhausbus/Main.py +0 -100
- pyhausbus-1.0.1/pyhausbus/ObjectId.py +0 -22
- pyhausbus-1.0.1/pyhausbus/ResultWorker.py +0 -53
- pyhausbus-1.0.1/pyhausbus/UdpReceiveWorker.py +0 -73
- pyhausbus-1.0.1/pyhausbus/WeekTime.py +0 -56
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/Controller.py +0 -763
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/Counter.py +0 -123
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/CurrentReader.py +0 -217
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/DaliLine.py +0 -123
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/DigitalPort.py +0 -90
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/Dimmer.py +0 -168
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/Ethernet.py +0 -146
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/Feuchtesensor.py +0 -165
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/Gateway.py +0 -135
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/Helligkeitssensor.py +0 -153
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/IRSensor.py +0 -92
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/Led.py +0 -213
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/LogicalButton.py +0 -272
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/ModBusMaster.py +0 -60
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/ModbusSlave.py +0 -17
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/PCServer.py +0 -104
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/PIDController.py +0 -130
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/PowerMeter.py +0 -165
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/ProxyFactory.py +0 -682
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/RFIDReader.py +0 -120
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/RGBDimmer.py +0 -119
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/Rollladen.py +0 -192
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/Schalter.py +0 -190
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/SnmpAgent.py +0 -17
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/SystemTime.py +0 -88
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/Taster.py +0 -212
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/Taupunkt.py +0 -165
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/TcpClient.py +0 -72
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/Temperatursensor.py +0 -165
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/Wetter.py +0 -50
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/WiFi.py +0 -133
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/EnableFeature.py +0 -33
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GenerateRandomDeviceId.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetConfiguration.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetModuleId.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetRemoteObjects.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetRuleState.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetSystemVariable.py +0 -33
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetTime.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetUnitGroupStatus.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetUnusedMemory.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/Ping.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/ReadMemory.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/ReadRules.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/Reset.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetConfiguration.py +0 -104
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetDebugOptions.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetRuleState.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetSunTimes.py +0 -33
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetSystemVariable.py +0 -40
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetTime.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetUnitGroupState.py +0 -46
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/TriggerRuleElement.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/WriteMemory.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/WriteRules.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/Configuration.py +0 -132
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvConsole.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvDay.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvError.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvGroupOff.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvGroupOn.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvGroupUndefined.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvNewDeviceId.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvNight.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvResetWifi.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvStarted.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvSystemVariableChanged.py +0 -40
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvTime.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvZeroCrossData.py +0 -249
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/MemoryData.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/MemoryStatus.py +0 -33
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/ModuleId.py +0 -54
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/Pong.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/RemoteObjects.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/RuleState.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/RulesData.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/SystemVariable.py +0 -40
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/Time.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/TimeDifference.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/TriggeredRule.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/UnitGroupStatus.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/data/UnusedMemory.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EErrorCode.py +0 -33
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EFeatureId.py +0 -21
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EFirmwareId.py +0 -31
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EIndex.py +0 -19
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EReason.py +0 -24
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/params/ESlotType.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EStatus.py +0 -24
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EType.py +0 -20
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/params/MLogicalButtonMask.py +0 -96
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller/params/MOption.py +0 -96
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/counter/commands/GetConfiguration.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/counter/commands/GetStatus.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/counter/commands/SetConfiguration.py +0 -47
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/counter/commands/SetCount.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/counter/data/Configuration.py +0 -47
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/counter/data/EvError.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/counter/data/EvStatus.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/counter/data/Status.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/counter/params/EErrorCode.py +0 -18
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/counter/params/MMode.py +0 -96
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/ClearSignalCount.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/DecSignalCount.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/GetConfiguration.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/GetCurrent.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/GetPower.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/GetSignalCount.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/IncSignalCount.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/SetConfiguration.py +0 -47
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/SetSignalCount.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/Configuration.py +0 -47
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/Current.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvCurrent.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvDebug.py +0 -33
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvInterrupt.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvSignal.py +0 -46
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/Power.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/SignalCount.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/currentReader/params/MConfig.py +0 -24
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/AllOff.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/AllOn.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/GetConfiguration.py +0 -46
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/SendCommand.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/SetConfiguration.py +0 -46
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/daliLine/data/Configuration.py +0 -46
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/daliLine/data/EvError.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/daliLine/data/Status.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/daliLine/params/EErrorCode.py +0 -17
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/commands/GetConfiguration.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/commands/SetConfiguration.py +0 -113
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/data/Configuration.py +0 -113
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/data/EvError.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/params/EErrorCode.py +0 -33
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/params/EPin.py +0 -30
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/GetConfiguration.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/GetStatus.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/SetBrightness.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/SetConfiguration.py +0 -54
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/Start.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/Stop.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/Configuration.py +0 -54
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/EvError.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/EvOff.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/EvOn.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/EvStart.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/Status.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/dimmer/params/EDirection.py +0 -20
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/dimmer/params/EErrorCode.py +0 -21
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/dimmer/params/EMode.py +0 -20
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/ethernet/commands/GetConfiguration.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/ethernet/commands/GetCurrentIp.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/ethernet/commands/SetConfiguration.py +0 -89
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/ethernet/commands/WakeUpDevice.py +0 -60
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/ethernet/data/Configuration.py +0 -89
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/ethernet/data/CurrentIp.py +0 -46
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/ethernet/data/EvError.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/ethernet/params/EErrorCode.py +0 -23
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/ethernet/params/MOptions.py +0 -96
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/commands/GetConfiguration.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/commands/GetStatus.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/commands/SetConfiguration.py +0 -88
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/Configuration.py +0 -88
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvConfortable.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvDry.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvError.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvStatus.py +0 -40
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvWet.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/Status.py +0 -40
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/params/EErrorCode.py +0 -30
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/params/ELastEvent.py +0 -20
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/CheckBusTiming.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/GetBusTiming.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/GetConfiguration.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/GetConnectedDevices.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/ResetBusTiming.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/SetConfiguration.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/BusTiming.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/Configuration.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/ConnectedDevices.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/EvError.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/EvGatewayLoad.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/gateway/params/EErrorCode.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/gateway/params/MOptions.py +0 -96
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/commands/GetConfiguration.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/commands/GetStatus.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/commands/SetConfiguration.py +0 -74
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/Configuration.py +0 -74
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvBright.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvDark.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvError.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvLight.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvStatus.py +0 -33
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/Status.py +0 -33
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/params/EErrorCode.py +0 -22
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/params/ELastEvent.py +0 -20
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/commands/Off.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/commands/On.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvClicked.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvHoldEnd.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvHoldStart.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvOff.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvOn.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/led/commands/Blink.py +0 -46
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/led/commands/GetConfiguration.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/led/commands/GetMinBrightness.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/led/commands/GetStatus.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/led/commands/Off.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/led/commands/On.py +0 -39
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/led/commands/SetConfiguration.py +0 -47
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/led/commands/SetMinBrightness.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/led/data/Configuration.py +0 -47
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvBlink.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvCmdDelay.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvError.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvOff.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvOn.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/led/data/MinBrightness.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/led/data/Status.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/led/params/MOptions.py +0 -96
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/Blink.py +0 -46
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/GetConfiguration.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/GetMinBrightness.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/GetStatus.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/Off.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/On.py +0 -39
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/SetButtonConfiguration.py +0 -48
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/SetConfiguration.py +0 -130
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/SetLedConfiguration.py +0 -47
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/SetMinBrightness.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/Configuration.py +0 -130
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/EvBlink.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/EvError.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/EvOff.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/EvOn.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/Status.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/EErrorCode.py +0 -19
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/EStatus.py +0 -20
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/MEventMask.py +0 -96
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/MOptionMask.py +0 -96
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/MOptions.py +0 -96
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/commands/GetConfiguration.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/commands/SetConfiguration.py +0 -40
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/data/Configuration.py +0 -40
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/params/ESensorType.py +0 -27
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Exec.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Quit.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/ReloadUserPlugin.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Restart.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/SetVariable.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Shutdown.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Standby.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/pCServer/data/EvOffline.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/pCServer/data/EvOnline.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands/Enable.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands/GetConfiguration.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands/SetConfiguration.py +0 -74
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands/SetTargetValue.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data/Configuration.py +0 -74
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data/EvError.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data/EvOff.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data/EvOn.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/pIDController/params/EEnable.py +0 -19
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/pIDController/params/EErrorCode.py +0 -21
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/commands/GetConfiguration.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/commands/GetStatus.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/commands/SetConfiguration.py +0 -88
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/Configuration.py +0 -88
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvError.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvHighPower.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvLowPower.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvMediumPower.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvStatus.py +0 -40
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/Status.py +0 -40
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/params/EErrorCode.py +0 -22
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/params/ELastEvent.py +0 -20
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/commands/GetConfiguration.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/commands/GetLastData.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/commands/GetState.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/commands/SetConfiguration.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/Configuration.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/EvConnected.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/EvData.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/EvError.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/LastData.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/State.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/params/EErrorCode.py +0 -24
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/params/EState.py +0 -23
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/commands/GetConfiguration.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/commands/GetStatus.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/commands/SetColor.py +0 -46
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/commands/SetConfiguration.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/data/Configuration.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/data/EvOff.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/data/EvOn.py +0 -46
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/data/Status.py +0 -46
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/GetConfiguration.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/GetStatus.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/MoveToPosition.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/SetConfiguration.py +0 -40
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/SetPosition.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/Start.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/Stop.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/Configuration.py +0 -40
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvClosed.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvError.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvNewMainState.py +0 -33
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvNewSubState.py +0 -33
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvOpen.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvStart.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/Status.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/params/EDirection.py +0 -21
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/params/EErrorCode.py +0 -17
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/params/ENewState.py +0 -23
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/params/MOptions.py +0 -96
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/GetConfiguration.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/GetStatus.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/Off.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/On.py +0 -32
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/SetConfiguration.py +0 -54
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/Toggle.py +0 -39
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/Configuration.py +0 -54
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvCmdDelay.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvDisabled.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvError.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvOff.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvOn.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvToggle.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/Status.py +0 -33
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/schalter/params/EErrorCode.py +0 -18
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/schalter/params/EState.py +0 -23
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/schalter/params/MOptions.py +0 -96
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/systemTime/commands/GetTime.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/systemTime/commands/SetTime.py +0 -70
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/systemTime/data/EvError.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/systemTime/data/Time.py +0 -67
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/systemTime/params/EDate.py +0 -48
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/systemTime/params/EErrorCode.py +0 -22
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/systemTime/params/EMonth.py +0 -29
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/systemTime/params/EWeekDay.py +0 -24
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/EnableEvents.py +0 -33
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/GetConfiguration.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/GetEnabled.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/GetStatus.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/SetConfiguration.py +0 -55
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taster/data/Configuration.py +0 -55
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taster/data/Enabled.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvClicked.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvCovered.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvDoubleClick.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvEnabled.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvError.py +0 -25
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvFree.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvHoldEnd.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvHoldStart.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taster/data/Status.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taster/params/EEnable.py +0 -20
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taster/params/EState.py +0 -20
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taster/params/MEventMask.py +0 -96
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taster/params/MOptionMask.py +0 -96
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/commands/GetConfiguration.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/commands/GetStatus.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/commands/SetConfiguration.py +0 -88
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/Configuration.py +0 -88
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvAbove.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvError.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvInRange.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvLow.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvStatus.py +0 -40
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/Status.py +0 -40
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/params/EErrorCode.py +0 -30
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/params/ELastEvent.py +0 -20
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/commands/AnnounceServer.py +0 -53
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/commands/GetCurrentIp.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/data/CurrentIp.py +0 -46
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/data/EvWhoIsServer.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/commands/GetConfiguration.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/commands/GetStatus.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/commands/SetConfiguration.py +0 -88
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/Configuration.py +0 -88
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvCold.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvError.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvHot.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvStatus.py +0 -40
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvWarm.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/Status.py +0 -40
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/params/EErrorCode.py +0 -30
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/params/ELastEvent.py +0 -20
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/wetter/commands/GetWeather.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/wetter/data/Weather.py +0 -61
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands/GetConfiguration.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands/GetCurrentIp.py +0 -15
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands/SetConfiguration.py +0 -67
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands/WakeUpDevice.py +0 -60
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/wiFi/data/Configuration.py +0 -67
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/wiFi/data/CurrentIp.py +0 -46
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/wiFi/data/EvError.py +0 -26
- pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/wiFi/params/EErrorCode.py +0 -18
- pyhausbus-1.0.1/pyproject.toml +0 -20
- {pyhausbus-1.0.1 → pyhausbus-1.0.3}/pyhausbus/de/_init_.py +0 -0
- {pyhausbus-1.0.1 → pyhausbus-1.0.3}/pyhausbus/de/hausbus/_init_.py +0 -0
- {pyhausbus-1.0.1 → pyhausbus-1.0.3}/pyhausbus/de/hausbus/homeassistant/_init_.py +0 -0
- {pyhausbus-1.0.1 → pyhausbus-1.0.3}/pyhausbus/de/hausbus/homeassistant/proxy/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/analogEingang}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/analogEingang}/commands/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/analogEingang}/data/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/controller → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/analogEingang}/params/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/counter → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/counter → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller}/commands/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/counter → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller}/data/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/counter → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/controller}/params/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/currentReader → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/counter}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/currentReader → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/counter}/commands/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/currentReader → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/counter}/data/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/currentReader → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/counter}/params/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/daliLine → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/currentReader}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/daliLine → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/currentReader}/commands/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/daliLine → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/currentReader}/data/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/daliLine → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/currentReader}/params/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/digitalPort → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/daliLine}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/digitalPort → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/daliLine}/commands/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/digitalPort → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/daliLine}/data/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/digitalPort → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/daliLine}/params/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/dimmer → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/digitalPort}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/dimmer → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/digitalPort}/commands/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/dimmer → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/digitalPort}/data/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/dimmer → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/digitalPort}/params/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/ethernet → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/dimmer}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/ethernet → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/dimmer}/commands/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/ethernet → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/dimmer}/data/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/ethernet → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/dimmer}/params/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/drucksensor}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/drucksensor}/commands/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/drucksensor}/data/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/drucksensor}/params/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/gateway → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/ethernet}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/gateway → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/ethernet}/commands/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/gateway → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/ethernet}/data/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/gateway → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/ethernet}/params/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor}/commands/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor}/data/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor}/params/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/iRSensor → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/gateway}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/iRSensor → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/gateway}/commands/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/iRSensor → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/gateway}/data/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/led → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/gateway/params}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/led/commands → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/led/data → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/commands}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/led/params → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/params}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/iRSensor}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/commands}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/led}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/led}/commands/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/led}/data/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/led}/params/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/pCServer → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/pCServer → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton}/commands/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/pCServer → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton}/data/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/pIDController → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/commands}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/pIDController/params → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/data}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/params}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/commands → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pCA9555}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pCA9555}/data/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pCA9555}/params/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pCServer}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pCServer}/commands/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pCServer}/data/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/params → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pIDController}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/commands → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/data → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pIDController/params}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rollladen → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pT1000}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rollladen → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pT1000}/commands/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rollladen → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pT1000}/data/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/rollladen → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/pT1000}/params/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/schalter → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/schalter → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter}/commands/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/schalter → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter}/data/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/schalter → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/powerMeter}/params/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/systemTime → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/systemTime → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader}/commands/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/systemTime → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader}/data/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/systemTime → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader}/params/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taster → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taster → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer}/commands/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taster → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer}/data/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taster/params → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rollladen}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/commands → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/rollladen/params}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/params → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/schalter}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/tcpClient → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/commands → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/schalter/data}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/data → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/schalter/params}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/systemTime}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/systemTime}/commands/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/systemTime}/data/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/systemTime}/params/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/wetter → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taster}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/wetter → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taster}/commands/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/wetter → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taster}/data/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/wiFi → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taster/params}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/wiFi/data → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/commands}/_init_.py +0 -0
- {pyhausbus-1.0.1/pyhausbus/de/hausbus/homeassistant/proxy/wiFi/params → pyhausbus-1.0.3/pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data}/_init_.py +0 -0
pyhausbus-1.0.3/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2023 Hermann Hoeschen
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
pyhausbus-1.0.3/PKG-INFO
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: pyhausbus
|
3
|
+
Version: 1.0.3
|
4
|
+
Summary: Python based library for accessing haus-bus.de modules. Inteded to be used in a Home Assistant integration.
|
5
|
+
Home-page: https://haus-bus.secure-stores.de/
|
6
|
+
Author: Hermann Hoeschen
|
7
|
+
Author-email: info@haus-bus.de
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
9
|
+
Classifier: Operating System :: OS Independent
|
10
|
+
Classifier: Programming Language :: Python :: 2
|
11
|
+
Classifier: Programming Language :: Python :: 2.7
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
13
|
+
Classifier: Programming Language :: Python :: 3.4
|
14
|
+
Classifier: Programming Language :: Python :: 3.5
|
15
|
+
Classifier: Programming Language :: Python :: 3.6
|
16
|
+
Classifier: Programming Language :: Python :: 3.7
|
17
|
+
Classifier: Programming Language :: Python :: 3.8
|
18
|
+
Classifier: Programming Language :: Python :: 3.9
|
19
|
+
Classifier: Programming Language :: Python :: 3.10
|
20
|
+
Classifier: Programming Language :: Python :: 3.11
|
21
|
+
Classifier: Programming Language :: Python :: 3.12
|
22
|
+
Classifier: Programming Language :: Python :: 3.13
|
23
|
+
Project-URL: Bug Tracker, https://github.com/hausbus/homeassistant/issues
|
24
|
+
Project-URL: Repository, https://github.com/hausbus/homeassistant
|
25
|
+
Description-Content-Type: text/markdown
|
26
|
+
|
27
|
+
# pyhausbus
|
28
|
+
|
29
|
+
Python based library for accessing haus-bus.de modules. Intended to be used in a Home Assistant integration.
|
30
|
+
|
@@ -0,0 +1,22 @@
|
|
1
|
+
from pyhausbus.HausBusUtils import LOGGER
|
2
|
+
from pyhausbus.ObjectId import ObjectId
|
3
|
+
|
4
|
+
class ABusFeature:
|
5
|
+
|
6
|
+
def __init__(self, objectId:int):
|
7
|
+
self.objectId = objectId
|
8
|
+
self.name:str=""
|
9
|
+
|
10
|
+
def getObjectId(self) -> int:
|
11
|
+
return self.objectId
|
12
|
+
|
13
|
+
def getName(self) -> str:
|
14
|
+
return self.name
|
15
|
+
|
16
|
+
def setName(self, name:str):
|
17
|
+
self.name = name
|
18
|
+
|
19
|
+
def __str__(self):
|
20
|
+
dummy, classType = str(type(self)).rsplit(".", 1)
|
21
|
+
classType = classType[:-2]
|
22
|
+
return f"ABusFeature(type={classType}, name={self.name}, objectId={ObjectId(self.objectId)}"
|
@@ -0,0 +1,23 @@
|
|
1
|
+
import pyhausbus.HausBusUtils as HausBusUtils
|
2
|
+
|
3
|
+
|
4
|
+
class BusDataMessage:
|
5
|
+
|
6
|
+
def __init__(self, senderObjectId, receiverObjectId, data):
|
7
|
+
self.senderObjectId = senderObjectId
|
8
|
+
self.receiverObjectId = receiverObjectId
|
9
|
+
self.data = data
|
10
|
+
self.time = HausBusUtils.getClockIndependMillis()
|
11
|
+
|
12
|
+
def getSenderObjectId(self):
|
13
|
+
return self.senderObjectId
|
14
|
+
|
15
|
+
def getReceiverObjectId(self):
|
16
|
+
return self.receiverObjectId
|
17
|
+
|
18
|
+
def getData(self):
|
19
|
+
return self.data
|
20
|
+
|
21
|
+
def __str__(self):
|
22
|
+
return f"BusMessage(senderObjectId={self.senderObjectId}, receiverObjectId={self.receiverObjectId}, data={self.data})"
|
23
|
+
|
@@ -0,0 +1,110 @@
|
|
1
|
+
import threading
|
2
|
+
from pyhausbus.de.hausbus.homeassistant.proxy import ProxyFactory
|
3
|
+
from pyhausbus.HausBusUtils import *
|
4
|
+
from pyhausbus.BusDataMessage import BusDataMessage
|
5
|
+
from pyhausbus.IBusDataListener import IBusDataListener
|
6
|
+
import time
|
7
|
+
import importlib
|
8
|
+
from pyhausbus.UdpReceiveWorker import UdpReceiveWorker
|
9
|
+
import socket
|
10
|
+
import pyhausbus.HausBusUtils as HausBusUtils
|
11
|
+
import traceback
|
12
|
+
|
13
|
+
RS485_GATEWAY = "#RS485#"
|
14
|
+
EVENTS_START = 200
|
15
|
+
RESULT_START = 128
|
16
|
+
|
17
|
+
class BusHandler:
|
18
|
+
|
19
|
+
_singleInstance = None
|
20
|
+
sock:None
|
21
|
+
broadcastIp = "192.168.178.255"
|
22
|
+
listeners = []
|
23
|
+
|
24
|
+
@staticmethod
|
25
|
+
def getInstance():
|
26
|
+
if BusHandler._singleInstance is None:
|
27
|
+
BusHandler._singleInstance = BusHandler()
|
28
|
+
return BusHandler._singleInstance
|
29
|
+
|
30
|
+
def __init__(self):
|
31
|
+
if BusHandler._singleInstance is None:
|
32
|
+
self.sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
33
|
+
self.sock.setsockopt(socket.SOL_SOCKET, socket.SO_BROADCAST, 1)
|
34
|
+
x = UdpReceiveWorker(self.busDataReceived)
|
35
|
+
x.startWorker()
|
36
|
+
self._getBroadcastIp()
|
37
|
+
|
38
|
+
def _getBroadcastIp(self):
|
39
|
+
temp_socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
40
|
+
try:
|
41
|
+
temp_socket.connect(("8.8.8.8", 80))
|
42
|
+
own_ip = temp_socket.getsockname()[0].split('.')
|
43
|
+
self.broadcastIp = own_ip[0] + "." + own_ip[1] + "." + own_ip[2] + ".255"
|
44
|
+
finally:
|
45
|
+
temp_socket.close()
|
46
|
+
|
47
|
+
def busDataReceived(self, senderObjectId, receiverObjectId, functionId, functionData, gateway, corrupted:bool):
|
48
|
+
# Es kann entweder eine Antwort oder Event des Senders sein oder ein Aufruf auf dem Empfänger
|
49
|
+
featureClassId = 0
|
50
|
+
identifierId = 0
|
51
|
+
if (functionId < RESULT_START):
|
52
|
+
featureClassId = getClassId(receiverObjectId)
|
53
|
+
identifierId = receiverObjectId
|
54
|
+
else:
|
55
|
+
featureClassId = getClassId(senderObjectId)
|
56
|
+
identifierId = senderObjectId
|
57
|
+
|
58
|
+
LOGGER.debug("classId = " + str(featureClassId) + ", functionId = " + str(functionId))
|
59
|
+
className = ProxyFactory.getBusClassNameFor(featureClassId, functionId)
|
60
|
+
if (className=="de.hausbus.proxy.LogicalButton"):
|
61
|
+
LOGGER.debug("test")
|
62
|
+
|
63
|
+
try:
|
64
|
+
module_name, class_name = className.rsplit(".", 1)
|
65
|
+
module = importlib.import_module(className)
|
66
|
+
cls = getattr(module, class_name)
|
67
|
+
method = getattr(cls, "_fromBytes")
|
68
|
+
offset = [0]
|
69
|
+
newObject = method(functionData, offset)
|
70
|
+
|
71
|
+
add = ""
|
72
|
+
if (corrupted):
|
73
|
+
add = " (corrupted) "
|
74
|
+
|
75
|
+
message = gateway + " COMMAND IN " + add + " from " + str(getDeviceId(senderObjectId)) + " to " + str(getDeviceId(receiverObjectId)) + ": " + str(newObject) + ", Sender: " + formatObjectId(senderObjectId) + ", Receiver: " + str(formatObjectId(receiverObjectId))
|
76
|
+
LOGGER.debug(message)
|
77
|
+
|
78
|
+
if (not corrupted):
|
79
|
+
newMessage = BusDataMessage(senderObjectId, receiverObjectId, newObject)
|
80
|
+
LOGGER.debug("got: " + str(newObject) + " from " + str(senderObjectId) + " to " + str(receiverObjectId))
|
81
|
+
for actListener in self.listeners:
|
82
|
+
actListener.busDataReceived(newMessage)
|
83
|
+
except (Exception, RuntimeError, TypeError, NameError, OSError) as err:
|
84
|
+
LOGGER.error(err,exc_info=True,stack_info=True)
|
85
|
+
|
86
|
+
def sendData(self, data:bytearray, debug:str):
|
87
|
+
|
88
|
+
udpData:bytearray = self.prepareForUDP(data)
|
89
|
+
|
90
|
+
LOGGER.debug(UdpReceiveWorker.UDP_GATEWAY + " COMMAND OUT " + debug)
|
91
|
+
LOGGER.debug(UdpReceiveWorker.UDP_GATEWAY + " DATA OUT " + HausBusUtils.formatBytes(udpData))
|
92
|
+
|
93
|
+
try:
|
94
|
+
self.sock.sendto(udpData, (self.broadcastIp, UDP_PORT))
|
95
|
+
except socket.error as e:
|
96
|
+
LOGGER.error(e,exc_info=True,stack_info=True)
|
97
|
+
|
98
|
+
def prepareForUDP(self, data:bytearray) -> bytearray:
|
99
|
+
result = bytearray(len(data) + 2)
|
100
|
+
result[0] = 0xef
|
101
|
+
result[1] = 0xef
|
102
|
+
result[2:] = data[:]
|
103
|
+
return result
|
104
|
+
|
105
|
+
def addBusEventListener(self, listener:IBusDataListener):
|
106
|
+
if not listener in self.listeners:
|
107
|
+
self.listeners.append(listener)
|
108
|
+
|
109
|
+
def removeBusEventListener(self, listener:IBusDataListener):
|
110
|
+
self.listeners.remove(listener)
|
@@ -0,0 +1,84 @@
|
|
1
|
+
from pyhausbus.BusHandler import BusHandler
|
2
|
+
import pyhausbus.HausBusUtils as HausBusUtils
|
3
|
+
from pyhausbus.HausBusUtils import LOGGER
|
4
|
+
from pyhausbus.ObjectId import ObjectId
|
5
|
+
|
6
|
+
class HausBusCommand:
|
7
|
+
|
8
|
+
def __init__ (self, receiverObjectId:int, functionId:int, debug:str):
|
9
|
+
self.commandCounter:int = 0
|
10
|
+
self.receiverObjectId = receiverObjectId
|
11
|
+
self.debug = debug
|
12
|
+
self.busHandler = BusHandler.getInstance()
|
13
|
+
self.data:bytearray=bytearray()
|
14
|
+
self.params:bytearray=bytearray()
|
15
|
+
self.bytes:bytearray=None
|
16
|
+
|
17
|
+
# Kontroll-Byte
|
18
|
+
self.data.append(0)
|
19
|
+
|
20
|
+
# Nachrichtenzaehler
|
21
|
+
self.data.append(0)
|
22
|
+
|
23
|
+
# Sender-ID
|
24
|
+
for act in HausBusUtils.dWordToBytes(HausBusUtils.HOMESERVER_OBJECT_ID):
|
25
|
+
self.data.append(act)
|
26
|
+
|
27
|
+
# Empfaenger-ID
|
28
|
+
for act in HausBusUtils.dWordToBytes(receiverObjectId):
|
29
|
+
self.data.append(act)
|
30
|
+
|
31
|
+
self.params.append(functionId)
|
32
|
+
|
33
|
+
def addByte(self, byteParam:int):
|
34
|
+
self.params.append(byteParam)
|
35
|
+
|
36
|
+
def addSByte(self, sByteParam:int):
|
37
|
+
if (sByteParam < 0):
|
38
|
+
self.params.append((256 + sByteParam))
|
39
|
+
else:
|
40
|
+
self.params.append(sByteParam)
|
41
|
+
|
42
|
+
def addBlob(self, blob:bytearray):
|
43
|
+
for act in blob:
|
44
|
+
self.params.append(act)
|
45
|
+
|
46
|
+
def addString(self, value:str):
|
47
|
+
for i in range(len(value)):
|
48
|
+
self.params.append(value[i])
|
49
|
+
self.params.append(0)
|
50
|
+
|
51
|
+
def addMap(self, inMap):
|
52
|
+
for key, value in inMap.items():
|
53
|
+
self.addByte(key)
|
54
|
+
self.addByte(value)
|
55
|
+
|
56
|
+
def addWord(self, wordParam:int):
|
57
|
+
HausBusUtils.addWord(wordParam, self.params)
|
58
|
+
|
59
|
+
def addDWord(self, dWordParam:int):
|
60
|
+
HausBusUtils.addDword(dWordParam, self.params)
|
61
|
+
|
62
|
+
def _createBytes(self):
|
63
|
+
|
64
|
+
# Datenlaenge
|
65
|
+
for act in HausBusUtils.wordToBytes(len(self.params)):
|
66
|
+
self.data.append(act)
|
67
|
+
|
68
|
+
# Daten
|
69
|
+
for act in self.params:
|
70
|
+
self.data.append(act)
|
71
|
+
|
72
|
+
self.bytes = bytearray(len(self.data))
|
73
|
+
for i in range (len(self.data)):
|
74
|
+
self.bytes[i] = self.data[i]
|
75
|
+
|
76
|
+
def send(self):
|
77
|
+
LOGGER.debug("Sende " + self.debug + " an " + str(ObjectId(self.receiverObjectId)))
|
78
|
+
if (self.bytes == None):
|
79
|
+
self._createBytes()
|
80
|
+
|
81
|
+
return self.busHandler.sendData(self.bytes, self.debug + " to " + str(HausBusUtils.getDeviceId(self.receiverObjectId)))
|
82
|
+
|
83
|
+
def __str__(self):
|
84
|
+
return f"HausBusCommand(debug={self.debug} to {HausBusUtils.formatObjectId(self.receiverObjectId)}, params={self.params}, data={self.data}"
|
@@ -0,0 +1,203 @@
|
|
1
|
+
import logging
|
2
|
+
import time
|
3
|
+
import traceback
|
4
|
+
|
5
|
+
LOGGER = logging.getLogger("pyhausbus")
|
6
|
+
|
7
|
+
HOMESERVER_DEVICE_ID: int = 9998
|
8
|
+
HOMESERVER_OBJECT_ID: int = (HOMESERVER_DEVICE_ID << 16) + (0 << 8) + 1
|
9
|
+
|
10
|
+
UDP_PORT = 5855
|
11
|
+
|
12
|
+
|
13
|
+
def getObjectId(deviceId: int, classId: int, instanceId: int) -> int:
|
14
|
+
return (deviceId << 16) + (classId << 8) + instanceId
|
15
|
+
|
16
|
+
|
17
|
+
def bytesToDWord(data: bytearray, offset) -> int:
|
18
|
+
try:
|
19
|
+
result = 0
|
20
|
+
result += data[offset[0]] & 0xFF
|
21
|
+
offset[0] += 1
|
22
|
+
|
23
|
+
result += (data[offset[0]] & 0xFF) * 256
|
24
|
+
offset[0] += 1
|
25
|
+
|
26
|
+
result += (data[offset[0]] & 0xFF) * 65536
|
27
|
+
offset[0] += 1
|
28
|
+
|
29
|
+
result += (data[offset[0]] & 0xFF) * 16777216
|
30
|
+
offset[0] += 1
|
31
|
+
|
32
|
+
return result
|
33
|
+
except Exception as err:
|
34
|
+
LOGGER.error(err, exc_info=True, stack_info=True)
|
35
|
+
return 0
|
36
|
+
|
37
|
+
|
38
|
+
def bytesToWord(data: bytearray, offset) -> int:
|
39
|
+
try:
|
40
|
+
result = 0
|
41
|
+
result += data[offset[0]] & 0xFF
|
42
|
+
offset[0] += 1
|
43
|
+
|
44
|
+
result += (data[offset[0]] & 0xFF) * 256
|
45
|
+
offset[0] += 1
|
46
|
+
|
47
|
+
return result
|
48
|
+
except Exception as err:
|
49
|
+
LOGGER.error(err, exc_info=True, stack_info=True)
|
50
|
+
return 0
|
51
|
+
|
52
|
+
|
53
|
+
def bytesToInt(data: bytearray, offset) -> int:
|
54
|
+
try:
|
55
|
+
if len(data) <= offset[0]:
|
56
|
+
return 0
|
57
|
+
result = data[offset[0]] & 0xFF
|
58
|
+
offset[0] += 1
|
59
|
+
return result
|
60
|
+
except Exception as err:
|
61
|
+
LOGGER.error(err, exc_info=True, stack_info=True)
|
62
|
+
return 0
|
63
|
+
|
64
|
+
|
65
|
+
def bytesToString(data: bytearray, offset) -> str:
|
66
|
+
try:
|
67
|
+
result = ""
|
68
|
+
for i in range(offset[0], len(data)):
|
69
|
+
offset[0] += 1
|
70
|
+
if data[i] == 0:
|
71
|
+
break
|
72
|
+
|
73
|
+
result += chr(data[i])
|
74
|
+
return result
|
75
|
+
except Exception as err:
|
76
|
+
LOGGER.error(err, exc_info=True, stack_info=True)
|
77
|
+
return ""
|
78
|
+
|
79
|
+
|
80
|
+
def bytesToDebugString(message: bytearray) -> str:
|
81
|
+
result = ""
|
82
|
+
for byte in message:
|
83
|
+
if result != "":
|
84
|
+
result = result + ", "
|
85
|
+
result = result + hex(byte)
|
86
|
+
return result
|
87
|
+
|
88
|
+
|
89
|
+
def getInstanceId(objectId) -> int:
|
90
|
+
return (objectId) & 0xFF
|
91
|
+
|
92
|
+
|
93
|
+
def getDeviceId(objectId) -> int:
|
94
|
+
return ((objectId >> 24) & 0xFF) * 256 + ((objectId >> 16) & 0xFF)
|
95
|
+
|
96
|
+
|
97
|
+
def getClassId(objectId) -> int:
|
98
|
+
return (objectId >> 8) & 0xFF
|
99
|
+
|
100
|
+
|
101
|
+
def formatObjectId(objectId) -> str:
|
102
|
+
result = "[DeviceId: " + str(getDeviceId(objectId))
|
103
|
+
result += ", ClassId: " + str(getClassId(objectId))
|
104
|
+
result += ", Instance: " + str(getInstanceId(objectId)) + "]"
|
105
|
+
return result
|
106
|
+
|
107
|
+
|
108
|
+
def getClockIndependMillis():
|
109
|
+
return time.perf_counter() * 1000
|
110
|
+
|
111
|
+
|
112
|
+
def setBit(is_set: bool, bit: int, value: int) -> int:
|
113
|
+
if is_set:
|
114
|
+
value |= 1 << bit
|
115
|
+
else:
|
116
|
+
value &= ~(1 << bit)
|
117
|
+
return value
|
118
|
+
|
119
|
+
|
120
|
+
def isBitSet(bit: int, value: int) -> bool:
|
121
|
+
return ((value >> bit) & 1) > 0
|
122
|
+
|
123
|
+
|
124
|
+
def bytesToBlob(data: bytearray, offset) -> bytearray:
|
125
|
+
try:
|
126
|
+
result = bytearray(len(data) - offset[0])
|
127
|
+
result[:] = data[offset[0] :]
|
128
|
+
offset[0] = offset[0] + len(data)
|
129
|
+
return result
|
130
|
+
except Exception as err:
|
131
|
+
LOGGER.error(err, exc_info=True, stack_info=True)
|
132
|
+
return 0
|
133
|
+
|
134
|
+
|
135
|
+
def dWordToBytes(value: int) -> bytearray:
|
136
|
+
result = bytearray(4)
|
137
|
+
result[0] = value & 0xFF
|
138
|
+
result[1] = (value >> 8) & 0xFF
|
139
|
+
result[2] = (value >> 16) & 0xFF
|
140
|
+
result[3] = (value >> 24) & 0xFF
|
141
|
+
return result
|
142
|
+
|
143
|
+
|
144
|
+
def addWord(value: int, inOutList):
|
145
|
+
inOutList.append(value & 0xFF)
|
146
|
+
inOutList.append((value >> 8) & 0xFF)
|
147
|
+
|
148
|
+
|
149
|
+
def addDword(value: int, inOutList):
|
150
|
+
inOutList.append(value & 0xFF)
|
151
|
+
inOutList.append((value >> 8) & 0xFF)
|
152
|
+
inOutList.append((value >> 16) & 0xFF)
|
153
|
+
inOutList.append((value >> 24) & 0xFF)
|
154
|
+
|
155
|
+
|
156
|
+
def wordToBytes(value: int) -> bytearray:
|
157
|
+
result = bytearray(2)
|
158
|
+
result[0] = value & 0xFF
|
159
|
+
result[1] = (value >> 8) & 0xFF
|
160
|
+
return result
|
161
|
+
|
162
|
+
|
163
|
+
def bytesToSInt(data: bytearray, offset) -> int:
|
164
|
+
result = data[offset[0]] & 0xFF
|
165
|
+
offset[0] += 1
|
166
|
+
if result > 127:
|
167
|
+
result -= 256
|
168
|
+
return result
|
169
|
+
|
170
|
+
|
171
|
+
def formatBytes(
|
172
|
+
data: bytearray, offset: int = 0, length: int = -1, asHex: bool = True
|
173
|
+
) -> str:
|
174
|
+
if length == -1:
|
175
|
+
length = len(data)
|
176
|
+
|
177
|
+
if data == None:
|
178
|
+
return "NULL"
|
179
|
+
|
180
|
+
result = ""
|
181
|
+
|
182
|
+
for i in range(offset, length):
|
183
|
+
if asHex:
|
184
|
+
result += "0x" + hex(data[i])
|
185
|
+
else:
|
186
|
+
result += data[i] & 0xFF
|
187
|
+
return result
|
188
|
+
|
189
|
+
|
190
|
+
def bytesToList(data: bytearray, offset):
|
191
|
+
try:
|
192
|
+
result = bytearray()
|
193
|
+
offsetStart = offset[0]
|
194
|
+
for i in range(offsetStart, len(data), 2):
|
195
|
+
key = data[i] & 0xFF
|
196
|
+
value = data[i + 1] & 0xFF
|
197
|
+
result.append(key)
|
198
|
+
result.append(value)
|
199
|
+
offset[0] += 2
|
200
|
+
return result
|
201
|
+
except Exception as err:
|
202
|
+
LOGGER.error(err, exc_info=True, stack_info=True)
|
203
|
+
return bytearray()
|
@@ -0,0 +1,86 @@
|
|
1
|
+
from pyhausbus.BusHandler import BusHandler
|
2
|
+
from pyhausbus.Templates import Templates
|
3
|
+
from pyhausbus.IBusDataListener import IBusDataListener
|
4
|
+
from pyhausbus.de.hausbus.homeassistant.proxy.Controller import Controller
|
5
|
+
from pyhausbus.de.hausbus.homeassistant.proxy.controller.params.EIndex import EIndex
|
6
|
+
from pyhausbus.de.hausbus.homeassistant.proxy.controller.data.RemoteObjects import (
|
7
|
+
RemoteObjects,
|
8
|
+
)
|
9
|
+
from pyhausbus.HausBusUtils import LOGGER
|
10
|
+
import pyhausbus.de.hausbus.homeassistant.proxy.ProxyFactory as ProxyFactory
|
11
|
+
import pyhausbus.HausBusUtils as HausBusUtils
|
12
|
+
from pyhausbus.de.hausbus.homeassistant.proxy.controller.data.ModuleId import ModuleId
|
13
|
+
from pyhausbus.de.hausbus.homeassistant.proxy.controller.data.Configuration import Configuration
|
14
|
+
import importlib
|
15
|
+
import traceback
|
16
|
+
import time
|
17
|
+
import threading
|
18
|
+
from pyhausbus.de.hausbus.homeassistant.proxy.controller.data.EvStarted import EvStarted
|
19
|
+
from pyhausbus.ResultWorker import ResultWorker
|
20
|
+
|
21
|
+
class HomeServer(IBusDataListener):
|
22
|
+
_instance = None
|
23
|
+
bushandler = None
|
24
|
+
modulesIds = {}
|
25
|
+
configurations = {}
|
26
|
+
|
27
|
+
def __new__(cls, *args, **kwargs):
|
28
|
+
if not cls._instance:
|
29
|
+
cls._instance = super().__new__(cls, *args, **kwargs)
|
30
|
+
return cls._instance
|
31
|
+
|
32
|
+
def __init__(self):
|
33
|
+
LOGGER.debug("init homeserver")
|
34
|
+
self.bushandler = BusHandler.getInstance()
|
35
|
+
self.bushandler.addBusEventListener(ResultWorker())
|
36
|
+
self.bushandler.addBusEventListener(self)
|
37
|
+
|
38
|
+
def searchDevices(self):
|
39
|
+
controler = Controller(0)
|
40
|
+
controler.getModuleId(EIndex.RUNNING)
|
41
|
+
|
42
|
+
def addBusEventListener(self, listener: IBusDataListener):
|
43
|
+
self.bushandler.addBusEventListener(listener)
|
44
|
+
|
45
|
+
def removeBusEventListener(self, listener: IBusDataListener):
|
46
|
+
self.bushandler.removeBusEventListener(listener)
|
47
|
+
|
48
|
+
def getDeviceInstances(self, senderObjectId: int, remoteObjects: RemoteObjects):
|
49
|
+
deviceId = HausBusUtils.getDeviceId(senderObjectId)
|
50
|
+
objectList = remoteObjects.getObjectList()
|
51
|
+
moduleId = self.modulesIds[deviceId];
|
52
|
+
configuration = self.configurations[deviceId];
|
53
|
+
|
54
|
+
result = []
|
55
|
+
for i in range(0, len(objectList), 2):
|
56
|
+
instanceId = objectList[i]
|
57
|
+
classId = objectList[i + 1]
|
58
|
+
className = ProxyFactory.getBusClassNameForClass(classId)
|
59
|
+
objectId = HausBusUtils.getObjectId(deviceId, classId, instanceId)
|
60
|
+
featureName = Templates.get_instance().get_feature_name_from_template(moduleId.getFirmwareId(), configuration.getFCKE(), classId, instanceId);
|
61
|
+
|
62
|
+
try:
|
63
|
+
module_name, class_name = className.rsplit(".", 1)
|
64
|
+
module = importlib.import_module(className)
|
65
|
+
cls = getattr(module, class_name)
|
66
|
+
obj = cls(objectId)
|
67
|
+
if featureName!=None:
|
68
|
+
obj.setName(featureName)
|
69
|
+
result.append(obj)
|
70
|
+
except Exception as err:
|
71
|
+
LOGGER.error(err,exc_info=True, stack_info=True)
|
72
|
+
return result
|
73
|
+
|
74
|
+
def busDataReceived(self, busDataMessage):
|
75
|
+
"""if a device restarts during runtime, we automatically read moduleId"""
|
76
|
+
if isinstance(busDataMessage.getData(), ModuleId):
|
77
|
+
self.modulesIds[HausBusUtils.getDeviceId(busDataMessage.getSenderObjectId())]=busDataMessage.getData();
|
78
|
+
Controller(busDataMessage.getSenderObjectId()).getConfiguration()
|
79
|
+
|
80
|
+
if isinstance(busDataMessage.getData(), Configuration):
|
81
|
+
self.configurations[HausBusUtils.getDeviceId(busDataMessage.getSenderObjectId())]=busDataMessage.getData();
|
82
|
+
Controller(busDataMessage.getSenderObjectId()).getRemoteObjects()
|
83
|
+
|
84
|
+
""" if a device restarts during runtime, we automatically read moduleId"""
|
85
|
+
if isinstance(busDataMessage.getData(), EvStarted):
|
86
|
+
Controller(busDataMessage.getSenderObjectId()).getModuleId(EIndex.RUNNING)
|