Airthings Integration: Can't configure for pCi/L units vs Bq/M3

The default inbox Airthings integration does not allow for the configuration and use of pCi/L units which are the more common units to use in the US. The integration also does not follow the Airthings user defaults configured in the Airthings UX and app - which IMO, it should.

Radon levels: What do they mean? (airthings.com)

That’s what customizations and/or templates is for.

Thanks @nickrout. Kinda new to this (coming from SmartThings). Any pointers where to start?

you can create a custom sensor in your configuration.yaml file. Below is what i have.
Note that sensor.airthings_radon what is listed for my entity id for the radon

  • platform: template
    sensors:
    radon_concentration_pci_per_l:
    friendly_name: “Radon Concentration (pCi/L)”
    unit_of_measurement: “pCi/L”
    value_template: “{{ states(‘sensor.airthings_radon’) | float / 37 | round(2) }}”
    entity_id: sensor.airthings_view_plus_radon
2 Likes

Yup! I got it worked out. Thanks