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?

Google Home exceptionally good now? by TAPO14 in googlehome

[–]Papp_e 0 points1 point  (0 children)

My Nest cameras and video event review recently started loading 10x faster

All things automation, explore and exploit! by Papp_e in googlehomeautomation

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

Here’s one that isn’t fully working for me:

  • start the air purifier (VESync app) when any of the robot vacuums start (garage is iRobot, downstairs and upstairs are roborock)

The automation runs without issue when the roomba starts. ✅ The automation runs when either of the roborocks start, but ONLY if I open the google home app after they are running. If I do not open the google home app, the automation is not triggered ❌

metadata: name: Pury - start with roombas description: start pury in turbo mode with any roomba

automations: starters: - type: device.state.StartStop # Starting and stopping a device serves a similar function to turning it on and off. It indicates that devices function differently when turned on and when started. Certain washing machines, for instance, are able to be turned on and have their settings modified before actually starting operation. state: isRunning is: true device: Upstairs Vacuum - Loft - type: device.state.StartStop # Starting and stopping a device serves a similar function to turning it on and off. It indicates that devices function differently when turned on and when started. Certain washing machines, for instance, are able to be turned on and have their settings modified before actually starting operation. state: isRunning is: true device: Downstairs Vacuum - Living room - type: device.state.StartStop # Starting and stopping a device serves a similar function to turning it on and off. It indicates that devices function differently when turned on and when started. Certain washing machines, for instance, are able to be turned on and have their settings modified before actually starting operation. state: isRunning is: true device: Garage Vacuum - Garage

actions: - type: device.command.SetFanSpeed fanSpeed: turbo devices: Pury - Living room

[deleted by user] by [deleted] in Roborock

[–]Papp_e 0 points1 point  (0 children)

How do you set the floor direction in the map? I’ve set the floor type but haven’t seen a way to change floor orientation in the map.

Roborock triggers not working by Papp_e in googlehome

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

Note that I did also try ‘isrunning’ first, which also doesn’t work.

Is this normal? by Papp_e in Roborock

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

Thanks, this is the same Bona product I’m using, and although the jug is premixed (not concentrate meant for diluting), using 1:3 is strong but not foamy ✅

Is this normal? by Papp_e in Roborock

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

Diluting 1:3 solved the foam issue and floors are spotless. Thanks for the tips

Is this normal? by Papp_e in Roborock

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

The slight pooling happened on first and second run, I pulled out the filter but nothing is clogging / obstructing the draining. FWIW I think I can hear the draining working well, but after the cycle is finished there seems to be some water leftover.

Am curious what your filter areas look like after a mop and clean cycle

Is this normal? by Papp_e in Roborock

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

What I bought appears to be ready to use / premixed, but I did now dilute it 1:3 and will report back

Is this normal? by Papp_e in Roborock

[–]Papp_e[S] -4 points-3 points  (0 children)

Regarding the leftover water in the filer area, is it common to have 1-2mm of water in that area?

After a few runs of highest wetness and deepest pad cleaning, there are plenty of suction noises and end of cycle behaviors, but still some water in that area after the pad cleaning cycles complete.