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 • 485 B
JavaScript
;
/**
* Tapo L530 Smart Bulb - Full color with effects
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.L530Bulb = void 0;
const base_bulb_1 = require("./base-bulb");
class L530Bulb extends base_bulb_1.BaseBulb {
constructor(ip, credentials) {
super(ip, credentials);
}
/**
* Get device model
*/
getDeviceModel() {
return 'L530';
}
}
exports.L530Bulb = L530Bulb;
//# sourceMappingURL=l530-bulb.js.map