Updating longitude type Only updating wiz bulb if pilot is not undefined Fixing issue where lights will turn off after receiving power Fixing bug where wiz lights would go dark instead of maintaining the current brightness
12 lines
260 B
TypeScript
12 lines
260 B
TypeScript
import { API } from "homebridge";
|
|
|
|
import { PLATFORM_NAME } from "./settings";
|
|
import { Platform } from "./platform";
|
|
|
|
/**
|
|
* This method registers the platform with Homebridge
|
|
*/
|
|
export = (api: API) => {
|
|
api.registerPlatform(PLATFORM_NAME, Platform);
|
|
};
|