Files
dispatcher_ng/dist/AHomegearItem.js
Wolfgang Hottgenroth 11c3def220 first Hue light
2018-01-25 16:23:06 +01:00

14 lines
568 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const AItem_1 = require("./AItem");
class AHomegearItem extends AItem_1.AItem {
constructor(floor, room, item, label, hmId) {
super(floor, room, item, label);
this.hmId = hmId;
this.homegearTopicPre = 'homegear/instance1';
this.actionTopicPre = `${this.homegearTopicPre}/set/${this.hmId}`;
this.deviceTopicPre = `${this.homegearTopicPre}/plain/${this.hmId}`;
}
}
exports.AHomegearItem = AHomegearItem;
//# sourceMappingURL=AHomegearItem.js.map