This page is part of archived documentation for openHAB 3.0. Go to the current stable version
# Google Assistant Action
Google Assistant is Google’s virtual personal assistant and uses Actions on Google as the platform for "Actions" (software applications) to extend the functionality of the Google Assistant. Users engage Google Assistant in conversation to get things done, like controlling their devices and things at home. You can use the officially certified openHAB Action for Google Assistant to easily manage and control your smart home by conversational experiences between you and your openHAB smart home powered by voiced commands.
This guide describes step by step how to use the openHAB Google Assistant Smart Home Action (opens new window). The openHAB Action links your openHAB setup through the myopenHAB.org (opens new window) cloud service to the Google Assistant platform (for technical insights, please refer to this guide (opens new window) to read more about setup options and development information).
With the Action you can voice control your openHAB items and it supports lights, plugs, switches, thermostats and many more. The openHAB Action comes with multiple language support like English, German or French language.
If you have any issues, questions or an idea for additional features, please take a look at the repository on GitHub (opens new window).
# General Configuration Instructions
TIP
This integration relies on the cloud connector addon. More information can be found in the corresponding docs page (opens new window).
# Requirements
- The openHAB Cloud Connector configured using myopenHAB.org (opens new window) (Items DO NOT need to be exposed to and will not show up on myopenHAB.org (opens new window), this is only required for the IFTTT service!)
- A Google account
- A Google Home/Nest Voice Assistant Device or the Google Assistant on your phone
# Item configuration
To expose items (opens new window) to Google Assistent you will need to add metadata (opens new window) in the ga
namespace.
Currently the following devices are supported (also depending on Google's API capabilities):
Hint: The value of ga
is not case-sensitive.
# Switch
Device Type | Switch (opens new window) |
Supported Traits | OnOff (opens new window) |
Supported Items | Switch |
Configuration | (optional) inverted=true/false |
Example:
Switch { ga="Switch" [ inverted=false ] }
# Light
Device Type | Light (opens new window) |
Supported Traits | OnOff (opens new window), ColorSetting (opens new window), Brightness (opens new window) (depending on used item type) |
Supported Items | Switch, Dimmer, Color |
Configuration | (optional) inverted=true/false (optional) colorTemperatureRange="minK,maxK" |
Switch { ga="Light" [ inverted=true ] }
Dimmer { ga="Light" }
Color { ga="Light" [ colorTemperatureRange="2000,9000" ] }
# Light as Group with separate Color and Brightness
Device Type | Light (opens new window) |
Supported Traits | OnOff (opens new window), ColorSetting (opens new window), Brightness (opens new window) |
Supported Items | Group as light with two Number or Dimmer members as lightBrightness & lightColorTemperature |
Configuration | (optional) useKelvin=true/false (optional) colorTemperatureRange="minK,maxK" Hint: if you do not set useKelvin=true then colorTemperatureRange is required |
Group lightGroup { ga="Light" [ useKelvin=true, colorTemperatureRange="2000,9000" ] }
Dimmer brightnessItem (lightGroup) { ga="lightBrightness" }
Number colorItem (lightGroup) { ga="lightColorTemperature" }
# Scene
Device Type | Scene (opens new window) |
Supported Traits | Scene (opens new window) |
Supported Items | Switch |
Configuration | (optional) sceneReversible=true/false |
Switch { ga="Scene" [ sceneReversible=false ] }
# Outlet
, Coffee_Maker
, WaterHeater
, Fireplace
Device Type | Outlet (opens new window), Coffee_Maker (opens new window), WaterHeater (opens new window), Fireplace (opens new window) |
Supported Traits | OnOff (opens new window) |
Supported Items | Switch |
Configuration | (optional) inverted=true/false |
Switch { ga="Outlet" [ inverted=true ] }
Switch { ga="Coffee_Maker" [ inverted=true ] }
Switch { ga="WaterHeater" [ inverted=false ] }
Switch { ga="Fireplace" }
# Valve
Device Type | Valve (opens new window) |
Supported Traits | OpenClose (opens new window) |
Supported Items | Switch |
Configuration | (optional) inverted=true/false |
Switch { ga="Valve" [ inverted=true ] }
# Sprinkler
, Vacuum
Device Type | Sprinkler (opens new window), Vacuum (opens new window) |
Supported Traits | StartStop (opens new window) |
Supported Items | Switch |
Configuration | (optional) inverted=true/false |
Switch { ga="Sprinkler" [ inverted=true ] }
Switch { ga="Vacuum" [ inverted=false ] }
# Lock
Device Type | Lock (opens new window) |
Supported Traits | LockUnlock (opens new window) |
Supported Items | Contact (no device control), Switch |
Configuration | (optional) ackNeeded=true/false (optional) pinNeeded="1234" |
Switch { ga="Lock" [ ackNeeded=true ] }
Switch { ga="Lock" [ pinNeeded="1234" ] }
# SecuritySystem
Device Type | SecuritySystem (opens new window) |
Supported Traits | ArmDisarm (opens new window) |
Supported Items | Switch |
Configuration | (optional) ackNeeded=true/false (optional) pinNeeded="1234" |
Switch { ga="SecuritySystem" [ pinNeeded="1234" ] }
# Camera
Device Type | Camera (opens new window) |
Supported Traits | CameraStream (opens new window) |
Supported Items | String |
Configuration | (optional) protocols="hls,dash,smooth_stream,progressive_mp4" (choose suitable) |
String { ga="Camera" [ protocols="hls,dash" ] }
# Speaker
(volume control only)
Device Type | Speaker (opens new window) |
Supported Traits | Volume (opens new window) |
Supported Items | Dimmer |
Configuration | (optional) volumeDefaultPercentage="20" (optional) levelStepSize="5" (optional) volumeMaxLevel="100" |
Dimmer { ga="Speaker" [ volumeDefaultPercentage="50", levelStepSize="10", volumeMaxLevel="90" ] }
# TV
Device Type | TV (opens new window) |
Supported Traits | OnOff (opens new window), Volume (opens new window), TransportControl (opens new window), InputSelector (opens new window), AppSelector (opens new window), Channel (opens new window) (depending on used members) |
Supported Items | Group as TV with the following optional members: Switch as tvPower , Switch as tvMute , Dimmer as tvVolume , String as tvChannel , String as tvInput , String as tvApplication , Player as tvTransport |
Configuration | (optional) volumeDefaultPercentage="20" (optional) levelStepSize="5" (optional) volumeMaxLevel="100" (optional) transportControlSupportedCommands="NEXT,PREVIOUS,PAUSE,RESUME" (optional) availableChannels="channelNumber=channelId=channelName:channelSynonym:...,..." (optional) availableInputs="inputKey=inputName:inputSynonym:...,..." (optional) availableApplications="applicationKey=applicationName:applicationSynonym:...,..." (optional) lang="en" |
Group tvGroup { ga="TV" [ volumeDefaultPercentage="20", levelStepSize="10", volumeMaxLevel="100", transportControlSupportedCommands="NEXT,PREVIOUS,PAUSE,RESUME", availableChannels="1=Channel1=NBC,2=Channel2=CBS", availableInputs="hdmi1=xbox:gaming,hdmi2=settopbox", availableApplications: "youtube=YouTube:Tube,netflix=Netflix:Chill" ] }
Switch powerItem (tvGroup) { ga="tvPower" }
Switch muteItem (tvGroup) { ga="tvMute" }
Dimmer volumeItem (tvGroup) { ga="tvVolume" }
String channelItem (tvGroup) { ga="tvChannel" }
String inputItem (tvGroup) { ga="tvInput" }
String applicationItem (tvGroup) { ga="tvApplication" }
Player transportItem (tvGroup) { ga="tvTransport" }
# Fan
, Hood
, AirPurifier
Device Type | Fan (opens new window), Hood (opens new window), AirPurifier (opens new window) |
Supported Traits | OnOff (opens new window), FanSpeed (opens new window) (depending on used item type) |
Supported Items | Switch (no speed control), Dimmer |
Configuration | (optional) speeds="0=away:zero,50=default:standard:one,100=high:two" (optional) lang="en" (optional) ordered=true/false Hint: if you are using a Dimmer then speeds is required |
Fans (and similar device types, like AirPurifier or Hood) support the FanSpeed
trait.
With that you will be able to set up and use human speakable modes, e.g. "fast" for 100% or "slow" for 25%.
speeds
will be a comma-separated list of modes with a percentage number followed by an equal sign and different aliases for that mode after a colon.
So here both "high" and "two" would set the speed to 100%.
You are also able to define the language of those aliases.
The option ordered
will tell the system that your list is ordered and you will then be able to also say "faster" or "slower" and Google will use the next or previous speed.
Dimmer { ga="Fan" [ speeds="0=away:zero,50=default:standard:one,100=high:two", lang="en", ordered=true ] }
Switch { ga="Hood" }
Dimmer { ga="AirPurifier" [ speeds="0=off,50=mid,100=high" ] }
# Awning
, Blinds
, Curtain
, Door
, Garage
, Gate
, Pergola
, Shutter
, Window
Device Type | Awning (opens new window), Blinds (opens new window), Curtain (opens new window), Door (opens new window), Garage (opens new window), Gate (opens new window), Pergola (opens new window), Shutter (opens new window), Window (opens new window) |
Supported Traits | OpenClose (opens new window), StartStop (opens new window) |
Supported Items | Contact (no device control), Switch (no open percentage), Rollershutter |
Configuration | (optional) inverted=true/false |
Blinds and simiar devices should always use the Rollershutter
item type for proper functionallity.
Since Google and openHAB use the oposite percentage value for "opened" and "closed", the action will tranlate this automatically.
If the values are still inverted in your case, you can state the inverted=true
option for all Rollershutter
items.
Since Google only tells the open percentage (and not the verb "close" or "down"), it can not be differentiated between saying "set blind to 100%" or "open blind". Therefore, it is not possible to "not invert" the verbs, if the user chooses to invert the numbers.
Rollershutter { ga="Awning" }
Rollershutter { ga="Blinds" [ inverted=true ] }
Rollershutter { ga="Curtain" }
Switch { ga="Door" }
Rollershutter { ga="Garage" }
Contact { ga="Gate" }
Rollershutter { ga="Pergola" }
Rollershutter { ga="Shutter" }
Rollershutter { ga="Window" }
# TemperatureSensor
Device Type | Sensor (opens new window) |
Supported Traits | TemperatureControl (opens new window) |
Supported Items | Number |
Configuration | (optional) useFahrenheit=true/false |
Number { ga="TemperatureSensor" [ useFahrenheit=true ] }
# Thermostat
Device Type | Thermostat (opens new window) |
Supported Traits | TemperatureSetting (opens new window) |
Supported Items | Group as Thermostat with the following optional members: Number as thermostatTemperatureAmbient , Number as thermostatTemperatureSetpoint , Number as thermostatTemperatureSetpointLow , Number as thermostatTemperatureSetpointHigh , Number as thermostatHumidityAmbient , String or Number as thermostatMode |
Configuration | (optional) useFahrenheit=true/false (optional) thermostatTemperatureRange="10,30" (optional) modes="off=OFF:WINDOW_OPEN,heat=COMFORT:BOOST,eco=ECO,on=ON,auto" |
Thermostat requires a group of items to be properly configured to be used with Google Assistant. The default temperature unit is Celsius.
To change the temperature unit to Fahrenheit, add the config option useFahrenheit=true
to the thermostat group.
To set the temperature range your thermostat supports, add the config option thermostatTemperatureRange="10,30"
to the thermostat group.
If your thermostat supports a range for the setpoint you can use both thermostatTemperatureSetpointLow
and thermostatTemperatureSetpointHigh
instead of the single thermostatTemperatureSetpoint
item.
If your thermostat does not have a mode, you should create one and manually assign a value (e.g. heat, cool, on, etc.) to have proper functionality.
To map the default thermostat modes of Google (opens new window) (on, off, heat, cool, etc.) to custom ones for your specific setup, you can use the modes
config option on the thermostat group.
E.g. [ modes="off=OFF:WINDOW_OPEN,heat=COMFORT:BOOST,eco=ECO,on=ON,auto" ]
will enable the following five modes in Google Home "off, heat, eco, on, auto"
that will be translated to "OFF, COMFORT, ECO, ON, auto"
. You can specify alternative conversions using the colon sign, so that in the former example "BOOST" in openHAB would also be translated to "heat" in Google. For the translation of Google modes to openHAB always the first option after the equal sign is used.
By default the integration will provide "off,heat,cool,on,heatcool,auto,eco"
.
You can also set up a Thermostat for using it as a temperature sensor. To do so, create a Thermostat group and only add one item member as "thermostatTemperatureAmbient".
However, it is recommended to prefer the TemperatureSensor
type for simple temperature reports (but currently there is no UI support in Google Home).
Group thermostatGroup { ga="Thermostat" [ modes="off=OFF:WINDOW_OPEN,heat=COMFORT:BOOST,eco=ECO,on=ON,auto", thermostatTemperatureRange="10,30", useFahrenheit=false ] }
Number ambientItem (thermostatGroup) { ga="thermostatTemperatureAmbient" }
Number humidityItem (thermostatGroup) { ga="thermostatHumidityAmbient" }
Number setpointItem (thermostatGroup) { ga="thermostatTemperatureSetpoint" }
Number setpointItemLow (thermostatGroup) { ga="thermostatTemperatureSetpointLow" }
Number setpointItemHigh (thermostatGroup) { ga="thermostatTemperatureSetpointHigh" }
String modeItem (thermostatGroup) { ga="thermostatMode" }
# Sensor
Device Type | Sensor (opens new window) |
Supported Traits | SensorState (opens new window) |
Supported Items | Number, Dimmer |
Configuration | sensorName="SmokeLevel" valueUnit="PARTS_PER_MILLION" states="no smoke=10,smoke detected=50,high=90" |
Please see the SensorState documentation (opens new window) for more details on configuration options. For now only exact matches of the numeric value will report the descriptive state value.
Number { ga="Sensor" [ sensorName="AirQuality", valueUnit="AQI", states="good=10,moderate=50,poor=90" ] }
# Addtional Information
Item labels are not mandatory in openHAB, but for the Google Assistant Action they are absolutely necessary!
It is the "label text" (e.g. "Kitchen Lights" for example above) and not the item's name that will be available to you via voice commands or in the Google Home app, so make it unique and easy to say!
If you do not want to adjust your labels to be human spellable, you can use the "name" config option in the metadata: [ name="Kitchen Lights" ]
. This will overwrite the label as the device's name.
Furthermore, you can state synonyms for the device name: Switch KitchenLight "Kitchen Lights" { synonyms="Top Light", ga="Light" }
.
To ease setting up new devices you can add a room hint: [ roomHint="Living Room" ]
.
For devices supporting the OpenClose trait, the attributes [ discreteOnly=false, queryOnly=false ]
can be configured.
discreteOnly
defaults to false. When set to true, this indicates that the device must either be fully open or fully closed (that is, it does not support values between 0% and 100%). An example of such a device may be a valve.queryOnly
defaults to false. Is set to true forContact
items. Indicates if the device can only be queried for state information and cannot be controlled. Sensors that can only report open state should set this field to true.
NOTE: metadata is not available via paperUI in openHAB v2. Either you create your items via ".items" files, or you can:
add metadata via console:
smarthome:metadata add BedroomLights ga Light
add metadata using the REST API:
PUT /rest/items/BedroomLights/metadata/ga { "value": "Light" }
NOTE: Please be aware that for backward compatibilty also the former usage of tags (ref. Google Assistant Action Documentation v2.5 (opens new window)) to specify items to be exposed to Google Assistent is supported and may cause unexpected behavior.
Items that contain tags that refer to a valid Google Assistent device will be exposed regardless of having metadata set. E.g.: Switch MyBulb ["Lighting"]
.
# Two-Factor-Authentication
For some actions, Google recommends to use TFA (Two-Factor-Authentication) to prevent accidential or unauthorized triggers of sensitive actions. See Two-factor authentication | Actions on Google Smart Home (opens new window).
The openHAB Google Assistant integration supports both ackNeeded and pinNeeded. You can use both types on all devices types and traits.
ackNeeded: "A two-factor authentication that requires explicit acknowledgement (yes or no) and can also use trait states as response feedback. This challenge type is not recommended for security devices and traits."
pinNeeded: "A two-factor authentication that requires a personal identification number (PIN), which is ideal for security devices and traits."
Example:
Switch DoorLock "Front Door" { ga="Lock" [ ackNeeded=true ] }
Switch HouseAlarm "House Alarm" { ga="SecuritySystem" [ pinNeeded="1234" ] }
# Setup & Usage on Google Assistant App
- Make sure Google Play Services is up to date.
- Visit "Google Home" app entry in Google Play Store on Android.
- Set up the voice-activated speaker, Pixel, or Android phone (version 6+) with the same account.
- Make sure you're the correct user.
- Start the updated Google Home app on your phone.
- Go to the settings part:
Account > Settings
.
- Go to the home control part:
Assistant > Home control
.
- Press the
+
button.
- Select
openHAB
.
- Login at myopenhab.org (opens new window) with your username and password.
- Allow Google access to your account.
- You will now be able to see your previously configured items and devices. Assign them to a room. Press Done.
- You can now control those devices from the Google Assistant.
# Example Voice Commands
Here are some example voice commands:
- Turn on Office Lights.
- Dim/Brighten Office Lights (increments 15%).
- Set Office Lights to 35%.
- Open/Close the blinds
- Turn off Pool Waterfall.
- Turn on House Fan.
- Turn on Home Theater Scene.
- Set Basement Thermostat to 15 degrees.
- What is the current Basement Thermostat Temperature?
# Frequently Asked Question
My New items did not appear in the Google Home app.
- Say: Hey Google, sync my devices.
I'm not able to connect openHAB to Google Home.
Check, recheck and after that check again your items!
The items that you want to expose to Google Assistant should have the right metadata assigned.
The items that you want to expose to Google Assistant must have a item label! Item Definition and Syntax (opens new window)
If you expose thermostats make sure than you have:
- A Group item with the metadata value
{ ga="Thermostat" }
- A Number or String item with the metadata value
{ ga="thermostatMode" }
as part of the thermostat group - A Number item with the metadata value
{ ga="thermostatTemperatureAmbient" }
as part of the thermostat group - A Number item with the metadata value
{ ga="thermostatTemperatureSetpoint" }
as part of the thermostat group
Group g_HK_Basement_TSTAT "Basement Thermostat" { ga="Thermostat" [ useFahrenheit=true ] } Number HK_Basement_Mode "Basement Heating/Cooling Mode" (g_HK_Basement_TSTAT) { ga="thermostatMode" } Number HK_Basement_Setpoint "Basement Setpoint" (g_HK_Basement_TSTAT) { ga="thermostatTemperatureSetpoint" } Number HK_Basement_Temp "Basement Temperature" (g_HK_Basement_TSTAT) { ga="thermostatTemperatureAmbient" }
- A Group item with the metadata value
If none of the above solutions works for you:
- Remove all the metadata.
- Make a new .item file with 1 item to expose.
Switch TestLight "Test Light" { ga="Switch" }
- Relink your account.