node-red-contrib-tplink-tapo-connect-api
Version:
This unofficial node-RED node allows connection to TP-Link Tapo devices. This project has been enhanced with AI support to enable new features. Starting with v0.50, we have added support for the KLAP protocol. To prioritize the operation of this node, we
13 lines (12 loc) • 335 B
TypeScript
/**
* Tapo L530 Smart Bulb - Full color with effects
*/
import { BaseBulb } from './base-bulb';
import { TapoCredentials } from '../../types';
export declare class L530Bulb extends BaseBulb {
constructor(ip: string, credentials: TapoCredentials);
/**
* Get device model
*/
protected getDeviceModel(): string;
}