/** * This is the name of the platform that users will use to register the plugin in the Homebridge config.json */ export declare const PLATFORM_NAME = "ConnectMyPoolHomeAutomation"; /** * This must match the name of your plugin as defined the package.json */ export declare const PLUGIN_NAME = "homebridge-connect-my-pool-home-automation"; export declare const BASE_URL = "https://www.connectmypool.com.au/api/"; export declare const MANUFACTURER = "Astral"; export declare const API_INTERVAL = 60000; export declare enum TemperatureScale { CELSIUS = 0, FAHRENHEIT = 1 } export declare const MIN_TEMP = 5; export declare const MIN_TARGET_TEMP = 10; export declare const MAX_TEMP = 40; export declare const MAX_TARGET_TEMP = 40; export declare enum HeatersMode { OFF = 0, ON = 1 } export declare enum PoolSpaSelection { SPA = 0, POOL = 1 } export declare enum SolarSystemMode { OFF = 0, AUTO = 1, ON = 2 } export declare enum ChannelsMode { OFF = 0, AUTO = 1, ON = 2, LOW_SPEED = 3, MEDIUM_SPEED = 4, HIGH_SPEED = 5 } export declare enum ValveMode { OFF = 0, AUTO = 1, ON = 2 } export declare enum LightingMode { OFF = 0, AUTO = 1, ON = 2 } export declare const LIGHTING_COLOR_USER_1 = 8; export declare const FAVOURITE_ALL_OFF = 128; export declare const FAVOURITE_ALL_AUTO = 129; export declare const FAVOURITE_DEFAULT = 255; //# sourceMappingURL=settings.d.ts.map