Since Eufy ‘currently’ supports Google Home voice commands to set the various Eufy security modes (sometimes), I took Google Home’s new scripting features out for a spin.
HOWEVER! The Eufy integration with the Google servers is not very stable at all as their Google Home integration works on average about 50 percent of the time (at best), but it’s something.
Anyway, here is an example of a Google Home script using the Google Home app’s geolation as the starter (trigger) to set the Eufy Security mode to Away.
metadata:
name: Eufy Away Mode
description: Eufy Home Security Automation
automations:
starters:
- type: home.state.HomePresence
state: homePresenceMode
is: AWAY
actions:
- type: device.command.ArmDisarm
devices: Eufy HomeBase - 1-Home Security
arm: true
armLevel: 0 # 0 = Away, 1 = Home, 3 = Custom1, 4 = Custom2, 5 = Custom3
For my Google Home script to set Eufy security to Home mode, I changed the starter to ‘is: HOME’, and set the action to ‘armLevel: 1’.
Also, I’m using SmartThings home automation devices as starters (triggers) through Google Home to set the Eufy Home and Away security modes, including the various ‘custom’ security modes. For example, when SmartThings is in Armed mode and a contract sensor is opened triggering an Intrusion virtual device, I have a Google Home script using the Intrusion virtual device state as the starter (trigger) to set the Eufy cameras to a ‘Custom’ security mode (3, 4, or 5) where all of my indoor & outdoor cameras are actively recording and sounding the Eufy HomeBase siren.
Presently, I’m currently testing a 5 second wait after the first action to send the armLevel action a second time, which so far has been more stable in setting the Eufy security mode. Maybe it needs to wake-up the integration servers first so that the second time the armLevel action is sent it works. Here is the 5 second wait added to the script to send the armLevel a second time.
- type: time.delay
for: 5sec
- type: device.command.ArmDisarm
devices: Eufy HomeBase - 1-Home Security
arm: true
armLevel: 0 # 0 = Away, 1 = Home, 3 = Custom1, 4 = Custom2, 5 = Custom3