Commit 03e7824 1 parent 6f52f07 commit 03e7824 Copy full SHA for 03e7824
File tree 1 file changed +33
-0
lines changed
custom_components/daikin_residential_altherma
1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change 10
10
PERCENTAGE ,
11
11
SIGNAL_STRENGTH_DECIBELS_MILLIWATT ,
12
12
REVOLUTIONS_PER_MINUTE ,
13
+ CONCENTRATION_MICROGRAMS_PER_CUBIC_METER ,
13
14
)
14
15
15
16
from homeassistant .components .sensor import (
443
444
ENABLED_DEFAULT : True ,
444
445
ENTITY_CATEGORY : EntityCategory .DIAGNOSTIC ,
445
446
},
447
+ "roomHumidity" : {
448
+ CONF_DEVICE_CLASS : SensorDeviceClass .HUMIDITY ,
449
+ CONF_STATE_CLASS : None ,
450
+ CONF_UNIT_OF_MEASUREMENT : PERCENTAGE ,
451
+ CONF_ICON : "mdi:water-percent" ,
452
+ ENABLED_DEFAULT : True ,
453
+ ENTITY_CATEGORY : None ,
454
+ },
455
+ "pm1Concentration" : {
456
+ CONF_DEVICE_CLASS : SensorDeviceClass .PM1 ,
457
+ CONF_STATE_CLASS : None ,
458
+ CONF_UNIT_OF_MEASUREMENT : CONCENTRATION_MICROGRAMS_PER_CUBIC_METER ,
459
+ CONF_ICON : "" ,
460
+ ENABLED_DEFAULT : True ,
461
+ ENTITY_CATEGORY : None ,
462
+ },
463
+ "pm25Concentration" : {
464
+ CONF_DEVICE_CLASS : SensorDeviceClass .PM25 ,
465
+ CONF_STATE_CLASS : None ,
466
+ CONF_UNIT_OF_MEASUREMENT : CONCENTRATION_MICROGRAMS_PER_CUBIC_METER ,
467
+ CONF_ICON : "" ,
468
+ ENABLED_DEFAULT : True ,
469
+ ENTITY_CATEGORY : None ,
470
+ },
471
+ "pm10Concentration" : {
472
+ CONF_DEVICE_CLASS : SensorDeviceClass .PM10 ,
473
+ CONF_STATE_CLASS : None ,
474
+ CONF_UNIT_OF_MEASUREMENT : CONCENTRATION_MICROGRAMS_PER_CUBIC_METER ,
475
+ CONF_ICON : "" ,
476
+ ENABLED_DEFAULT : True ,
477
+ ENTITY_CATEGORY : None ,
478
+ },
446
479
}
447
480
448
481
You can’t perform that action at this time.
0 commit comments