Associate
If setup on a raspberry pi. How do you show this on a tablet?
If setup on a raspberry pi. How do you show this on a tablet?
If setup on a raspberry pi. How do you show this on a tablet?
Home Assistant will be available on your local network under the ip address of the Pi and port 8123, for example 192.168.1.10:8123.
You can either view it in a Web browser or via the official app.
I find the app better to use than a Web browser.
What's also cool that I've just been spending some time over the last couple of weeks setting up; you can create multiple users, and then create a default dashboard to display.
For example, I created a tablet user, and a dashboard specifically for the tablet. I've also hidden away some switches (smart Plug / WOL buttons) so that family using the tablet can't switch them on/off by accident.
What's wrong with the docker method?as an added question - not entirely sure if I am happy with this docker method and thinking a new Raspi install might be better - any thoughts??
Had a HA spun up on my QNAP NAS and its detected a few things round the house. Would be quite interested in putting cheapy temperture monitors in lots of rooms as I live in a old house and want to be able to track the house temps so I can think about my heating upgrades later this year. Anything out there that I can buy a dozen or so that I can integrate easily into the HA system???
What's wrong with the docker method?
I use Aqara sensors they're pretty cheap off Aliexpress. Use a Conbee II as a receiver.
OK it looks like I have installed home assistant core and not supervised so some of the stuff I have been reading doesnt work - although I have managed to add HACS to it.
I assume if I want the full blown version - I'll need to spin up a Debian image and install on that?
Had a HA spun up on my QNAP NAS and its detected a few things round the house. Would be quite interested in putting cheapy temperture monitors in lots of rooms as I live in a old house and want to be able to track the house temps so I can think about my heating upgrades later this year. Anything out there that I can buy a dozen or so that I can integrate easily into the HA system???
Got some binary sensors worked out last night which take data from my TP-Link plugs and monitor if the washing machine or dishwasher are on. Next step is to add notifications for when they're finished.
- platform: template
sensors:
dishwasher_watts:
value_template: >
{{ state_attr("switch.dishwasher", "current_power_w") | replace(" W", "") | float("Unavailable") }}
unit_of_measurement: Watt
friendly_name: Dishwasher usage
- platform: template
sensors:
dishwasher:
friendly_name: Dishwasher
value_template: >
{{ states("sensor.dishwasher_watts") | float(0) > 3 }}
delay_off: "00:03:00"
icon_template: >
{% if is_state("binary_sensor.dishwasher", "on") %}
mdi:dishwasher
{% else %}
mdi:dishwasher-off
{% endif %}
Using the latest firmware as far as I am aware.
Using a sensor template for the current usage (I found on the internet):
HTML:- platform: template sensors: dishwasher_watts: value_template: > {{ state_attr("switch.dishwasher", "current_power_w") | replace(" W", "") | float("Unavailable") }} unit_of_measurement: Watt friendly_name: Dishwasher usage
And a binary sensor for the status:
HTML:- platform: template sensors: dishwasher: friendly_name: Dishwasher value_template: > {{ states("sensor.dishwasher_watts") | float(0) > 3 }} delay_off: "00:03:00" icon_template: > {% if is_state("binary_sensor.dishwasher", "on") %} mdi:dishwasher {% else %} mdi:dishwasher-off {% endif %}
That current power is right, it was in the middle of heating up for the drying process, it doesn't draw that much power the whole time
Ahh yes of course, i was thinking why don't you just use the plug status to mark it on / off, but you wouldn't know then if the dishwasher had finished. Do you actually switch the plug off? Or just mark the sensor as off?
Thanks for the template sensor, i'll give that a go.
When I said this I had seen some spurious Amazon pricing of the conbee II at like £150. On second looks it seems a more normal price is £50ish. That's acceptable. Problem is availability looks slim. One in Germany on eBay.What do I gain with a conbee 2? (considerably more expensive)
When I said this I had seen some spurious Amazon pricing of the conbee II at like £150. On second looks it seems a more normal price is £50ish. That's acceptable. Problem is availability looks slim. One in Germany on eBay.
Perhaps I need to compare that with zigbee2mqtt options.
When I said this I had seen some spurious Amazon pricing of the conbee II at like £150. On second looks it seems a more normal price is £50ish. That's acceptable. Problem is availability looks slim. One in Germany on eBay.
Perhaps I need to compare that with zigbee2mqtt options.