Questions tagged [google-smart-home]

Smart home Actions connect IoT devices to the Google Assistant through the Actions on Google platform. Use this tag for questions related to smart home integrations, account linking, Local Home SDK, and the Home Graph API.

Learn more about the building smart home Actions for the Google Assistant:

420 questions
0
votes
1 answer

What port does the chrome dev tools Inspect devices connect to for local fulfillment?

I am currently trying to develop a local home application, and for the most parts things are working as expected. The Google Home Nest Mini seems to be querying the test endpoint I set up and the ESP I'm using is receiving the discovery broadcast…
0
votes
1 answer

Can I use other database instead of firebase for Homegraph api?

I am referencing to the smart-home-nodejs git repository on Actions On Google. This template provides an end to end example of how the smart-home app can be use. However, instead of using firebase, can I use my own database that host my devices and…
dan_wut
  • 45
  • 1
  • 10
0
votes
1 answer

Control my smart home devices when I enter room with my Nest Hub Max

I have a nest hub max which is located in one my rooms. Is it possible for me to trigger an action when it detects I have entered the room? I know that the Nest hub Max can detect if I am nearby or when I am in the room. So far I have only found…
0
votes
1 answer

Channel trait in google actions for smart media devices

I have been to trying out the google home nodejs sample project. I am facing some difficulties to make action.devices.traits.Channel trait work for one of my home projects where I am adding a device of type action.devices.types.SETTOP. I have also…
amitmula
  • 1,060
  • 9
  • 12
0
votes
1 answer

Use google smart home action for hotels and restricting access of rooms per device

We are using Google home in hotels and we have a smart home skill. The problem with Hotel we are facing is, in sync response to google smat home action, we are sending all devices of all rooms of hotels, but we want to restrict access to only one…
Daga Arihant
  • 464
  • 4
  • 19
0
votes
1 answer

report state fails with unauthorized, Google Home action

I'm sending a report state request in my onExecute handler. It fails with: io.grpc.StatusRuntimeException: UNAUTHENTICATED: Request had invalid authentication credentials. Expected OAuth 2 access token, login cookie or other valid authentication…
NateS
  • 5,751
  • 4
  • 49
  • 59
0
votes
1 answer

local fulfillment not broadcasting

I've got cloud fulfillment working, now I'm trying to setup local fulfillment (with a local hub). I think I'm close, but I've gotten stuck. When my server responds to SYNC, it adds an otherDeviceId. (Extra credit questions: 1) Can this be the same…
NateS
  • 5,751
  • 4
  • 49
  • 59
0
votes
1 answer

How does Google Smart Home determine channelNumber for action.devices.commands.selectChannel?

Created Google Smart Home Action. Implemented device with: a. deviceType = action.devices.types.SETTOP b. deviceTrait = action.devices.traits.Channel Device is successfully discovered and added to Google Home App's Homegraph. User sends command:…
WuTang805
  • 17
  • 3
0
votes
1 answer

TemperatureSetting "What's the temperature in my living room ?" sometimes answers weird stuff

I recently released a Smart Home action for interacting with our thermostats. This device type is Thermostat and the single implemented trait is TemperatureSetting. When I ask my home assistant "What's the temperature in the living room ?",…
Pear
  • 470
  • 3
  • 17
0
votes
1 answer

Does GVA (Google Voice Assistant) support RTC and Doorbell related fucntionality?

I want to access our doorbell product to Google Voice Assistant, but didn't find the Doorbell type in Google Assistant Doc. https://developers.google.com/assistant/smarthome/guides I wonder whether GVA support RTC and Doorbell related functionality…
0
votes
1 answer

Can't create a simple webhook fulfillment Good Actions Console

I am trying to do a simple google home integration with my home server. My only goal is to have it say "Hey google, turn on pool lights" and "Hey Google, turn off pool lights". Both should be mapped to https://mywebsite.com/fullfillment. Once it…
0
votes
1 answer

How to handle IDENTIFY request in Google Smart Home Local Fulfilment for multi channel device?

I am trying to implement Local Fulfillment in my Google Smart Home Action. some of my devices have 2 channels (dual relay switch). Dual channel device is shown in Google Home app as two separate devices(light-test123123_0 and light-test123123_1) and…
fdistorted
  • 343
  • 3
  • 15
0
votes
1 answer

Google home integration with dynamo DB

I am creating Google Smart Home action of google home. But I have not idea, how to connect the dynamo DB with smart home action but I can see here using with firebase. When I ran the command with invocation name in google assistant then it is…
0
votes
1 answer

Google Home doesn't send UDP broadcast to my smart home device

I am trying to develop a smart home action that works with local fulfillment but my device doesn't receive the UDP broadcast request. I have a google home device at home which is connected to my account. I have made the next steps: add…
fdistorted
  • 343
  • 3
  • 15
0
votes
1 answer

Have Google Home trigger smart device

I'm developing a smart device that needs to respond to a trigger and take an action. I'm having some trouble however determining what will host the code that fires the trigger. Google Home appears to have events based on time but I can't seem to…