├── .github ├── ISSUE_TEMPLATE │ └── config.yml └── workflows │ ├── new-release.yml │ └── stale-issue.yml ├── .gitignore ├── .npmignore ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── config.schema.json ├── eslint.config.mjs ├── nodemon.json ├── package.json ├── platform.schema.json ├── src ├── CustomCharacteristics.ts ├── Mapper.ts ├── Platform.ts ├── SceneMapper.ts ├── colors.ts ├── index.ts ├── lang │ ├── en.json │ └── fr.json ├── mappers │ ├── AdjustableSlatsRollerShutter.ts │ ├── AirSensor.ts │ ├── AirSensor │ │ ├── CO2Sensor.ts │ │ └── RelativeHumiditySensor.ts │ ├── Alarm.ts │ ├── Alarm │ │ ├── MyFoxAlarmController.ts │ │ └── TSKAlarmController.ts │ ├── Awning.ts │ ├── Awning │ │ └── PositionableHorizontalAwningUno.ts │ ├── ConsumptionSensor.ts │ ├── ContactSensor.ts │ ├── Curtain.ts │ ├── DoorLock.ts │ ├── ElectricitySensor.ts │ ├── ElectricitySensor │ │ └── CumulativeElectricPowerConsumptionSensor.ts │ ├── EvoHome │ │ ├── DHWSetPoint.ts │ │ ├── EvoHomeController.ts │ │ └── HeatingSetPoint.ts │ ├── ExteriorHeatingSystem.ts │ ├── ExteriorHeatingSystem │ │ └── DimmerExteriorHeating.ts │ ├── ExteriorScreen.ts │ ├── ExteriorVenetianBlind.ts │ ├── GarageDoor.ts │ ├── Gate.ts │ ├── Generic │ │ ├── CyclicGeneric.ts │ │ ├── DimmerOnOff.ts │ │ ├── RTSGeneric.ts │ │ └── RTSGeneric4T.ts │ ├── HeatingSystem.ts │ ├── HeatingSystem │ │ ├── AtlanticElectricalHeater.ts │ │ ├── AtlanticElectricalHeaterWithAdjustableTemperatureSetpoint.ts │ │ ├── AtlanticElectricalTowelDryer.ts │ │ ├── AtlanticPassAPCBoiler.ts │ │ ├── AtlanticPassAPCHeatPump.ts │ │ ├── AtlanticPassAPCHeatingAndCoolingZone.ts │ │ ├── AtlanticPassAPCHeatingZone.ts │ │ ├── AtlanticPassAPCZoneControl.ts │ │ ├── ProgrammableAndProtectableThermostatSetPoint.ts │ │ ├── SomfyHeatingTemperatureInterface.ts │ │ ├── SomfyThermostat.ts │ │ ├── ThermostatSetPoint.ts │ │ └── ValveHeatingTemperatureInterface.ts │ ├── HitachiHeatingSystem │ │ ├── HitachiAirToAirHeatPump.ts │ │ ├── HitachiAirToWaterHeatingZone.ts │ │ ├── HitachiAirToWaterMainComponent.ts │ │ └── HitachiDHW.ts │ ├── HumiditySensor.ts │ ├── HumiditySensor │ │ └── WaterDetectionSensor.ts │ ├── Light.ts │ ├── LightSensor.ts │ ├── OccupancySensor.ts │ ├── OnOff.ts │ ├── Pergola.ts │ ├── Pergola │ │ ├── BioclimaticPergola.ts │ │ └── PergolaHorizontalAwningUno.ts │ ├── RainSensor.ts │ ├── RemoteController.ts │ ├── RollerShutter.ts │ ├── RollerShutter │ │ ├── PositionableRollerShutterUno.ts │ │ └── PositionableRollerShutterWithLowSpeedManagement.ts │ ├── Screen.ts │ ├── Shutter.ts │ ├── Siren.ts │ ├── SmokeSensor.ts │ ├── SwingingShutter.ts │ ├── TemperatureSensor.ts │ ├── VenetianBlind.ts │ ├── VentilationSystem.ts │ ├── VentilationSystem │ │ └── DimplexVentilationInletOutlet.ts │ ├── WaterHeatingSystem.ts │ ├── WaterHeatingSystem │ │ ├── AtlanticPassAPCDHW.ts │ │ ├── DomesticHotWaterProduction.ts │ │ ├── DomesticHotWaterProduction │ │ │ └── AtlanticDomesticHotWaterProductionV2_SPLIT_IOComponent.ts │ │ └── DomesticHotWaterTank.ts │ ├── WaterSensor.ts │ ├── Window.ts │ └── WindowHandle.ts └── settings.ts └── tsconfig.json /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/new-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/.github/workflows/new-release.yml -------------------------------------------------------------------------------- /.github/workflows/stale-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/.github/workflows/stale-issue.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/.npmignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/README.md -------------------------------------------------------------------------------- /config.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/config.schema.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/package.json -------------------------------------------------------------------------------- /platform.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/platform.schema.json -------------------------------------------------------------------------------- /src/CustomCharacteristics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/CustomCharacteristics.ts -------------------------------------------------------------------------------- /src/Mapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/Mapper.ts -------------------------------------------------------------------------------- /src/Platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/Platform.ts -------------------------------------------------------------------------------- /src/SceneMapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/SceneMapper.ts -------------------------------------------------------------------------------- /src/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/colors.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/lang/en.json -------------------------------------------------------------------------------- /src/lang/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/lang/fr.json -------------------------------------------------------------------------------- /src/mappers/AdjustableSlatsRollerShutter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/AdjustableSlatsRollerShutter.ts -------------------------------------------------------------------------------- /src/mappers/AirSensor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/AirSensor.ts -------------------------------------------------------------------------------- /src/mappers/AirSensor/CO2Sensor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/AirSensor/CO2Sensor.ts -------------------------------------------------------------------------------- /src/mappers/AirSensor/RelativeHumiditySensor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/AirSensor/RelativeHumiditySensor.ts -------------------------------------------------------------------------------- /src/mappers/Alarm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/Alarm.ts -------------------------------------------------------------------------------- /src/mappers/Alarm/MyFoxAlarmController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/Alarm/MyFoxAlarmController.ts -------------------------------------------------------------------------------- /src/mappers/Alarm/TSKAlarmController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/Alarm/TSKAlarmController.ts -------------------------------------------------------------------------------- /src/mappers/Awning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/Awning.ts -------------------------------------------------------------------------------- /src/mappers/Awning/PositionableHorizontalAwningUno.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/Awning/PositionableHorizontalAwningUno.ts -------------------------------------------------------------------------------- /src/mappers/ConsumptionSensor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/ConsumptionSensor.ts -------------------------------------------------------------------------------- /src/mappers/ContactSensor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/ContactSensor.ts -------------------------------------------------------------------------------- /src/mappers/Curtain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/Curtain.ts -------------------------------------------------------------------------------- /src/mappers/DoorLock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/DoorLock.ts -------------------------------------------------------------------------------- /src/mappers/ElectricitySensor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/ElectricitySensor.ts -------------------------------------------------------------------------------- /src/mappers/ElectricitySensor/CumulativeElectricPowerConsumptionSensor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/ElectricitySensor/CumulativeElectricPowerConsumptionSensor.ts -------------------------------------------------------------------------------- /src/mappers/EvoHome/DHWSetPoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/EvoHome/DHWSetPoint.ts -------------------------------------------------------------------------------- /src/mappers/EvoHome/EvoHomeController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/EvoHome/EvoHomeController.ts -------------------------------------------------------------------------------- /src/mappers/EvoHome/HeatingSetPoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/EvoHome/HeatingSetPoint.ts -------------------------------------------------------------------------------- /src/mappers/ExteriorHeatingSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/ExteriorHeatingSystem.ts -------------------------------------------------------------------------------- /src/mappers/ExteriorHeatingSystem/DimmerExteriorHeating.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/ExteriorHeatingSystem/DimmerExteriorHeating.ts -------------------------------------------------------------------------------- /src/mappers/ExteriorScreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/ExteriorScreen.ts -------------------------------------------------------------------------------- /src/mappers/ExteriorVenetianBlind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/ExteriorVenetianBlind.ts -------------------------------------------------------------------------------- /src/mappers/GarageDoor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/GarageDoor.ts -------------------------------------------------------------------------------- /src/mappers/Gate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/Gate.ts -------------------------------------------------------------------------------- /src/mappers/Generic/CyclicGeneric.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/Generic/CyclicGeneric.ts -------------------------------------------------------------------------------- /src/mappers/Generic/DimmerOnOff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/Generic/DimmerOnOff.ts -------------------------------------------------------------------------------- /src/mappers/Generic/RTSGeneric.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/Generic/RTSGeneric.ts -------------------------------------------------------------------------------- /src/mappers/Generic/RTSGeneric4T.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/Generic/RTSGeneric4T.ts -------------------------------------------------------------------------------- /src/mappers/HeatingSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/HeatingSystem.ts -------------------------------------------------------------------------------- /src/mappers/HeatingSystem/AtlanticElectricalHeater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/HeatingSystem/AtlanticElectricalHeater.ts -------------------------------------------------------------------------------- /src/mappers/HeatingSystem/AtlanticElectricalHeaterWithAdjustableTemperatureSetpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/HeatingSystem/AtlanticElectricalHeaterWithAdjustableTemperatureSetpoint.ts -------------------------------------------------------------------------------- /src/mappers/HeatingSystem/AtlanticElectricalTowelDryer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/HeatingSystem/AtlanticElectricalTowelDryer.ts -------------------------------------------------------------------------------- /src/mappers/HeatingSystem/AtlanticPassAPCBoiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/HeatingSystem/AtlanticPassAPCBoiler.ts -------------------------------------------------------------------------------- /src/mappers/HeatingSystem/AtlanticPassAPCHeatPump.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/HeatingSystem/AtlanticPassAPCHeatPump.ts -------------------------------------------------------------------------------- /src/mappers/HeatingSystem/AtlanticPassAPCHeatingAndCoolingZone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/HeatingSystem/AtlanticPassAPCHeatingAndCoolingZone.ts -------------------------------------------------------------------------------- /src/mappers/HeatingSystem/AtlanticPassAPCHeatingZone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/HeatingSystem/AtlanticPassAPCHeatingZone.ts -------------------------------------------------------------------------------- /src/mappers/HeatingSystem/AtlanticPassAPCZoneControl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/HeatingSystem/AtlanticPassAPCZoneControl.ts -------------------------------------------------------------------------------- /src/mappers/HeatingSystem/ProgrammableAndProtectableThermostatSetPoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/HeatingSystem/ProgrammableAndProtectableThermostatSetPoint.ts -------------------------------------------------------------------------------- /src/mappers/HeatingSystem/SomfyHeatingTemperatureInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/HeatingSystem/SomfyHeatingTemperatureInterface.ts -------------------------------------------------------------------------------- /src/mappers/HeatingSystem/SomfyThermostat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/HeatingSystem/SomfyThermostat.ts -------------------------------------------------------------------------------- /src/mappers/HeatingSystem/ThermostatSetPoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/HeatingSystem/ThermostatSetPoint.ts -------------------------------------------------------------------------------- /src/mappers/HeatingSystem/ValveHeatingTemperatureInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/HeatingSystem/ValveHeatingTemperatureInterface.ts -------------------------------------------------------------------------------- /src/mappers/HitachiHeatingSystem/HitachiAirToAirHeatPump.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/HitachiHeatingSystem/HitachiAirToAirHeatPump.ts -------------------------------------------------------------------------------- /src/mappers/HitachiHeatingSystem/HitachiAirToWaterHeatingZone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/HitachiHeatingSystem/HitachiAirToWaterHeatingZone.ts -------------------------------------------------------------------------------- /src/mappers/HitachiHeatingSystem/HitachiAirToWaterMainComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/HitachiHeatingSystem/HitachiAirToWaterMainComponent.ts -------------------------------------------------------------------------------- /src/mappers/HitachiHeatingSystem/HitachiDHW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/HitachiHeatingSystem/HitachiDHW.ts -------------------------------------------------------------------------------- /src/mappers/HumiditySensor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/HumiditySensor.ts -------------------------------------------------------------------------------- /src/mappers/HumiditySensor/WaterDetectionSensor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/HumiditySensor/WaterDetectionSensor.ts -------------------------------------------------------------------------------- /src/mappers/Light.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/Light.ts -------------------------------------------------------------------------------- /src/mappers/LightSensor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/LightSensor.ts -------------------------------------------------------------------------------- /src/mappers/OccupancySensor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/OccupancySensor.ts -------------------------------------------------------------------------------- /src/mappers/OnOff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/OnOff.ts -------------------------------------------------------------------------------- /src/mappers/Pergola.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/Pergola.ts -------------------------------------------------------------------------------- /src/mappers/Pergola/BioclimaticPergola.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/Pergola/BioclimaticPergola.ts -------------------------------------------------------------------------------- /src/mappers/Pergola/PergolaHorizontalAwningUno.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/Pergola/PergolaHorizontalAwningUno.ts -------------------------------------------------------------------------------- /src/mappers/RainSensor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/RainSensor.ts -------------------------------------------------------------------------------- /src/mappers/RemoteController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/RemoteController.ts -------------------------------------------------------------------------------- /src/mappers/RollerShutter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/RollerShutter.ts -------------------------------------------------------------------------------- /src/mappers/RollerShutter/PositionableRollerShutterUno.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/RollerShutter/PositionableRollerShutterUno.ts -------------------------------------------------------------------------------- /src/mappers/RollerShutter/PositionableRollerShutterWithLowSpeedManagement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/RollerShutter/PositionableRollerShutterWithLowSpeedManagement.ts -------------------------------------------------------------------------------- /src/mappers/Screen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/Screen.ts -------------------------------------------------------------------------------- /src/mappers/Shutter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/Shutter.ts -------------------------------------------------------------------------------- /src/mappers/Siren.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/Siren.ts -------------------------------------------------------------------------------- /src/mappers/SmokeSensor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/SmokeSensor.ts -------------------------------------------------------------------------------- /src/mappers/SwingingShutter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/SwingingShutter.ts -------------------------------------------------------------------------------- /src/mappers/TemperatureSensor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/TemperatureSensor.ts -------------------------------------------------------------------------------- /src/mappers/VenetianBlind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/VenetianBlind.ts -------------------------------------------------------------------------------- /src/mappers/VentilationSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/VentilationSystem.ts -------------------------------------------------------------------------------- /src/mappers/VentilationSystem/DimplexVentilationInletOutlet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/VentilationSystem/DimplexVentilationInletOutlet.ts -------------------------------------------------------------------------------- /src/mappers/WaterHeatingSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/WaterHeatingSystem.ts -------------------------------------------------------------------------------- /src/mappers/WaterHeatingSystem/AtlanticPassAPCDHW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/WaterHeatingSystem/AtlanticPassAPCDHW.ts -------------------------------------------------------------------------------- /src/mappers/WaterHeatingSystem/DomesticHotWaterProduction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/WaterHeatingSystem/DomesticHotWaterProduction.ts -------------------------------------------------------------------------------- /src/mappers/WaterHeatingSystem/DomesticHotWaterProduction/AtlanticDomesticHotWaterProductionV2_SPLIT_IOComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/WaterHeatingSystem/DomesticHotWaterProduction/AtlanticDomesticHotWaterProductionV2_SPLIT_IOComponent.ts -------------------------------------------------------------------------------- /src/mappers/WaterHeatingSystem/DomesticHotWaterTank.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/WaterHeatingSystem/DomesticHotWaterTank.ts -------------------------------------------------------------------------------- /src/mappers/WaterSensor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/WaterSensor.ts -------------------------------------------------------------------------------- /src/mappers/Window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/Window.ts -------------------------------------------------------------------------------- /src/mappers/WindowHandle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/mappers/WindowHandle.ts -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/src/settings.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubocr/homebridge-tahoma/HEAD/tsconfig.json --------------------------------------------------------------------------------