pyhausbus 1.0.0__py2.py3-none-any.whl → 1.0.2__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pyhausbus/ABusFeature.py +22 -22
- pyhausbus/BusDataMessage.py +23 -23
- pyhausbus/BusHandler.py +110 -110
- pyhausbus/HausBusCommand.py +83 -83
- pyhausbus/HausBusDevice.py +70 -0
- pyhausbus/HausBusUtils.py +203 -193
- pyhausbus/HomeServer.py +86 -68
- pyhausbus/IBusDataListener.py +6 -6
- pyhausbus/Main.py +100 -100
- pyhausbus/ObjectId.py +22 -22
- pyhausbus/ResultWorker.py +53 -53
- pyhausbus/Templates.py +135 -0
- pyhausbus/UdpReceiveWorker.py +73 -73
- pyhausbus/WeekTime.py +55 -55
- pyhausbus/de/hausbus/homeassistant/proxy/AnalogEingang.py +139 -0
- pyhausbus/de/hausbus/homeassistant/proxy/Controller.py +357 -342
- pyhausbus/de/hausbus/homeassistant/proxy/Counter.py +65 -65
- pyhausbus/de/hausbus/homeassistant/proxy/CurrentReader.py +133 -121
- pyhausbus/de/hausbus/homeassistant/proxy/DaliLine.py +63 -63
- pyhausbus/de/hausbus/homeassistant/proxy/DigitalPort.py +40 -40
- pyhausbus/de/hausbus/homeassistant/proxy/Dimmer.py +91 -91
- pyhausbus/de/hausbus/homeassistant/proxy/Drucksensor.py +141 -0
- pyhausbus/de/hausbus/homeassistant/proxy/Ethernet.py +61 -61
- pyhausbus/de/hausbus/homeassistant/proxy/Feuchtesensor.py +77 -77
- pyhausbus/de/hausbus/homeassistant/proxy/Gateway.py +108 -97
- pyhausbus/de/hausbus/homeassistant/proxy/Helligkeitssensor.py +77 -77
- pyhausbus/de/hausbus/homeassistant/proxy/IRSensor.py +55 -55
- pyhausbus/de/hausbus/homeassistant/proxy/Led.py +117 -116
- pyhausbus/de/hausbus/homeassistant/proxy/LogicalButton.py +116 -116
- pyhausbus/de/hausbus/homeassistant/proxy/ModBusMaster.py +34 -34
- pyhausbus/de/hausbus/homeassistant/proxy/ModbusSlave.py +13 -13
- pyhausbus/de/hausbus/homeassistant/proxy/PCA9555.py +29 -0
- pyhausbus/de/hausbus/homeassistant/proxy/PCServer.py +67 -67
- pyhausbus/de/hausbus/homeassistant/proxy/PIDController.py +69 -64
- pyhausbus/de/hausbus/homeassistant/proxy/PT1000.py +153 -0
- pyhausbus/de/hausbus/homeassistant/proxy/PowerMeter.py +77 -77
- pyhausbus/de/hausbus/homeassistant/proxy/ProxyFactory.py +86 -12
- pyhausbus/de/hausbus/homeassistant/proxy/RFIDReader.py +78 -78
- pyhausbus/de/hausbus/homeassistant/proxy/RGBDimmer.py +63 -63
- pyhausbus/de/hausbus/homeassistant/proxy/Rollladen.py +110 -110
- pyhausbus/de/hausbus/homeassistant/proxy/Schalter.py +127 -104
- pyhausbus/de/hausbus/homeassistant/proxy/SnmpAgent.py +13 -13
- pyhausbus/de/hausbus/homeassistant/proxy/SystemTime.py +42 -42
- pyhausbus/de/hausbus/homeassistant/proxy/Taster.py +128 -118
- pyhausbus/de/hausbus/homeassistant/proxy/Taupunkt.py +77 -77
- pyhausbus/de/hausbus/homeassistant/proxy/TcpClient.py +38 -38
- pyhausbus/de/hausbus/homeassistant/proxy/Temperatursensor.py +78 -78
- pyhausbus/de/hausbus/homeassistant/proxy/Wetter.py +26 -26
- pyhausbus/de/hausbus/homeassistant/proxy/WiFi.py +60 -60
- pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/_init_.py +1 -0
- pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/commands/GetConfiguration.py +15 -0
- pyhausbus/de/hausbus/homeassistant/proxy/{gateway/commands/CheckBusTiming.py → analogEingang/commands/GetStatus.py} +8 -8
- pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/commands/SetConfiguration.py +74 -0
- pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/commands/_init_.py +1 -0
- pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/data/Configuration.py +74 -0
- pyhausbus/de/hausbus/homeassistant/proxy/{gateway/commands/ResetBusTiming.py → analogEingang/data/EvHigh.py} +8 -8
- pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/data/EvInRange.py +15 -0
- pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/data/EvLow.py +15 -0
- pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/data/EvStatus.py +33 -0
- pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/data/Status.py +25 -0
- pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/data/_init_.py +1 -0
- pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/params/ELastEvent.py +28 -0
- pyhausbus/de/hausbus/homeassistant/proxy/analogEingang/params/_init_.py +1 -0
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/EnableFeature.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GenerateRandomDeviceId.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetModuleId.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetRemoteObjects.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetRuleState.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetSystemVariable.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetTime.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetUnitGroupStatus.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/GetUnusedMemory.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/Ping.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/ReadMemory.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/ReadRules.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/Reset.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/ResetOneWireManager.py +25 -0
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetConfiguration.py +10 -10
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetDebugOptions.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetRuleState.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetSunTimes.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetSystemVariable.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetTime.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/SetUnitGroupState.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/TriggerRuleElement.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/WriteMemory.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/commands/WriteRules.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/Configuration.py +10 -10
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvConsole.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvDay.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvGroupOff.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvGroupOn.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvGroupUndefined.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvNewDeviceId.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvNight.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvResetWifi.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvStarted.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvSystemVariableChanged.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvTime.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/EvZeroCrossData.py +23 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/MemoryData.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/MemoryStatus.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/ModuleId.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/Pong.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/RemoteObjects.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/RuleState.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/RulesData.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/SystemVariable.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/Time.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/TimeDifference.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/TriggeredRule.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/UnitGroupStatus.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/data/UnusedMemory.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EErrorCode.py +17 -4
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EFeatureId.py +13 -4
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EFirmwareId.py +15 -6
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EIndex.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EReason.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/ESlotType.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EStatus.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/EType.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/MLogicalButtonMask.py +61 -61
- pyhausbus/de/hausbus/homeassistant/proxy/controller/params/MOption.py +61 -61
- pyhausbus/de/hausbus/homeassistant/proxy/counter/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/counter/commands/GetStatus.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/counter/commands/SetConfiguration.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/counter/commands/SetCount.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/counter/data/Configuration.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/counter/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/counter/data/EvStatus.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/counter/data/Status.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/counter/params/EErrorCode.py +13 -4
- pyhausbus/de/hausbus/homeassistant/proxy/counter/params/MMode.py +61 -61
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/ClearSignalCount.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/DecSignalCount.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/GetCurrent.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/GetPower.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/GetSignalCount.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/IncSignalCount.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/SetConfiguration.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/commands/SetSignalCount.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/Configuration.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/Current.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvCurrent.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvDebug.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvError.py +26 -0
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvInterrupt.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/EvSignal.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/Power.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/data/SignalCount.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/params/EErrorCode.py +27 -0
- pyhausbus/de/hausbus/homeassistant/proxy/currentReader/params/MConfig.py +13 -13
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/AllOff.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/AllOn.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/GetConfiguration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/SendCommand.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/commands/SetConfiguration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/data/Configuration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/data/Status.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/daliLine/params/EErrorCode.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/commands/SetConfiguration.py +11 -11
- pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/data/Configuration.py +28 -28
- pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/params/EErrorCode.py +13 -4
- pyhausbus/de/hausbus/homeassistant/proxy/digitalPort/params/EPin.py +13 -4
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/GetStatus.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/SetBrightness.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/SetConfiguration.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/Start.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/commands/Stop.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/Configuration.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/EvOff.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/EvOn.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/EvStart.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/data/Status.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/params/EDirection.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/params/EErrorCode.py +14 -4
- pyhausbus/de/hausbus/homeassistant/proxy/dimmer/params/EMode.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/_init_.py +1 -0
- pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/commands/GetConfiguration.py +15 -0
- pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/commands/GetStatus.py +15 -0
- pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/commands/SetConfiguration.py +74 -0
- pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/commands/_init_.py +1 -0
- pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/Configuration.py +74 -0
- pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/EvHigh.py +15 -0
- pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/EvInRange.py +15 -0
- pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/EvLow.py +15 -0
- pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/EvStatus.py +33 -0
- pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/Status.py +33 -0
- pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/data/_init_.py +1 -0
- pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/params/ELastEvent.py +28 -0
- pyhausbus/de/hausbus/homeassistant/proxy/drucksensor/params/_init_.py +1 -0
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/commands/GetCurrentIp.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/commands/SetConfiguration.py +10 -10
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/commands/WakeUpDevice.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/data/Configuration.py +10 -10
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/data/CurrentIp.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/params/EErrorCode.py +13 -4
- pyhausbus/de/hausbus/homeassistant/proxy/ethernet/params/MOptions.py +61 -61
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/commands/GetStatus.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/commands/SetConfiguration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/Configuration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvConfortable.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvDry.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvStatus.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/EvWet.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/data/Status.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/params/EErrorCode.py +14 -4
- pyhausbus/de/hausbus/homeassistant/proxy/feuchtesensor/params/ELastEvent.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/GetConnectedDevices.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/{GetBusTiming.py → GetMinIdleTime.py} +8 -8
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/SetConfiguration.py +10 -10
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/SetMinIdleTime.py +25 -0
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/commands/SetPreferLoxone.py +26 -0
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/Configuration.py +10 -10
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/ConnectedDevices.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/EvGatewayLoad.py +38 -17
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/MinIdleTime.py +25 -0
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/params/EErrorCode.py +14 -4
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/params/EValue.py +27 -0
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/params/MOptions.py +65 -65
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/commands/GetStatus.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/commands/SetConfiguration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/Configuration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvBright.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvDark.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvLight.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/EvStatus.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/data/Status.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/params/EErrorCode.py +14 -4
- pyhausbus/de/hausbus/homeassistant/proxy/helligkeitssensor/params/ELastEvent.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/commands/Off.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/commands/On.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvClicked.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvHoldEnd.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvHoldStart.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvOff.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/iRSensor/data/EvOn.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/led/commands/Blink.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/led/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/led/commands/GetMinBrightness.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/led/commands/GetStatus.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/led/commands/Off.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/led/commands/On.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/led/commands/SetConfiguration.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/led/commands/SetMinBrightness.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/led/data/Configuration.py +10 -10
- pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvBlink.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvCmdDelay.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvError.py +10 -9
- pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvOff.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/led/data/EvOn.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/led/data/MinBrightness.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/led/data/Status.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/led/params/EErrorCode.py +26 -0
- pyhausbus/de/hausbus/homeassistant/proxy/led/params/MOptions.py +61 -61
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/Blink.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/GetMinBrightness.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/GetStatus.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/Off.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/On.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/SetButtonConfiguration.py +10 -10
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/SetConfiguration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/SetLedConfiguration.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/commands/SetMinBrightness.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/Configuration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/EvBlink.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/EvOff.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/EvOn.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/data/Status.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/EErrorCode.py +14 -4
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/EStatus.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/MEventMask.py +65 -65
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/MOptionMask.py +61 -61
- pyhausbus/de/hausbus/homeassistant/proxy/logicalButton/params/MOptions.py +61 -61
- pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/commands/GetConfiguration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/commands/SetConfiguration.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/data/Configuration.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/modBusMaster/params/ESensorType.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/pCA9555/_init_.py +1 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pCA9555/data/EvError.py +26 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pCA9555/data/_init_.py +1 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pCA9555/params/EErrorCode.py +28 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pCA9555/params/_init_.py +1 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Exec.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Quit.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/ReloadUserPlugin.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Restart.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/SetVariable.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Shutdown.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/pCServer/commands/Standby.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/pCServer/data/EvOffline.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/pCServer/data/EvOnline.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands/Enable.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands/SetConfiguration.py +18 -10
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/commands/SetTargetValue.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data/Configuration.py +18 -10
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data/EvOff.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/data/EvOn.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/params/EEnable.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/params/EErrorCode.py +15 -4
- pyhausbus/de/hausbus/homeassistant/proxy/pIDController/params/MOptions.py +96 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/_init_.py +1 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/commands/GetConfiguration.py +15 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/commands/GetStatus.py +15 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/commands/SetConfiguration.py +74 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/commands/_init_.py +1 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/Configuration.py +74 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/EvError.py +26 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/EvHigh.py +15 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/EvInRange.py +15 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/EvLow.py +15 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/EvStatus.py +33 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/Status.py +33 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/data/_init_.py +1 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/params/EErrorCode.py +40 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/params/ELastEvent.py +28 -0
- pyhausbus/de/hausbus/homeassistant/proxy/pT1000/params/_init_.py +1 -0
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/commands/GetStatus.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/commands/SetConfiguration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/Configuration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvHighPower.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvLowPower.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvMediumPower.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/EvStatus.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/data/Status.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/params/EErrorCode.py +14 -4
- pyhausbus/de/hausbus/homeassistant/proxy/powerMeter/params/ELastEvent.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/commands/GetLastData.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/commands/GetState.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/commands/SetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/Configuration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/EvConnected.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/EvData.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/LastData.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/data/State.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/params/EErrorCode.py +13 -4
- pyhausbus/de/hausbus/homeassistant/proxy/rFIDReader/params/EState.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/commands/GetStatus.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/commands/SetColor.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/commands/SetConfiguration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/data/Configuration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/data/EvOff.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/data/EvOn.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/rGBDimmer/data/Status.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/GetStatus.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/MoveToPosition.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/SetConfiguration.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/SetPosition.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/Start.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/commands/Stop.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/Configuration.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvClosed.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvNewMainState.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvNewSubState.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvOpen.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/EvStart.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/data/Status.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/params/EDirection.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/params/EErrorCode.py +14 -4
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/params/ENewState.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/rollladen/params/MOptions.py +65 -65
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/GetStatus.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/Off.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/On.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/SetConfiguration.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/Toggle.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/commands/ToggleByDuty.py +32 -0
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/Configuration.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvCmdDelay.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvDisabled.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvOff.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvOn.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/EvToggle.py +31 -7
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/data/Status.py +26 -12
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/params/EErrorCode.py +14 -4
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/params/EState.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/schalter/params/MOptions.py +61 -61
- pyhausbus/de/hausbus/homeassistant/proxy/systemTime/commands/GetTime.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/systemTime/commands/SetTime.py +10 -10
- pyhausbus/de/hausbus/homeassistant/proxy/systemTime/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/systemTime/data/Time.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/systemTime/params/EDate.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/systemTime/params/EErrorCode.py +13 -4
- pyhausbus/de/hausbus/homeassistant/proxy/systemTime/params/EMonth.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/systemTime/params/EWeekDay.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/EnableEvents.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/GetEnabled.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/GetStatus.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/SetConfiguration.py +10 -10
- pyhausbus/de/hausbus/homeassistant/proxy/taster/commands/TriggerStatusEvent.py +15 -0
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/Configuration.py +10 -10
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/Enabled.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvClicked.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvCovered.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvDoubleClick.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvEnabled.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvError.py +10 -9
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvFree.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvHoldEnd.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/EvHoldStart.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/taster/data/Status.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/taster/params/EEnable.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/taster/params/EErrorCode.py +27 -0
- pyhausbus/de/hausbus/homeassistant/proxy/taster/params/EState.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/taster/params/MEventMask.py +65 -65
- pyhausbus/de/hausbus/homeassistant/proxy/taster/params/MOptionMask.py +61 -61
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/commands/GetStatus.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/commands/SetConfiguration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/Configuration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvAbove.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvInRange.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvLow.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/EvStatus.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/data/Status.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/params/EErrorCode.py +14 -4
- pyhausbus/de/hausbus/homeassistant/proxy/taupunkt/params/ELastEvent.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/commands/AnnounceServer.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/commands/GetCurrentIp.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/data/CurrentIp.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/tcpClient/data/EvWhoIsServer.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/commands/GetStatus.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/commands/SetConfiguration.py +8 -8
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/Configuration.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvCold.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvHot.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvStatus.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/EvWarm.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/data/Status.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/params/EErrorCode.py +14 -4
- pyhausbus/de/hausbus/homeassistant/proxy/temperatursensor/params/ELastEvent.py +12 -4
- pyhausbus/de/hausbus/homeassistant/proxy/wetter/commands/GetWeather.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/wetter/data/Weather.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands/GetConfiguration.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands/GetCurrentIp.py +6 -6
- pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands/SetConfiguration.py +8 -8
- pyhausbus/de/hausbus/homeassistant/proxy/wiFi/commands/WakeUpDevice.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/wiFi/data/Configuration.py +8 -8
- pyhausbus/de/hausbus/homeassistant/proxy/wiFi/data/CurrentIp.py +7 -7
- pyhausbus/de/hausbus/homeassistant/proxy/wiFi/data/EvError.py +9 -9
- pyhausbus/de/hausbus/homeassistant/proxy/wiFi/params/EErrorCode.py +14 -4
- pyhausbus/templates/AR8_30_8-fach-Relaismodul.tpl +18 -0
- pyhausbus/templates/ESP32C3_69_WLAN-Steckdose.tpl +5 -0
- pyhausbus/templates/ESP32_00_4-fach-0-10V-Dimmer.tpl +14 -0
- pyhausbus/templates/ESP32_01_4-fach-1-10V-Dimmer.tpl +10 -0
- pyhausbus/templates/ESP32_04_4-fach-Relaismodul.tpl +12 -0
- pyhausbus/templates/ESP32_08_8-fach-Relaismodul.tpl +18 -0
- pyhausbus/templates/ESP32_0A_12-fach-Relaismodul.tpl +22 -0
- pyhausbus/templates/ESP32_0C_16-fach-Relaismodul.tpl +26 -0
- pyhausbus/templates/ESP32_0D_8-fach-Motormodul.tpl +18 -0
- pyhausbus/templates/ESP32_10_22-fach-UP-IO.tpl +29 -0
- pyhausbus/templates/ESP32_18_6-fach-Taster.tpl +33 -0
- pyhausbus/templates/ESP32_19_4-fach-Taster.tpl +29 -0
- pyhausbus/templates/ESP32_1A_2-fach-Taster.tpl +25 -0
- pyhausbus/templates/ESP32_1B_1-fach-Taster.tpl +23 -0
- pyhausbus/templates/ESP32_1C_6-fach-Taster.tpl +29 -0
- pyhausbus/templates/ESP32_20_32-fach-IO.tpl +39 -0
- pyhausbus/templates/ESP32_28_8-fach-Dimmer.tpl +18 -0
- pyhausbus/templates/ESP32_30_2-fach-RGB-Dimmer.tpl +17 -0
- pyhausbus/templates/ESP32_31_2-fach-RGB-Dimmer.tpl +17 -0
- pyhausbus/templates/ESP32_65_LAN-RS485-Brueckenmodul.tpl +1 -0
- pyhausbus/templates/ESP32_99_LocalBroadcastDevice.tpl +1 -0
- pyhausbus/templates/FckmMapping.def +1 -0
- pyhausbus/templates/HBC_00_4-fach-0-10V-Dimmer.tpl +10 -0
- pyhausbus/templates/HBC_01_4-fach-1-10V-Dimmer.tpl +10 -0
- pyhausbus/templates/HBC_08_8-fach-Relaismodul.tpl +18 -0
- pyhausbus/templates/HBC_0C_16-fach-Relaismodul.tpl +26 -0
- pyhausbus/templates/HBC_10_24-fach-UP-IO.tpl +31 -0
- pyhausbus/templates/HBC_18_6-fach-Taster.tpl +34 -0
- pyhausbus/templates/HBC_19_4-fach-Taster.tpl +28 -0
- pyhausbus/templates/HBC_1A_2-fach-Taster.tpl +24 -0
- pyhausbus/templates/HBC_1B_1-fach-Taster.tpl +22 -0
- pyhausbus/templates/HBC_1C_6-fach-Taster.tpl +33 -0
- pyhausbus/templates/HBC_1D_4-fach-Taster.tpl +29 -0
- pyhausbus/templates/HBC_1E_2-fach-Taster.tpl +29 -0
- pyhausbus/templates/HBC_1F_1-fach-Taster.tpl +27 -0
- pyhausbus/templates/HBC_20_32-fach-IO.tpl +39 -0
- pyhausbus/templates/HBC_29_8-fach-Dimmer.tpl +18 -0
- pyhausbus/templates/HBC_30_2-fach-RGB-Dimmer.tpl +17 -0
- pyhausbus/templates/LoxoneHausBusMapping.txt +80 -0
- pyhausbus/templates/LoxoneModuleMapping.txt +11 -0
- pyhausbus/templates/SD485_1E_6-fach-Taster.tpl +30 -0
- pyhausbus/templates/SD485_28_24-fach-UP-IO.tpl +31 -0
- pyhausbus/templates/SD485_29_1-fach-Taster.tpl +24 -0
- pyhausbus/templates/SD485_2A_2-fach-Taster.tpl +26 -0
- pyhausbus/templates/SD485_2C_4-fach-Taster.tpl +26 -0
- pyhausbus/templates/SD485_2E_6-fach-Taster.tpl +30 -0
- pyhausbus/templates/SD485_2F_6-fach-Taster.tpl +30 -0
- pyhausbus/templates/SD6_14_Multitaster.tpl +26 -0
- pyhausbus/templates/SD6_1E_Multitaster.tpl +26 -0
- pyhausbus/templates/classMapping.def +9 -0
- pyhausbus/templates/deviceTypes.def +47 -0
- {pyhausbus-1.0.0.dist-info → pyhausbus-1.0.2.dist-info}/LICENSE +21 -21
- {pyhausbus-1.0.0.dist-info → pyhausbus-1.0.2.dist-info}/METADATA +5 -1
- pyhausbus-1.0.2.dist-info/RECORD +640 -0
- {pyhausbus-1.0.0.dist-info → pyhausbus-1.0.2.dist-info}/WHEEL +1 -1
- pyhausbus/de/hausbus/homeassistant/proxy/gateway/data/BusTiming.py +0 -25
- pyhausbus-1.0.0.dist-info/RECORD +0 -525
@@ -0,0 +1,39 @@
|
|
1
|
+
0,1,32-fach IO
|
2
|
+
19,210,Rote Modul LED
|
3
|
+
16,17,Eingang 1
|
4
|
+
16,18,Eingang 2
|
5
|
+
16,19,Eingang 3
|
6
|
+
16,20,Eingang 4
|
7
|
+
16,21,Eingang 5
|
8
|
+
16,22,Eingang 6
|
9
|
+
16,23,Eingang 7
|
10
|
+
16,24,Eingang 8
|
11
|
+
16,33,Eingang 9
|
12
|
+
16,34,Eingang 10
|
13
|
+
16,35,Eingang 11
|
14
|
+
16,36,Eingang 12
|
15
|
+
16,37,Eingang 13
|
16
|
+
16,38,Eingang 14
|
17
|
+
16,39,Eingang 15
|
18
|
+
16,40,Eingang 16
|
19
|
+
19,49,Ausgang 1
|
20
|
+
19,50,Ausgang 2
|
21
|
+
19,51,Ausgang 3
|
22
|
+
19,52,Ausgang 4
|
23
|
+
19,53,Ausgang 5
|
24
|
+
19,54,Ausgang 6
|
25
|
+
19,55,Ausgang 7
|
26
|
+
19,56,Ausgang 8
|
27
|
+
19,97,Ausgang 9
|
28
|
+
19,98,Ausgang 10
|
29
|
+
19,99,Ausgang 11
|
30
|
+
19,100,Ausgang 12
|
31
|
+
19,101,Ausgang 13
|
32
|
+
19,102,Ausgang 14
|
33
|
+
19,103,Ausgang 15
|
34
|
+
19,104,Ausgang 16
|
35
|
+
32,1,Temperatursensor 1
|
36
|
+
32,2,Temperatursensor 2
|
37
|
+
32,3,Temperatursensor 3
|
38
|
+
32,4,Temperatursensor 4
|
39
|
+
32,5,Temperatursensor 5
|
@@ -0,0 +1,18 @@
|
|
1
|
+
0,1,8-fach Dimmer
|
2
|
+
19,210,Rote Modul LED
|
3
|
+
17,1,Dimmer 1
|
4
|
+
17,2,Dimmer 2
|
5
|
+
17,3,Dimmer 3
|
6
|
+
17,4,Dimmer 4
|
7
|
+
17,5,Dimmer 5
|
8
|
+
17,6,Dimmer 6
|
9
|
+
17,7,Dimmer 7
|
10
|
+
17,8,Dimmer 8
|
11
|
+
16,71,Eingang 1
|
12
|
+
16,72,Eingang 2
|
13
|
+
16,99,Eingang 3
|
14
|
+
16,100,Eingang 4
|
15
|
+
16,101,Eingang 5
|
16
|
+
16,102,Eingang 6
|
17
|
+
16,103,Eingang 7
|
18
|
+
16,104,Eingang 8
|
@@ -0,0 +1,17 @@
|
|
1
|
+
0,1,2-fach RGB Dimmer
|
2
|
+
19,210,Rote Modul LED
|
3
|
+
17,1,Dimmer 1
|
4
|
+
17,2,Dimmer 2
|
5
|
+
17,3,Dimmer 3
|
6
|
+
17,4,Dimmer 4
|
7
|
+
17,5,Dimmer 5
|
8
|
+
17,6,Dimmer 6
|
9
|
+
22,1,RGB Dimmer 1
|
10
|
+
22,2,RGB Dimmer 2
|
11
|
+
16,17,Eingang 1
|
12
|
+
16,18,Eingang 2
|
13
|
+
16,19,Eingang 3
|
14
|
+
16,20,Eingang 4
|
15
|
+
16,21,Eingang 5
|
16
|
+
16,22,Eingang 6
|
17
|
+
|
@@ -0,0 +1,80 @@
|
|
1
|
+
Module:Type=LoxLIVE;Miniserver;8-fach Relais,16-fach Relais,32-fach IO Modul
|
2
|
+
Type=DigitalIn;DIGITAL_IN
|
3
|
+
Type=VoltageIn;ANALOG_VOLTAGE_IN
|
4
|
+
Type=Actor;RELAY
|
5
|
+
Type=Lox1wireAsensor;TEMPERATURE
|
6
|
+
Type=DimCurrentIn;ANALOG_CURRENT_IN
|
7
|
+
Type=VoltageOut;ANALOG_OUT
|
8
|
+
Type=Dimmer;DIMMER
|
9
|
+
|
10
|
+
Module:Type=TreeDevice,TreeType=32780;RGBW Dimmer Tree
|
11
|
+
Type=TreeAactor;PWM_DIMMER
|
12
|
+
|
13
|
+
Module:Type=TreeDevice,TreeType=32794;Pr�senzmelder Tree
|
14
|
+
Type=TreeSensor,EnoceanSubType=4;MOVEMENT
|
15
|
+
Type=TreeSensor,EnoceanSubType=170;PRESENCE
|
16
|
+
Type=TreeSensor,EnoceanSubType=168;FILTER;Lautst�rke Alarm
|
17
|
+
Type=TreeAsensor,EnoceanSubType=57;FILTER;Lautst�rke Minimum
|
18
|
+
Type=TreeAsensor,EnoceanSubType=58;FILTER;Lautst�rke Maximum
|
19
|
+
Type=TreeAsensor,EnoceanSubType=5;BRIGHTNESS
|
20
|
+
Type=TreeAactor,SubType=61;FILTER;Nachlaufzeit Pr�senz
|
21
|
+
Type=TreeAactor,SubType=62;FILTER;Zeit
|
22
|
+
|
23
|
+
Module:Type=TreeDevice,TreeType=32773;Touch Pure Tree
|
24
|
+
Type=TreeSensor,EnoceanSubType=16;TASTER
|
25
|
+
Type=TreeSensor,EnoceanSubType=17;TASTER
|
26
|
+
Type=TreeSensor,EnoceanSubType=18;TASTER
|
27
|
+
Type=TreeSensor,EnoceanSubType=19;TASTER
|
28
|
+
Type=TreeSensor,EnoceanSubType=20;TASTER
|
29
|
+
Type=TreeAsensor,EnoceanSubType=1;TEMPERATURE
|
30
|
+
Type=TreeAsensor,EnoceanSubType=2;HUMIDITY
|
31
|
+
Type=TreeAsensor,Title=T5;TASTER_T5;T5 ?
|
32
|
+
Type=TreeActor,SubType=52;BACKLIGHT
|
33
|
+
Type=TreeActor,SubType=163;FILTER;Akustisches Klick-Signal
|
34
|
+
|
35
|
+
Module:Type=TreeDevice,TreeType=32769;Stellantrieb Tree
|
36
|
+
Type=TreeAactor,SubType=24;DIGITAL_OUT
|
37
|
+
Type=TreeSensor,EnoceanSubType=77;FILTER;Kein Ventil erkannt
|
38
|
+
Type=TreeSensor,EnoceanSubType=78;FILTER;Ventil steckt fest
|
39
|
+
|
40
|
+
Module:Type=TreeDevice,TreeType=32778;FILTER;Wetterstation Tree
|
41
|
+
|
42
|
+
Module:Type=LoxAIRDevice,AirType=61;Pr�senzmelder Air
|
43
|
+
Type=LoxAIRsensor,EnoceanSubType=4;MOVEMENT
|
44
|
+
Type=LoxAIRsensor,EnoceanSubType=170;PRESENCE
|
45
|
+
Type=LoxAIRsensor,EnoceanSubType=168;FILTER;Lautst�rkealarm
|
46
|
+
Type=LoxAIRAsensor,EnoceanSubType=57;FILTER;Lautst�rke Minimum
|
47
|
+
Type=LoxAIRAsensor,EnoceanSubType=58;FILTER;Lautst�rke Maximum
|
48
|
+
Type=LoxAIRAsensor,EnoceanSubType=5;BRIGHTNESS
|
49
|
+
Type=LoxAIRsensor,EnoceanSubType=68;FILTER;Batterie schwach
|
50
|
+
Type=LoxAIRAsensor,EnoceanSubType=69;FILTER;Batterie Kapazit�t
|
51
|
+
Type=LoxAIRAactor,SubType=61;FILTER;Nachlaufzeit Pr�senz
|
52
|
+
Type=LoxAIRAactor,SubType=62;FILTER;Zeit
|
53
|
+
|
54
|
+
Module:Type=LoxREL;Relais Extension
|
55
|
+
Type=Actor;RELAY
|
56
|
+
|
57
|
+
Module:Type=TreeDevice,TreeType=32793;Nano 2 Relay Tree
|
58
|
+
Type=TreeSensor,EnoceanSubType=157;FILTER;Stromfluss
|
59
|
+
Type=TreeAsensor,EnoceanSubType=57;FILTER;Fahrzeit
|
60
|
+
Type=TreeActor;RELAY
|
61
|
+
Type=ApiActor;FILTER;API Connector
|
62
|
+
|
63
|
+
Module:Type=LoxAIRDevice,AirType=31;Eingangsmodul Air
|
64
|
+
Type=LoxAIRsensor,EnoceanSubType=68;FILTER;Batterie schwach
|
65
|
+
Type=LoxAIRAsensor,EnoceanSubType=69;FILTER;Batterie Kapazit�t
|
66
|
+
Type=LoxAIRsensor,EnoceanSubType=16;DIGITAL_IN
|
67
|
+
Type=LoxAIRsensor,EnoceanSubType=17;DIGITAL_IN
|
68
|
+
|
69
|
+
Module:Type=TreeDevice,TreeType=32779;Nano DI Tree
|
70
|
+
Type=TreeSensor,EnoceanSubType=16;DIGITAL_IN
|
71
|
+
Type=TreeSensor,EnoceanSubType=17;DIGITAL_IN
|
72
|
+
Type=TreeSensor,EnoceanSubType=18;DIGITAL_IN
|
73
|
+
Type=TreeSensor,EnoceanSubType=19;DIGITAL_IN
|
74
|
+
Type=TreeSensor,EnoceanSubType=20;DIGITAL_IN
|
75
|
+
Type=TreeSensor,EnoceanSubType=21;DIGITAL_IN
|
76
|
+
|
77
|
+
Module:Type=LoxAout;AO Extension
|
78
|
+
Type=VoltageOut;ANALOG_OUT
|
79
|
+
|
80
|
+
Module:Type=NetworkDevice;NetworkDevice
|
@@ -0,0 +1,11 @@
|
|
1
|
+
Order=Miniserver,RGBW Dimmer Tree,Relais Extension,Nano 2 Relay Tree,Stellantrieb Tree,Touch Pure Tree,Eingangsmodul Air,Nano DI Tree,Pr�senzmelder Tree,Pr�senzmelder Air
|
2
|
+
Miniserver=12-fach Relais,16-fach Relais
|
3
|
+
RGBW Dimmer Tree=2-fach RGB Dimmer
|
4
|
+
Pr�senzmelder Tree=6-fach Taster,4-fach Taster,2-fach Taster,1-fach Taster
|
5
|
+
Pr�senzmelder Air=6-fach Taster,4-fach Taster,2-fach Taster,1-fach Taster
|
6
|
+
Touch Pure Tree=6-fach Taster,4-fach Taster,2-fach Taster,1-fach Taster
|
7
|
+
Stellantrieb Tree=32-fach IO Modul,16-fach Relais,12-fach Relais
|
8
|
+
Relais Extension=16-fach Relais,12-fach Relais
|
9
|
+
Nano 2 Relay Tree=12-fach Relais,16-fach Relais
|
10
|
+
Eingangsmodul Air=22-fach UP-IO,32-fach IO Modul,12-fach Relais,16-fach Relais,2-fach RGB Dimmer,4-fach 0-10V Dimmer,4-fach 1-10V Dimmer
|
11
|
+
Nano DI Tree=22-fach UP-IO,32-fach IO Modul,12-fach Relais,16-fach Relais,2-fach RGB Dimmer,4-fach 0-10V Dimmer,4-fach 1-10V Dimmer
|
@@ -0,0 +1,30 @@
|
|
1
|
+
0,1,6-fach Taster
|
2
|
+
20,1,Hintergrundbeleuchtung
|
3
|
+
32,1,Temperatursensor
|
4
|
+
34,1,Feuchtesensor
|
5
|
+
42,1,Taupunkt 1
|
6
|
+
39,1,Helligkeitssensor
|
7
|
+
21,49,Led 1
|
8
|
+
21,50,Led 2
|
9
|
+
21,51,Led 3
|
10
|
+
21,52,Led 4
|
11
|
+
21,53,Led 5
|
12
|
+
21,54,Led 6
|
13
|
+
16,17,Taster 1
|
14
|
+
16,18,Taster 2
|
15
|
+
16,19,Taster 3
|
16
|
+
16,20,Taster 4
|
17
|
+
16,21,Taster 5
|
18
|
+
16,22,Taster 6
|
19
|
+
16,33,Extern Taster 1
|
20
|
+
16,34,Extern Taster 2
|
21
|
+
16,35,Extern Taster 3
|
22
|
+
16,36,Extern Taster 4
|
23
|
+
16,55,Extern Taster 5
|
24
|
+
16,56,Extern Taster 6
|
25
|
+
21,65,Extern Led 1
|
26
|
+
21,66,Extern Led 2
|
27
|
+
21,67,Extern Led 3
|
28
|
+
21,68,Extern Led 4
|
29
|
+
21,69,Extern Led 5
|
30
|
+
21,70,Extern Led 6
|
@@ -0,0 +1,31 @@
|
|
1
|
+
0,1,24-fach UP-IO
|
2
|
+
19,23,Rote Modul LED
|
3
|
+
16,17,Eingang 1
|
4
|
+
16,18,Eingang 2
|
5
|
+
16,19,Eingang 3
|
6
|
+
16,20,Eingang 4
|
7
|
+
16,21,Eingang 5
|
8
|
+
16,22,Eingang 6
|
9
|
+
16,33,Eingang 7
|
10
|
+
16,34,Eingang 8
|
11
|
+
16,35,Eingang 9
|
12
|
+
16,36,Eingang 10
|
13
|
+
16,55,Eingang 11
|
14
|
+
16,56,Eingang 12
|
15
|
+
21,49,Ausgang 1
|
16
|
+
21,50,Ausgang 2
|
17
|
+
21,51,Ausgang 3
|
18
|
+
21,52,Ausgang 4
|
19
|
+
21,53,Ausgang 5
|
20
|
+
21,54,Ausgang 6
|
21
|
+
21,65,Ausgang 7
|
22
|
+
21,66,Ausgang 8
|
23
|
+
21,67,Ausgang 9
|
24
|
+
21,68,Ausgang 10
|
25
|
+
21,69,Ausgang 11
|
26
|
+
21,70,Ausgang 12
|
27
|
+
32,1,Temperatursensor 1
|
28
|
+
32,2,Temperatursensor 2
|
29
|
+
32,3,Temperatursensor 3
|
30
|
+
32,4,Temperatursensor 4
|
31
|
+
32,5,Temperatursensor 5
|
@@ -0,0 +1,24 @@
|
|
1
|
+
0,1,2-fach Taster
|
2
|
+
20,1,Hintergrundbeleuchtung
|
3
|
+
32,1,Temperatursensor
|
4
|
+
32,2,Temperatursensor 2
|
5
|
+
32,3,Temperatursensor 3
|
6
|
+
32,4,Temperatursensor 4
|
7
|
+
32,5,Temperatursensor 5
|
8
|
+
34,1,Feuchtesensor
|
9
|
+
42,1,Taupunkt
|
10
|
+
39,1,Helligkeitssensor
|
11
|
+
21,51,Led 1
|
12
|
+
16,19,Taster 1
|
13
|
+
16,33,Extern Taster 1
|
14
|
+
16,34,Extern Taster 2
|
15
|
+
16,35,Extern Taster 3
|
16
|
+
16,36,Extern Taster 4
|
17
|
+
16,55,Extern Taster 5
|
18
|
+
16,56,Extern Taster 6
|
19
|
+
21,65,Extern Led 1
|
20
|
+
21,66,Extern Led 2
|
21
|
+
21,67,Extern Led 3
|
22
|
+
21,68,Extern Led 4
|
23
|
+
21,69,Extern Led 5
|
24
|
+
21,70,Extern Led 6
|
@@ -0,0 +1,26 @@
|
|
1
|
+
0,1,2-fach Taster
|
2
|
+
20,1,Hintergrundbeleuchtung
|
3
|
+
32,1,Temperatursensor
|
4
|
+
32,2,Temperatursensor 2
|
5
|
+
32,3,Temperatursensor 3
|
6
|
+
32,4,Temperatursensor 4
|
7
|
+
32,5,Temperatursensor 5
|
8
|
+
34,1,Feuchtesensor
|
9
|
+
42,1,Taupunkt
|
10
|
+
39,1,Helligkeitssensor
|
11
|
+
21,51,Led 1
|
12
|
+
21,52,Led 2
|
13
|
+
16,19,Taster 1
|
14
|
+
16,20,Taster 2
|
15
|
+
16,33,Extern Taster 1
|
16
|
+
16,34,Extern Taster 2
|
17
|
+
16,35,Extern Taster 3
|
18
|
+
16,36,Extern Taster 4
|
19
|
+
16,55,Extern Taster 5
|
20
|
+
16,56,Extern Taster 6
|
21
|
+
21,65,Extern Led 1
|
22
|
+
21,66,Extern Led 2
|
23
|
+
21,67,Extern Led 3
|
24
|
+
21,68,Extern Led 4
|
25
|
+
21,69,Extern Led 5
|
26
|
+
21,70,Extern Led 6
|
@@ -0,0 +1,26 @@
|
|
1
|
+
0,1,2-fach Taster
|
2
|
+
20,1,Hintergrundbeleuchtung
|
3
|
+
32,1,Temperatursensor
|
4
|
+
34,1,Feuchtesensor
|
5
|
+
42,1,Taupunkt
|
6
|
+
39,1,Helligkeitssensor
|
7
|
+
21,49,Led 1
|
8
|
+
21,50,Led 2
|
9
|
+
21,53,Led 3
|
10
|
+
21,54,Led 4
|
11
|
+
16,17,Taster 1
|
12
|
+
16,18,Taster 2
|
13
|
+
16,21,Taster 3
|
14
|
+
16,22,Taster 4
|
15
|
+
16,33,Extern Taster 1
|
16
|
+
16,34,Extern Taster 2
|
17
|
+
16,35,Extern Taster 3
|
18
|
+
16,36,Extern Taster 4
|
19
|
+
16,55,Extern Taster 5
|
20
|
+
16,56,Extern Taster 6
|
21
|
+
21,65,Extern Led 1
|
22
|
+
21,66,Extern Led 2
|
23
|
+
21,67,Extern Led 3
|
24
|
+
21,68,Extern Led 4
|
25
|
+
21,69,Extern Led 5
|
26
|
+
21,70,Extern Led 6
|
@@ -0,0 +1,30 @@
|
|
1
|
+
0,1,6-fach Taster
|
2
|
+
20,1,Hintergrundbeleuchtung
|
3
|
+
32,1,Temperatursensor
|
4
|
+
34,1,Feuchtesensor
|
5
|
+
42,1,Taupunkt 1
|
6
|
+
39,1,Helligkeitssensor
|
7
|
+
21,49,Led 1
|
8
|
+
21,50,Led 2
|
9
|
+
21,51,Led 3
|
10
|
+
21,52,Led 4
|
11
|
+
21,53,Led 5
|
12
|
+
21,54,Led 6
|
13
|
+
16,17,Taster 1
|
14
|
+
16,18,Taster 2
|
15
|
+
16,19,Taster 3
|
16
|
+
16,20,Taster 4
|
17
|
+
16,21,Taster 5
|
18
|
+
16,22,Taster 6
|
19
|
+
16,33,Extern Taster 1
|
20
|
+
16,34,Extern Taster 2
|
21
|
+
16,35,Extern Taster 3
|
22
|
+
16,36,Extern Taster 4
|
23
|
+
16,55,Extern Taster 5
|
24
|
+
16,56,Extern Taster 6
|
25
|
+
21,65,Extern Led 1
|
26
|
+
21,66,Extern Led 2
|
27
|
+
21,67,Extern Led 3
|
28
|
+
21,68,Extern Led 4
|
29
|
+
21,69,Extern Led 5
|
30
|
+
21,70,Extern Led 6
|
@@ -0,0 +1,30 @@
|
|
1
|
+
0,1,6-fach Taster
|
2
|
+
20,1,Hintergrundbeleuchtung
|
3
|
+
32,1,Temperatursensor
|
4
|
+
34,1,Feuchtesensor
|
5
|
+
42,1,Taupunkt 1
|
6
|
+
39,1,Helligkeitssensor
|
7
|
+
21,49,Led 1
|
8
|
+
21,50,Led 2
|
9
|
+
21,51,Led 3
|
10
|
+
21,52,Led 4
|
11
|
+
21,53,Led 5
|
12
|
+
21,54,Led 6
|
13
|
+
16,17,Taster 1
|
14
|
+
16,18,Taster 2
|
15
|
+
16,19,Taster 3
|
16
|
+
16,20,Taster 4
|
17
|
+
16,21,Taster 5
|
18
|
+
16,22,Taster 6
|
19
|
+
16,33,Extern Taster 1
|
20
|
+
16,34,Extern Taster 2
|
21
|
+
16,35,Extern Taster 3
|
22
|
+
16,36,Extern Taster 4
|
23
|
+
16,55,Extern Taster 5
|
24
|
+
16,56,Extern Taster 6
|
25
|
+
21,65,Extern Led 1
|
26
|
+
21,66,Extern Led 2
|
27
|
+
21,67,Extern Led 3
|
28
|
+
21,68,Extern Led 4
|
29
|
+
21,69,Extern Led 5
|
30
|
+
21,70,Extern Led 6
|
@@ -0,0 +1,26 @@
|
|
1
|
+
0,1,Multitaster
|
2
|
+
20,1,Hintergrundbeleuchtung
|
3
|
+
21,50,Led 1
|
4
|
+
21,51,Led 2
|
5
|
+
21,49,Led 3
|
6
|
+
21,52,Led 4
|
7
|
+
21,54,Led 5
|
8
|
+
21,53,Led 6
|
9
|
+
16,33,Taster 1
|
10
|
+
16,34,Taster 2
|
11
|
+
16,24,Taster 3
|
12
|
+
16,35,Taster 4
|
13
|
+
16,23,Taster 5
|
14
|
+
16,36,Taster 6
|
15
|
+
16,33,Extern Taster 1
|
16
|
+
16,34,Extern Taster 2
|
17
|
+
16,35,Extern Taster 3
|
18
|
+
16,36,Extern Taster 4
|
19
|
+
16,55,Extern Taster 5
|
20
|
+
16,56,Extern Taster 6
|
21
|
+
21,65,Extern Led 1
|
22
|
+
21,66,Extern Led 2
|
23
|
+
21,67,Extern Led 3
|
24
|
+
21,68,Extern Led 4
|
25
|
+
21,69,Extern Led 5
|
26
|
+
21,70,Extern Led 6
|
@@ -0,0 +1,26 @@
|
|
1
|
+
0,1,Multitaster
|
2
|
+
20,1,Hintergrundbeleuchtung
|
3
|
+
21,50,Led 1
|
4
|
+
21,51,Led 2
|
5
|
+
21,49,Led 3
|
6
|
+
21,52,Led 4
|
7
|
+
21,54,Led 5
|
8
|
+
21,53,Led 6
|
9
|
+
16,33,Taster 1
|
10
|
+
16,34,Taster 2
|
11
|
+
16,24,Taster 3
|
12
|
+
16,35,Taster 4
|
13
|
+
16,23,Taster 5
|
14
|
+
16,36,Taster 6
|
15
|
+
16,33,Extern Taster 1
|
16
|
+
16,34,Extern Taster 2
|
17
|
+
16,35,Extern Taster 3
|
18
|
+
16,36,Extern Taster 4
|
19
|
+
16,55,Extern Taster 5
|
20
|
+
16,56,Extern Taster 6
|
21
|
+
21,65,Extern Led 1
|
22
|
+
21,66,Extern Led 2
|
23
|
+
21,67,Extern Led 3
|
24
|
+
21,68,Extern Led 4
|
25
|
+
21,69,Extern Led 5
|
26
|
+
21,70,Extern Led 6
|
@@ -0,0 +1,47 @@
|
|
1
|
+
ESP32,0x65,LAN-RS485 Br�ckenmodul
|
2
|
+
ESP32C3,0x69,WLAN-Steckdose
|
3
|
+
ESP32,0x18,6-fach Taster
|
4
|
+
ESP32,0x19,4-fach Taster
|
5
|
+
ESP32,0x1A,2-fach Taster
|
6
|
+
ESP32,0x1B,1-fach Taster
|
7
|
+
ESP32,0x1C,6-fach Taster Gira
|
8
|
+
ESP32,0x0D,8-fach Motormodul
|
9
|
+
ESP32,0x20,32-fach IO Modul
|
10
|
+
ESP32,0x0C,16-fach Relais
|
11
|
+
ESP32,0x0A,12-fach Relais
|
12
|
+
ESP32,0x08,8-fach Relais
|
13
|
+
ESP32,0x10,22-fach UP-IO
|
14
|
+
ESP32,0x28,8-fach Dimmer
|
15
|
+
ESP32,0x30,2-fach RGB Dimmer
|
16
|
+
ESP32,0x31,2-fach RGB Dimmer
|
17
|
+
ESP32,0x04,4-fach Relais
|
18
|
+
ESP32,0x00,4-fach 0-10V Dimmer
|
19
|
+
ESP32,0x01,4-fach 1-10V Dimmer
|
20
|
+
ESP32,0xFF,LocalBroadcastDevice
|
21
|
+
HBC,0x18,6-fach Taster
|
22
|
+
HBC,0x19,4-fach Taster
|
23
|
+
HBC,0x1A,2-fach Taster
|
24
|
+
HBC,0x1B,1-fach Taster
|
25
|
+
HBC,0x1C,6-fach Taster Gira
|
26
|
+
HBC,0x10,24-fach UP-IO
|
27
|
+
HBC,0x0C,16-fach Relais
|
28
|
+
HBC,0x08,8-fach Relais
|
29
|
+
HBC,0x00,4-fach 0-10V Dimmer
|
30
|
+
HBC,0x01,4-fach 1-10V Dimmer
|
31
|
+
HBC,0x20,32-fach IO Modul
|
32
|
+
HBC,0x28,8-fach Dimmer
|
33
|
+
HBC,0x29,8-fach Dimmer
|
34
|
+
HBC,0x30,2-fach RGB Dimmer
|
35
|
+
SD485,0x28,24-fach UP-IO
|
36
|
+
SD485,0x1E,6-fach Taster
|
37
|
+
SD485,0x2E,6-fach Taster
|
38
|
+
SD485,0x2F,6-fach Taster
|
39
|
+
SD485,0x2B,4-fach 0-10V Dimmer
|
40
|
+
SD485,0x2C,4-fach Taster
|
41
|
+
SD485,0x2D,4-fach 1-10V Dimmer
|
42
|
+
SD485,0x2A,2-fach Taster
|
43
|
+
SD485,0x29,1-fach Taster
|
44
|
+
AR8,0x28,LAN Br�ckenmodul
|
45
|
+
AR8,0x30,8-fach Relais
|
46
|
+
SD6,0x14,Multitaster
|
47
|
+
SD6,0x1E,Multitaster
|
@@ -1,21 +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.
|
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.
|
@@ -1,7 +1,8 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pyhausbus
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.2
|
4
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/
|
5
6
|
Author: Hermann Hoeschen
|
6
7
|
Author-email: info@haus-bus.de
|
7
8
|
Classifier: License :: OSI Approved :: MIT License
|
@@ -18,6 +19,9 @@ Classifier: Programming Language :: Python :: 3.9
|
|
18
19
|
Classifier: Programming Language :: Python :: 3.10
|
19
20
|
Classifier: Programming Language :: Python :: 3.11
|
20
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
|
21
25
|
Description-Content-Type: text/markdown
|
22
26
|
|
23
27
|
# pyhausbus
|