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 3080
3080
},
3081
3081
"teleinformation" : {
3082
3082
"shortCategoryName" : " Teleinformation" ,
3083
+ "binary" : " Schalter" ,
3083
3084
"east" : " Gesamte gelieferte aktive Leistung (EAST)" ,
3084
3085
"eait" : " Gesamte eingespeiste aktive Leistung (EAIT)" ,
3085
3086
"easf01" : " Gesamte gelieferte aktive Leistung (EASF01)" ,
3120
3121
"sinsti" : " Sofortige eingespeiste Scheinleistung (SINSTI)" ,
3121
3122
"smaxin" : " Max. eingespeiste Scheinleistung n (SMAXIN)" ,
3122
3123
"smaxin_1" : " Max. eingespeiste Scheinleistung n-1 (SMAXIN-1)" ,
3123
- "relais" : " Relais" ,
3124
3124
"smaxn" : " Gipfelgelieferte Scheinleistung 1 (SMAXN)" ,
3125
3125
"smaxn2" : " Gipfelgelieferte Scheinleistung 2 (SMAXN2)" ,
3126
3126
"smaxn3" : " Gipfelgelieferte Scheinleistung 3 (SMAXN3)" ,
Original file line number Diff line number Diff line change 3080
3080
},
3081
3081
"teleinformation" : {
3082
3082
"shortCategoryName" : " Teleinformation" ,
3083
+ "binary" : " Switch" ,
3083
3084
"east" : " Total active power delivered (EAST)" ,
3084
3085
"eait" : " Total active power injected (EAIT)" ,
3085
3086
"easf01" : " Total active power delivered (EASF01)" ,
3120
3121
"sinsti" : " Instantaneous injected apparent power (SINSTI)" ,
3121
3122
"smaxin" : " Max. injected apparent power n (SMAXIN)" ,
3122
3123
"smaxin_1" : " Max. injected apparent power n-1 (SMAXIN-1)" ,
3123
- "relais" : " Relay" ,
3124
3124
"smaxn" : " Peak delivered apparent power 1 (SMAXN)" ,
3125
3125
"smaxn2" : " Peak delivered apparent power 2 (SMAXN2)" ,
3126
3126
"smaxn3" : " Peak delivered apparent power 3 (SMAXN3)" ,
Original file line number Diff line number Diff line change 3080
3080
},
3081
3081
"teleinformation" : {
3082
3082
"shortCategoryName" : " Téléinformation" ,
3083
+ "binary" : " Relais" ,
3083
3084
"east" : " Puissance active totale délivrée (EAST)" ,
3084
3085
"eait" : " Puissance active totale injectée (EAIT)" ,
3085
3086
"easf01" : " Puissance active totale délivrée (EASF01)" ,
3120
3121
"sinsti" : " Puissance apparente instantanée injectée (SINSTI)" ,
3121
3122
"smaxin" : " Puissance apparente max. injectée n (SMAXIN)" ,
3122
3123
"smaxin_1" : " Puissance apparente max. injectée n-1 (SMAXIN-1)" ,
3123
- "relais" : " Relais" ,
3124
3124
"smaxn" : " Puissance apparente délivrée de crête 1 (SMAXN)" ,
3125
3125
"smaxn2" : " Puissance apparente délivrée de crête 2 (SMAXN2)" ,
3126
3126
"smaxn3" : " Puissance apparente délivrée de crête 3 (SMAXN3)" ,
Original file line number Diff line number Diff line change @@ -278,6 +278,7 @@ export const DeviceFeatureCategoriesIcon = {
278
278
[ DEVICE_FEATURE_TYPES . ENERGY_SENSOR . INDEX ] : 'zap'
279
279
} ,
280
280
[ DEVICE_FEATURE_CATEGORIES . TELEINFORMATION ] : {
281
+ [ DEVICE_FEATURE_TYPES . TELEINFORMATION . BINARY ] : 'power' ,
281
282
[ DEVICE_FEATURE_TYPES . TELEINFORMATION . EAST ] : 'zap' ,
282
283
[ DEVICE_FEATURE_TYPES . TELEINFORMATION . EAIT ] : 'zap' ,
283
284
[ DEVICE_FEATURE_TYPES . TELEINFORMATION . EASF01 ] : 'zap' ,
@@ -318,7 +319,6 @@ export const DeviceFeatureCategoriesIcon = {
318
319
[ DEVICE_FEATURE_TYPES . TELEINFORMATION . SINSTI ] : 'zap' ,
319
320
[ DEVICE_FEATURE_TYPES . TELEINFORMATION . SMAXIN ] : 'zap' ,
320
321
[ DEVICE_FEATURE_TYPES . TELEINFORMATION . SMAXIN_1 ] : 'zap' ,
321
- [ DEVICE_FEATURE_TYPES . TELEINFORMATION . RELAIS ] : 'zap' ,
322
322
[ DEVICE_FEATURE_TYPES . TELEINFORMATION . SMAXN ] : 'zap' ,
323
323
[ DEVICE_FEATURE_TYPES . TELEINFORMATION . SMAXN2 ] : 'zap' ,
324
324
[ 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 @@ -608,6 +608,7 @@ const DEVICE_FEATURE_TYPES = {
608
608
DAILY_CONSUMPTION : 'daily-consumption' ,
609
609
} ,
610
610
TELEINFORMATION : {
611
+ BINARY : 'binary' ,
611
612
EAST : 'east' ,
612
613
EAIT : 'eait' ,
613
614
EASF01 : 'easf01' ,
@@ -648,7 +649,6 @@ const DEVICE_FEATURE_TYPES = {
648
649
SINSTI : 'sinsti' ,
649
650
SMAXIN : 'smaxin' ,
650
651
SMAXIN_1 : 'smaxin_1' ,
651
- RELAIS : 'relais' ,
652
652
SMAXN : 'smaxn' ,
653
653
SMAXN2 : 'smaxn2' ,
654
654
SMAXN3 : 'smaxn3' ,
You can’t perform that action at this time.
0 commit comments