Home Assistant beginners

Ah yeah so you can view the live feed?

Sounds like Feek has Ring setup to deliver push notifications.
Not sure, I'm too pov for a Apple TV but yes agreed.

Although apparently there isn't the best integration between Apple TV and Ring.

Maybe this is an option,

Doorbell​

In addition to the Unifi G4 Doorbell, the following doorbells have full Scrypted support: doorbell events and two way audio.

  • Reolink Wifi/PoE Doorbell
  • Amcrest AD410
TIP

A two way audio camera can be combined with a smart button to create a doorbell in Scrypted. This is a flexible and reliable solution. Within HomeKit, Google Home, and Alexa, the doorbell group will behave exactly like any other Doorbell. See the DIY Doorbell.
 
Last edited:
Not sure, I'm too pov for a Apple TV but yes agreed.

Although apparently there isn't the best integration between Apple TV and Ring.

Maybe this is an option,

Saw that mentioned in an HA thread about Reolink + AppleTV. I think I will give it a go, although I presume it is subscription fee based.
 
If anyone has Hive set up and wants to run it locally on HA then I’ve written a howto guide over on the HA forums. I’ve had some serious issues with Hive dropping off HA for unknown reasons and disrupting my heating which is why I moved everything over to HA

Linky link
 
If anyone has Hive set up and wants to run it locally on HA then I’ve written a howto guide over on the HA forums. I’ve had some serious issues with Hive dropping off HA for unknown reasons and disrupting my heating which is why I moved everything over to HA

Linky link
I tried getting our Hive to connect to the app then the plan was to integrate it into HA. Can't get the app to detect the thermostat though and that is the same in Home assistant as the standard integration uses the cloud from Hive to get the data. It appears this is a common problem. I gave up in the end. Would this cut out it needing to connect to the Hive server ? Part of me thinks it may be an issue with zigbee between the stat/hub and receiver.
 
I tried getting our Hive to connect to the app then the plan was to integrate it into HA. Can't get the app to detect the thermostat though and that is the same in Home assistant as the standard integration uses the cloud from Hive to get the data. It appears this is a common problem. I gave up in the end. Would this cut out it needing to connect to the Hive server ? Part of me thinks it may be an issue with zigbee between the stat/hub and receiver.
Yes, it’s a completely local solution. I’d personally put everything straight into HA rather than through Hive. Hive are going to cut access to their api which means only accessing your Hive setup through their app. That was another reason I moved everything over to HA as better sooner than later
 
Hi guys

Quick question - this automation works but there's a massive delay - sometimes it can take up to 30s.

Is there a way to make it poll quicker?

The motion sensor is a hive one.

Code:
alias: Lights on movement
description: ""
triggers:
  - entity_id:
      - binary_sensor.living_room
    to: "on"
    trigger: state
conditions:
  - condition: time
    after: "15:00:00"
    before: "17:00:00"
    weekday:
      - mon
      - tue
      - wed
      - thu
      - fri
      - sat
      - sun
actions:
  - type: turn_on
    device_id: 6e91c4528c27e0524b5de983ce964b16
    entity_id: 82660df3bc54c5775247c1e61226ee60
    domain: switch
  - type: turn_on
    device_id: 6261b7635e518bd4e567b5d951b13d8e
    entity_id: c546eb9741acc93a048891b0d3eb8bb5
    domain: switch
mode: single
 
ive been trying to do a simple turn on switch when i am on my way home using proximity but completely failing and cannot get it to kick in. I was looking to turn on a light when i am say 200m from home zone. Does anyone have any good guide as i used one off YouTube and still cannot.
 
What’s the sensor? And what are the lights? Specifically, how are they connected to your network?

It's a hive motion sensor - what info do you need?

It's connected to the network via wifi, but I think how the hive stuff works is that it goes to the hive hub (which then does it's thing), but I'm not 100% sure. I'm not overly bothered, this is me just playing with things to see how it works, however it would be nice to get this a bit better as it's dark early at the moment, and having the lights come on when someone walks into the room would be kinda neat.
 
It's a hive motion sensor - what info do you need?

It's connected to the network via wifi, but I think how the hive stuff works is that it goes to the hive hub (which then does it's thing), but I'm not 100% sure. I'm not overly bothered, this is me just playing with things to see how it works, however it would be nice to get this a bit better as it's dark early at the moment, and having the lights come on when someone walks into the room would be kinda neat.
Check out Bluecubes post --- I would wager the garbage internet connectivity may be part of the delay.

Moving communication to local may work.
If anyone has Hive set up and wants to run it locally on HA then I’ve written a howto guide over on the HA forums. I’ve had some serious issues with Hive dropping off HA for unknown reasons and disrupting my heating which is why I moved everything over to HA

Linky link
 
ive been trying to do a simple turn on switch when i am on my way home using proximity but completely failing and cannot get it to kick in. I was looking to turn on a light when i am say 200m from home zone. Does anyone have any good guide as i used one off YouTube and still cannot.
This is how I control my porch lights a similar way to what you want. It's part of a bigger automation so ignore any wierdness.

YAML:
alias: Motion controls - porch
description: ""
triggers:
  - entity_id: person.gentwee
    zone: zone.home
    event: enter
    id: Gentwee home
    trigger: zone
conditions:
  - condition: state
    entity_id: input_boolean.motion_controls_porch_wanted
    state: "on"
actions:
  - choose:
      - conditions:
          - condition: trigger
            id:
              - Gentwee home
          - condition: numeric_state
            entity_id: sensor.porch_motion_sensor_illuminance_lux
            below: 1200
        sequence:
          - alias: Vary porch brightness due to time
            if:
              - condition: time
                after: "22:00:00"
                before: "06:00:00"
            then:
              - alias: Light porch dimly
                action: light.turn_on
                metadata: {}
                data:
                  kelvin: 2788
                  brightness_pct: 20
                target:
                  entity_id: light.front_porch_light
            else:
              - action: light.turn_on
                metadata: {}
                data:
                  kelvin: 6094
                  brightness_pct: 100
                target:
                  entity_id: light.front_porch_light
                alias: Full brightness
mode: restart
 
Last edited:
It's a hive motion sensor - what info do you need?

It's connected to the network via wifi, but I think how the hive stuff works is that it goes to the hive hub (which then does it's thing), but I'm not 100% sure. I'm not overly bothered, this is me just playing with things to see how it works, however it would be nice to get this a bit better as it's dark early at the moment, and having the lights come on when someone walks into the room would be kinda neat.

I’m fairly certain that all Hive stuff is Zigbee rather than WiFi which is good. At the moment, everything is sorted out via the Hive hub. Any Hive devices connected to HA have to talk to HA via a cloud connection (as has been mentioned) which may well account for the hefty delay.
If you’re up for experimenting then a Zigbee dongle and Zigbee2MQTT opens up a whole new world of cheap, fast sensors
 
Back
Top Bottom