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