Questions tagged [google-home]

This tag targets question related to programming for Google Home device.

752 questions
1
vote
1 answer

How to add a custom device into google Home

I've created a smart device with esp32 using adafruit IO and integrated it with google assistant using IFTTT. This way I can control the device using custom voice controls from google assistant or access the adafruit IO panel and toggle the…
Antonio
  • 23
  • 2
  • 6
1
vote
1 answer

The google action simulator can't reach my web server

I try to test my google assistant application but the console.action simulator can't reach my web server while the "dialogflow simulator" can (Dialogflow simulator screenshot). I don't get any request from it in my ngrok console. When I write in…
1
vote
2 answers

Is it possible to add custom voice commands to my home network of google home/minis?

I would like to write custom voice commands that can be used on any of the google listening devices in my home network (home/minis) and then return a specific response for those commands using the same google voice as all the default…
Thranor
  • 393
  • 1
  • 4
  • 13
1
vote
0 answers

Smart Home CameraStream with webrtc

I want to ask one problem ,when Smart Home CameraStream with webrtc,in signaling request , Header: Authentication: Bearer Content-Type: application/json POST body: // When camera offer SDP is provided in the execution response, Google provides an…
1
vote
1 answer

pushing notification to Google Home speakers

I am looking for a way to push a notification to Google Home speakers by an ESP32 (running on the same network). Is there any c++ library to do so? I previously used this but it seems it doesn't work anymore.
Reza
  • 43
  • 7
1
vote
1 answer

Created smart home activity (google home) with OAuth2 (which works) but can't Link it in the "Home" app

Introduction I've been trying to build a Google Home, Smart Home Activity that integrates with Azure AD. I've been able to correctly sign in so the ClientId/endpoints/scopes must be correct. When I try to connect to the Smart Home skill using the…
Devedse
  • 1,801
  • 1
  • 19
  • 33
1
vote
0 answers

Getting "Can't find devices to link to [projectname]" when getting auth_code from Google NEST, any way to emulate a device?

Getting "Can't find devices to link to [projectname]" when getting auth_code from Google NEST, any way to emulate a device? It sounds like there use to be but now that NEST migrated to Google I can't find any emulators that are current and use a…
1
vote
1 answer

Control Google Home with Raspberry Pi

I have a Google Nest and a Raspberry Pi. I would like to be able to send commands from the Raspberry to the Google Nest. I have done some research and I have found ways to control the rpi with the Google Nest but not the other way around. Any clue…
1
vote
1 answer

micropython timers blocked by microwebsrv

I am using ESP32 and micropython to create electric blinds. I am also using MicroWebSrv with websockets to control the blinds from my phone using a web page. I want to be able to control it using voice commands to Google Assistant. I was able to…
ezpzlmnsqz1337
  • 394
  • 1
  • 5
  • 16
1
vote
1 answer

Is it possible to make an app to set an alarm using actions on google?

I want to make my own google assistant command that sets multiple alarms in one go. i.e. if I say "wake me up at 8 am without fail" it sets an alarm for 7:45, 7:50, 7:55, 8, and 8:05. Is this even possible using Actions on Google? If so, would…
Fazil Hussain
  • 425
  • 3
  • 16
1
vote
0 answers

Invoke google assistant device from command line instead of saying "Hey google"

Is there a way to invoke google assistant by executing a command (from a linux console) instead of saying "Hey google"? I found a way, using nodejs, to send text to my home google mini to reproduce text, but I didn't find the way to enable the…
Trics
  • 189
  • 1
  • 8
1
vote
0 answers

How to implement Google Home Account synchronisation from my iOS application?

We need to synchronize our account details to Google Home Account. I can able to link the account details FROM Google Home App TO my iOS application. Also, I need to link the account details FROM my iOS application TO Google Home App. We have…
1
vote
1 answer

Deep link to Smart Home Action

I would like to send users from my app directly to my Action in the Google Home app. Do any of you know if this is possible? The only thing I can find is a link to my Action in the Google Assistant app, but this does not really give the user any…
1
vote
0 answers

About MicrophoneSteram.js error on Google speech API

Hello i want to make a customized api on Google Home. The way it's going is speech-to-text(stt) -> Natural Language Processing(NLP) -> Control my smart-light using IP, port. So, i'm testing MicrophoneStream.js. but, i got an error. **Listening,…
1
vote
1 answer

Trigger action without user utterance

I want to write a Google Home action that tells the latest value of a field in a DB table. (Another service will keep updating the DB.) How do I make Google Home speak the update automatically every 10 seconds without further user utterance after…