Home Assistant beginners

I don't have that anywhere.
rGvDX3I.png


Settings -> Devices & Services
 
Currently have a hue setup at home, but have been looking at HA.

Would I be possible using this to have a PIR turn on some exterior garage lighting when the PIR is triggered, but also have those lights always on between certain times but dimmed?

On a side note, is there an unraid docker?
 
There's nothing there.

I'll start another instance on a Pi, see exactly how it discovers stuff and add it in manually.
if you can remember what you want to add back in then go to Settings/ Devices & Services, click on the Add Integration button on the bottom right and search for what you want to add. Draytek isn’t there btw
 
Currently have a hue setup at home, but have been looking at HA.

Would I be possible using this to have a PIR turn on some exterior garage lighting when the PIR is triggered, but also have those lights always on between certain times but dimmed?

On a side note, is there an unraid docker?
If the PIR is part of the Hue system then yes, it’ll be straight forward to do what you want.

Just checked and yes, there’s a HA container in Unraid
 
If the PIR is part of the Hue system then yes, it’ll be straight forward to do what you want.

Just checked and yes, there’s a HA container in Unraid
Thanks!

I don’t currently have any of the parts for the project, so will be able to start from scratch.

Is there a go to website for part selection for projects?
 
if you can remember what you want to add back in then go to Settings/ Devices & Services, click on the Add Integration button on the bottom right and search for what you want to add. Draytek isn’t there btw
Aye, that's what I did first of all, it'll be some kind of snmp thing but that didn't find it either. It's OK, I'll work it out :)
 
I'm using a UniFi UXG Max.

Home Assistant is querying the UXG using SNMP and it's that data which is being displayed. It should work for any router that supports SNMP but I doubt Virgin Media have it configured or give you the option to configure it on their Hub.

Can you pull usage data via SNMP for Unifi? It's annoying that it's fully available in the Unifi app, but the integration on HA doesn't have this.
 
Code:
template:
  - sensor:
      - name: "Cost today"
        unit_of_measurement: "£"
        state: >
          {% set consumption = states('sensor.garden_room_ac_today_s_consumption') | float %}
          {% set rate = states('sensor.octopus_energy_electricity_19l2262519_1012474423759_current_rate') | float %}

          {{ ((consumption * rate)) | round(1, default=0) }}

I'm not sure it is working but that could be because I am selecting the wrong sensors - the maths seems to be OK and I think the path I am following is OK though. Will troubleshoot

(I just checked and its stuck at £1)
This does work for me - I've not had anything with a daily usage above £1 so it's not stuck at all.

I changed round(1 to round(2 to give me two decimal places on the cost and it's looking like this on the Sensors I've created so far.

9XJiMKk.png


It's only a small thing but is there any way to get the £ before the value, so it shows at £0.44, £0.43, etc?
 
Back
Top Bottom