Ah yeah so you can view the live feed?Only homebridge-camera-ui plugin
Sounds like Feek has Ring setup to deliver push notifications.
Ah yeah so you can view the live feed?Only homebridge-camera-ui plugin
Not sure, I'm too pov for a Apple TV but yes agreed.Ah yeah so you can view the live feed?
Sounds like Feek has Ring setup to deliver push notifications.
Doorbell
In addition to the Unifi G4 Doorbell, the following doorbells have full Scrypted support: doorbell events and two way audio.
TIP
- Reolink Wifi/PoE Doorbell
- Amcrest AD410
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.
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.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,
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.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
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 laterI 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.
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
What’s the sensor? And what are the lights? Specifically, how are they connected to your network?
Check out Bluecubes post --- I would wager the garbage internet connectivity may be part of the delay.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.
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
Check out Bluecubes post --- I would wager the garbage internet connectivity may be part of the delay.
Moving communication to local may work.
Hive uses cloud polling so it's always going to have a delay unfortunately.It's a hive motion sensor - what info do you need?
Hive uses cloud polling so it's always going to have a delay unfortunately.
Posts may be out of order - but that's exactly what Bluecube has figured out. How to talk to Hive localAha! well that will be that then - I'll find a better sensor to do what I want it to do. Cheers
Yep I gathered!Posts may be out of order - but that's exactly what Bluecube has figured out. How to talk to Hive local
The main hub is connected by LAN of course, but yeah the rest connects wirelessly to the hive hub.Being WiFi they might be supported locally. All my local hive items are via zigbee but it's still worth exploring.
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.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.
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
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.