UNPKG

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) 354 B
/** * Tapo L520 Smart Bulb - Tunable white light with color temperature */ import { BaseBulb } from './base-bulb'; import { TapoCredentials } from '../../types'; export declare class L520Bulb extends BaseBulb { constructor(ip: string, credentials: TapoCredentials); /** * Get device model */ protected getDeviceModel(): string; }