@@ -254,23 +254,23 @@ async def async_setup_entry(hass, config_entry, async_add_entities):
254
254
255
255
if device .support_wifi_strength :
256
256
_LOGGER .debug ("DAIKIN RESIDENTIAL ALTHERMA: supports wifi signal strength" )
257
- sensor = DaikinSensor .factory (device , ATTR_WIFI_STRENGTH )
257
+ sensor = DaikinSensor .factory (device , ATTR_WIFI_STRENGTH , "" )
258
258
sensors .append (sensor )
259
259
if device .support_wifi_ssid :
260
260
_LOGGER .debug ("DAIKIN RESIDENTIAL ALTHERMA: supports wifi ssid" )
261
- sensor = DaikinSensor .factory (device , ATTR_WIFI_SSID )
261
+ sensor = DaikinSensor .factory (device , ATTR_WIFI_SSID , "" )
262
262
sensors .append (sensor )
263
263
if device .support_local_ssid :
264
264
_LOGGER .debug ("DAIKIN RESIDENTIAL ALTHERMA: supports local ssid" )
265
- sensor = DaikinSensor .factory (device , ATTR_LOCAL_SSID )
265
+ sensor = DaikinSensor .factory (device , ATTR_LOCAL_SSID , "" )
266
266
sensors .append (sensor )
267
267
if device .support_mac_address :
268
268
_LOGGER .debug ("DAIKIN RESIDENTIAL ALTHERMA: supports mac address" )
269
- sensor = DaikinSensor .factory (device , ATTR_MAC_ADDRESS )
269
+ sensor = DaikinSensor .factory (device , ATTR_MAC_ADDRESS , "" )
270
270
sensors .append (sensor )
271
271
if device .support_serial_number :
272
272
_LOGGER .debug ("DAIKIN RESIDENTIAL ALTHERMA: supports serial number" )
273
- sensor = DaikinSensor .factory (device , ATTR_SERIAL_NUMBER )
273
+ sensor = DaikinSensor .factory (device , ATTR_SERIAL_NUMBER , "" )
274
274
sensors .append (sensor )
275
275
276
276
async_add_entities (sensors )
0 commit comments