UNPKG

homebridge-fujitsu-airstage

Version:

A Homebridge plugin to control devices that use the Fujitsu Airstage API.

28 lines (25 loc) 1.18 kB
'use strict'; const HeaterCoolerAccessory = require('./heater-cooler-accessory'); const ThermostatAccessory = require('./thermostat-accessory'); const FanAccessory = require('./fan-accessory'); const VerticalAirflowDirectionAccessory = require('./vertical-airflow-direction-accessory'); const AutoFanSpeedSwitchAccessory = require('./auto-fan-speed-switch-accessory'); const DryModeSwitchAccessory = require('./dry-mode-switch-accessory'); const EconomySwitchAccessory = require('./economy-switch-accessory'); const EnergySavingFanSwitchAccessory = require('./energy-saving-fan-switch-accessory'); const FanModeSwitchAccessory = require('./fan-mode-switch-accessory'); const MinimumHeatModeSwitchAccessory = require('./minimum-heat-mode-switch-accessory'); const PowerfulSwitchAccessory = require('./powerful-switch-accessory'); module.exports = { HeaterCoolerAccessory, ThermostatAccessory, FanAccessory, VerticalAirflowDirectionAccessory, AutoFanSpeedSwitchAccessory, DryModeSwitchAccessory, EconomySwitchAccessory, EnergySavingFanSwitchAccessory, FanModeSwitchAccessory, MinimumHeatModeSwitchAccessory, PowerfulSwitchAccessory };