File tree 6 files changed +6
-6
lines changed
services/zigbee2mqtt/exposes
6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 3122
3122
},
3123
3123
"teleinformation" : {
3124
3124
"shortCategoryName" : " Teleinformation" ,
3125
+ "binary" : " Schalter" ,
3125
3126
"east" : " Gesamte gelieferte aktive Leistung (EAST)" ,
3126
3127
"eait" : " Gesamte eingespeiste aktive Leistung (EAIT)" ,
3127
3128
"easf01" : " Gesamte gelieferte aktive Leistung (EASF01)" ,
3162
3163
"sinsti" : " Sofortige eingespeiste Scheinleistung (SINSTI)" ,
3163
3164
"smaxin" : " Max. eingespeiste Scheinleistung n (SMAXIN)" ,
3164
3165
"smaxin_1" : " Max. eingespeiste Scheinleistung n-1 (SMAXIN-1)" ,
3165
- "relais" : " Relais" ,
3166
3166
"smaxn" : " Gipfelgelieferte Scheinleistung 1 (SMAXN)" ,
3167
3167
"smaxn2" : " Gipfelgelieferte Scheinleistung 2 (SMAXN2)" ,
3168
3168
"smaxn3" : " Gipfelgelieferte Scheinleistung 3 (SMAXN3)" ,
Original file line number Diff line number Diff line change 3122
3122
},
3123
3123
"teleinformation" : {
3124
3124
"shortCategoryName" : " Teleinformation" ,
3125
+ "binary" : " Switch" ,
3125
3126
"east" : " Total active power delivered (EAST)" ,
3126
3127
"eait" : " Total active power injected (EAIT)" ,
3127
3128
"easf01" : " Total active power delivered (EASF01)" ,
3162
3163
"sinsti" : " Instantaneous injected apparent power (SINSTI)" ,
3163
3164
"smaxin" : " Max. injected apparent power n (SMAXIN)" ,
3164
3165
"smaxin_1" : " Max. injected apparent power n-1 (SMAXIN-1)" ,
3165
- "relais" : " Relay" ,
3166
3166
"smaxn" : " Peak delivered apparent power 1 (SMAXN)" ,
3167
3167
"smaxn2" : " Peak delivered apparent power 2 (SMAXN2)" ,
3168
3168
"smaxn3" : " Peak delivered apparent power 3 (SMAXN3)" ,
Original file line number Diff line number Diff line change 3122
3122
},
3123
3123
"teleinformation" : {
3124
3124
"shortCategoryName" : " Téléinformation" ,
3125
+ "binary" : " Relais" ,
3125
3126
"east" : " Puissance active totale délivrée (EAST)" ,
3126
3127
"eait" : " Puissance active totale injectée (EAIT)" ,
3127
3128
"easf01" : " Puissance active totale délivrée (EASF01)" ,
3162
3163
"sinsti" : " Puissance apparente instantanée injectée (SINSTI)" ,
3163
3164
"smaxin" : " Puissance apparente max. injectée n (SMAXIN)" ,
3164
3165
"smaxin_1" : " Puissance apparente max. injectée n-1 (SMAXIN-1)" ,
3165
- "relais" : " Relais" ,
3166
3166
"smaxn" : " Puissance apparente délivrée de crête 1 (SMAXN)" ,
3167
3167
"smaxn2" : " Puissance apparente délivrée de crête 2 (SMAXN2)" ,
3168
3168
"smaxn3" : " Puissance apparente délivrée de crête 3 (SMAXN3)" ,
Original file line number Diff line number Diff line change @@ -281,6 +281,7 @@ export const DeviceFeatureCategoriesIcon = {
281
281
[ DEVICE_FEATURE_TYPES . ENERGY_SENSOR . INDEX ] : 'zap'
282
282
} ,
283
283
[ DEVICE_FEATURE_CATEGORIES . TELEINFORMATION ] : {
284
+ [ DEVICE_FEATURE_TYPES . TELEINFORMATION . BINARY ] : 'power' ,
284
285
[ DEVICE_FEATURE_TYPES . TELEINFORMATION . EAST ] : 'zap' ,
285
286
[ DEVICE_FEATURE_TYPES . TELEINFORMATION . EAIT ] : 'zap' ,
286
287
[ DEVICE_FEATURE_TYPES . TELEINFORMATION . EASF01 ] : 'zap' ,
@@ -321,7 +322,6 @@ export const DeviceFeatureCategoriesIcon = {
321
322
[ DEVICE_FEATURE_TYPES . TELEINFORMATION . SINSTI ] : 'zap' ,
322
323
[ DEVICE_FEATURE_TYPES . TELEINFORMATION . SMAXIN ] : 'zap' ,
323
324
[ DEVICE_FEATURE_TYPES . TELEINFORMATION . SMAXIN_1 ] : 'zap' ,
324
- [ DEVICE_FEATURE_TYPES . TELEINFORMATION . RELAIS ] : 'zap' ,
325
325
[ DEVICE_FEATURE_TYPES . TELEINFORMATION . SMAXN ] : 'zap' ,
326
326
[ DEVICE_FEATURE_TYPES . TELEINFORMATION . SMAXN2 ] : 'zap' ,
327
327
[ DEVICE_FEATURE_TYPES . TELEINFORMATION . SMAXN3 ] : 'zap' ,
Original file line number Diff line number Diff line change @@ -583,7 +583,7 @@ module.exports = {
583
583
RELAIS : {
584
584
feature : {
585
585
category : DEVICE_FEATURE_CATEGORIES . TELEINFORMATION ,
586
- type : DEVICE_FEATURE_TYPES . TELEINFORMATION . RELAIS ,
586
+ type : DEVICE_FEATURE_TYPES . TELEINFORMATION . BINARY ,
587
587
} ,
588
588
} ,
589
589
SMAXN : {
Original file line number Diff line number Diff line change @@ -625,6 +625,7 @@ const DEVICE_FEATURE_TYPES = {
625
625
DAILY_CONSUMPTION : 'daily-consumption' ,
626
626
} ,
627
627
TELEINFORMATION : {
628
+ BINARY : 'binary' ,
628
629
EAST : 'east' ,
629
630
EAIT : 'eait' ,
630
631
EASF01 : 'easf01' ,
@@ -665,7 +666,6 @@ const DEVICE_FEATURE_TYPES = {
665
666
SINSTI : 'sinsti' ,
666
667
SMAXIN : 'smaxin' ,
667
668
SMAXIN_1 : 'smaxin_1' ,
668
- RELAIS : 'relais' ,
669
669
SMAXN : 'smaxn' ,
670
670
SMAXN2 : 'smaxn2' ,
671
671
SMAXN3 : 'smaxn3' ,
You can’t perform that action at this time.
0 commit comments