INKBIRD -- Help Integrate!

Hi Stuart, I made myself a workarround. As I explained I registered my inkbird with the tuya app. With this app I can control the inkbird.
I also made an tuya integration with Home Assistant. It created a climate sensor but unfortunatly it shows the temperature times 10, so 223 degrees celcius instead of 22,3.

Therefore I created two sensor templates as described below. On is showing the current temperature and the other one te setting temperature. I cannot change the temp, just read only.
I use my inkbird for controling an old fridge, which I use for fermenting beer.
Hope this helps.

Regards!

  - platform: template
    sensors:
      gistkast_set_temp:
        friendly_name: gistkast instelling
        entity_id: sensor.time
        device_class: temperature
        unit_of_measurement: "°C"
        value_template: >
            {{ state_attr('climate.gistkast', 'temperature') /10 }}

      gistkast_temp:
        friendly_name: gistkast temperatuur
        entity_id: sensor.time
        device_class: temperature
        unit_of_measurement: "°C"
        value_template: >
            {{ state_attr('climate.gistkast', 'current_temperature') /10 }}

chrome_2020-03-22_11-58-23 chrome_2020-03-22_11-59-10

2 Likes