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
20 lines • 504 B
JavaScript
;
/**
* Tapo L520 Smart Bulb - Tunable white light with color temperature
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.L520Bulb = void 0;
const base_bulb_1 = require("./base-bulb");
class L520Bulb extends base_bulb_1.BaseBulb {
constructor(ip, credentials) {
super(ip, credentials);
}
/**
* Get device model
*/
getDeviceModel() {
return 'L520';
}
}
exports.L520Bulb = L520Bulb;
//# sourceMappingURL=l520-bulb.js.map