homebridge-resideo
Version:
The Resideo plugin allows you to access your Resideo device(s) from HomeKit.
25 lines • 832 B
JavaScript
/**
* This is the name of the platform that users will use to register the plugin in the Homebridge config.json
*/
export const PLATFORM_NAME = 'Resideo';
/**
* This must match the name of your plugin as defined the package.json
*/
export const PLUGIN_NAME = 'homebridge-resideo';
/**
* This is the main url used to access Resideo API
*/
export const AuthorizeURL = 'https://api.honeywell.com/oauth2/authorize?';
/**
* This is the main url used to access Resideo API
*/
export const TokenURL = 'https://api.honeywell.com/oauth2/token';
/**
* This is the main url used to access Resideo API
*/
export const LocationURL = 'https://api.honeywell.com/v2/locations';
/**
* This is the main url used to access Resideo API
*/
export const DeviceURL = 'https://api.honeywell.com/v2/devices';
//# sourceMappingURL=settings.js.map