Thanks @Borgy for your help, but ive checked this and it turns out that i have already done this. i did open sensor.py and thought maybe something needs to be changed in this first section
“”“Support for Daikin AC sensors.”""
import logging
from homeassistant.components.daikin import DOMAIN as DAIKIN_DOMAIN
from homeassistant.components.daikin.const import (
ATTR_INSIDE_TEMPERATURE, ATTR_OUTSIDE_TEMPERATURE, SENSOR_TYPE_TEMPERATURE,
SENSOR_TYPES)
from homeassistant.const import CONF_ICON, CONF_NAME, CONF_TYPE
from homeassistant.helpers.entity import Entity
from homeassistant.util.unit_system import UnitSystem
_LOGGER = logging.getLogger(name)
def setup_platform(hass, config, add_entities, discovery_info=None):
“”"Old way of setting up the Daikin sensors.
Can only be called when a user accidentally mentions the platform in their
config. But even in that case it would have been ignored.
"""
pass
async def async_setup_entry(hass, entry, async_add_entities):
“”“Set up Daikin climate based on config_entry.”""
daikin_api = hass.data[DAIKIN_DOMAIN].get(entry.entry_id)
async_add_entities([
DaikinClimateSensor(daikin_api, sensor, hass.config.units)
for sensor in SENSOR_TYPES
is this a possiblity. or what could i be missing.