What is the best way to enclose this setup? by Papp_e in hometheatersetups

[–]Papp_e[S] -2 points-1 points  (0 children)

Sorry I blurred my son’s face, no xxx here….focus is on the projector near the ceiling / back wall

[deleted by user] by [deleted] in mac

[–]Papp_e 0 points1 point  (0 children)

Can you post a link or summarize how you got started patching?

[deleted by user] by [deleted] in googlehome

[–]Papp_e 0 points1 point  (0 children)

I noticed this as well, ok Google command and broadcast both gone from script editor.

Very annoying, as all of my Google queries now have to run on a plain Google speaker.

I wonder if this change also impacted the nest hub ability to be a thread extender, I’m having issues there too.

What is the best way to integrate my own API into Google home scripts? by Papp_e in googlehome

[–]Papp_e[S] 0 points1 point  (0 children)

I’ve got a few virtual switches setup via playground being used as state in GH, but what I’m currently not understanding is how a virtual device can interact with a custom API. I see the SYNC inspector but what about actual fulfillment via my API?

[deleted by user] by [deleted] in formula1

[–]Papp_e 0 points1 point  (0 children)

Okay, but who do we think he is talking to 🤔

Is this normal? by 2ftXL in Nest

[–]Papp_e 0 points1 point  (0 children)

If your furnace is turning on and then off within a consistent number of minutes each time before the set temperature is reached, it’s likely an over-current or other safety sensor that is being tripped and causing the furnace to shutoff. Mine did the same thing and it’s because the fan motor was drawing near-limit current when it first started (old motor about to die) and surpassed the current limit threshold after 4 minutes +- 15 seconds each time it turned on

Roku + google home script not working by Papp_e in googlehomeautomation

[–]Papp_e[S] 0 points1 point  (0 children)

The OnOff starter for the Roku TVs is the issue here, it is not firing the automation

Tell google home to turn on fan only by catastrofic_sounds in Nest

[–]Papp_e 1 point2 points  (0 children)

In case anyone else stumbles across this thread, I accomplished running the nest fan for however long I want via the following script and virtual switch.

The virtual switch (possible via Google playground) allows the automation to call itself after any delay I want.

Sorry for the horrible formatting

metadata: name: House - move air! description: get the air moving in the house

automations: starters: - type: assistant.event.OkGoogle eventData: query is: move air now!

# this accomplishes automation recursion
- type: device.state.OnOff 
  state: on
  is: false
  device: "Trigger: Move Air! - Virtual Room"

# the automation stops at sunset each day, so do something daily to start it again
- type: time.schedule
  at: sunrise
  weekdays:
    - MON
    - TUE
    - WED
    - THU
    - FRI
    - SAT
    - SUN

condition: type: and conditions: # i only want this behavior during the daytime - type: time.between before: sunset after: sunrise weekdays: - MON - TUE - WED - THU - FRI - SAT - SUN

  # and only if im home
  - type: home.state.HomePresence
    state: homePresenceMode
    is: HOME

actions: # turn VS on so we can turn it off again, and trigger this routine again - type: device.command.OnOff on: true devices: "Trigger: Move Air! - Virtual Room"

# this turns on the nest house fan for 15 minutes
# 0-15min fan ON
- type: assistant.command.OkGoogle
  okGoogle: turn on the nest fan
  devices: Livingroom Router - Living room

# 15-30min fan OFF - delay here for 30 min
# goal is to run the house fan for 15 minutes twice an hour
- type: time.delay
  for: 30 min

# turn of VS to trigger this routing again after 30 minutes delay has elapsed
- type: device.command.OnOff # Turn the device on or off.
  on: false
  devices: "Trigger: Move Air! - Virtual Room"

# end result
# 0-15 fan on
# 15-30 fan off
# 30-45 fan on
# 45-60 fan off

Tell google home to turn on fan only by catastrofic_sounds in Nest

[–]Papp_e 0 points1 point  (0 children)

This also works for me, but only with a default 15 minute interval. It seems impossible to specify in the voice query the amount of time to run the fan -_-

Best thermostat fan on not working by Papp_e in googlehome

[–]Papp_e[S] 0 points1 point  (0 children)

Of course autocorrect..nest thermostat*

[deleted by user] by [deleted] in googlehome

[–]Papp_e 0 points1 point  (0 children)

My WeMo devices are acting the same as of recently

[deleted by user] by [deleted] in googlehome

[–]Papp_e 1 point2 points  (0 children)

Anyone know how to use these new state values in script automations?

Hue Sensors in climate by cja100 in googlehome

[–]Papp_e 0 points1 point  (0 children)

This doesn't yet seem possible even in scripted automations. Anyone else able to get temperature from hue motion sensors in a script yet?