create a template sensor and set this as the value_template:
value_template: >
{% set time = states.whatever_your.sensor_is.state %}
{% set hours = ((time | int / 60) | string).split('.')[0] %}
{% set minutes = time | int % 60 %}
{{hours}} hours and {{minutes}} minutes
It gets more complicated if you really need to remove the āsā from the end of hours and minutes.
Thank you for the reply.
I know just about enough code to see how this will change my output, but sadly not how to implement this into my existing code.
Kind regards
DigiNorse