iobroker-ucl 1.0.37 → 1.0.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/homematic.js +0 -3
- package/homematic.ts +0 -5
- package/package.json +1 -1
package/homematic.js
CHANGED
@@ -198,9 +198,6 @@ var HomematicFunkschaltaktor = /** @class */ (function (_super) {
|
|
198
198
|
HomematicFunkschaltaktor.prototype.getCategory = function () {
|
199
199
|
return deviceFunkSchaltaktor;
|
200
200
|
};
|
201
|
-
HomematicFunkschaltaktor.prototype.isStatusBattery = function () {
|
202
|
-
return !this.adapter.getState(this.baseState + ".0.LOW_BAT").val; // // hm-rpc.0.000A9BE993E2F7.0.LOW_BAT
|
203
|
-
};
|
204
201
|
return HomematicFunkschaltaktor;
|
205
202
|
}(AbstractHomematic));
|
206
203
|
exports.HomematicFunkschaltaktor = HomematicFunkschaltaktor;
|
package/homematic.ts
CHANGED
@@ -205,13 +205,8 @@ export class HomematicFunkschaltaktor extends AbstractHomematic {
|
|
205
205
|
public getCategory(): string {
|
206
206
|
return deviceFunkSchaltaktor;
|
207
207
|
}
|
208
|
-
|
209
|
-
public isStatusBattery(): boolean {
|
210
|
-
return !this.adapter.getState(this.baseState + ".0.LOW_BAT").val; // // hm-rpc.0.000A9BE993E2F7.0.LOW_BAT
|
211
|
-
}
|
212
208
|
}
|
213
209
|
|
214
|
-
|
215
210
|
export class HomematicRauchmelder extends AbstractHomematic {
|
216
211
|
constructor(adapter: any, id: number, baseState: string, etage: string, raum: string, device: string) {
|
217
212
|
super(adapter, id, baseState, etage, raum, device);
|