CHANGE: removed some defaults in basemodel, to create less in toJSON

This commit is contained in:
2024-08-02 08:11:08 +02:00
parent ddadb1f14b
commit c2c82d73c1
3 changed files with 5 additions and 5 deletions

View File

@@ -1,8 +1,8 @@
import { MQTTEntity } from './mqtt_base';
export class MqttLight extends MQTTEntity {
pl_on: string = '1';
pl_off: string = '0';
pl_on: string = '';
pl_off: string = '';
val_tpl: string = '';
bri_cmd_t: string = 'brightness/command/topic';
_cmd_t: string = 'command/topic';

View File

@@ -1,7 +1,7 @@
import { iMQTTEntityBase, MQTTEntity } from './mqtt_base';
export class MqttSensor extends MQTTEntity implements iMqttSensor {
unit_of_meas: string = 'meassure';
unit_of_meas: string = '';
override ent_type: string = 'sensor';
override attrs: Set<string> = new Set([
'name',

View File

@@ -21,8 +21,8 @@ export class MqttSwitch extends MQTTEntity {
_dev_cla: DeviceClass = new DeviceClass(['switch', 'outlet']);
cmd_t: string = 'command/topic';
pl_on: string = '1';
pl_off: string = '0';
pl_on: string = '';
pl_off: string = '';
override set name(name: string) {
super.name = name;