Device TYPE
action.devices.types.BED - Interactions with beds may include adjusting various modes and
setting scenes.
Recommended TRAITS
Sample SYNC Request and Response
This is an example using the device type and traits above. It is intended to give an idea of how to build a SYNC response. If you add or remove traits, this will need to be modified to reflect those changes.
{
"requestId": "ff36a3cc-ec34-11e6-b1a0-64510650abcf",
"inputs": [{
"intent": "action.devices.SYNC"
}]
}
Node.js
'use strict';
const {smarthome} = require('actions-on-google');
const functions = require('firebase-functions');
const app = smarthome();
app.onSync((body, headers) => {
return {
requestId: body.requestId,
payload: {
agentUserId: '1836.15267389',
devices: [{
id: '123',
type: 'action.devices.types.BED',
traits: [
'action.devices.traits.Modes'
],
name: {
defaultNames: ['AAA Cybernetics Corporation Bed'],
name: 'Bed',
nicknames: ['Electric bed']
},
willReportState: true,
attributes: {
availableModes: [{
name: 'massage',
name_values: [{
name_synonym: ['massage'],
lang: 'en'
}],
settings: [{
setting_name: 'lumbar',
setting_values: [{
setting_synonym: ['back', 'middle'],
lang: 'en'
}]
}, {
setting_name: 'head',
setting_values: [{
setting_synonym: ['head', 'neck'],
lang: 'en'
}]
}],
ordered: true
}]
},
deviceInfo: {
manufacturer: 'AAA Cybernetics Corporation',
model: '233451',
hwVersion: '3.2',
swVersion: '11.4'
},
customData: {
fooValue: 74,
barValue: true,
bazValue: 'lambtwirl'
}
}]
}
};
});
// ...
exports.smarthome = functions.https.onRequest(app);
Java
@NotNull
@Override
public SyncResponse onSync(@NotNull SyncRequest syncRequest, @Nullable Map<?, ?> headers) {
SyncResponse.Payload payload = new SyncResponse.Payload();
payload.setAgentUserId("123456789");
payload.setDevices(new SyncResponse.Payload.Device[] {
new SyncResponse.Payload.Device.Builder()
.setId("123")
.setType("action.devices.types.BED")
.addTrait("action.devices.traits.Modes")
.setName(
Collections.singletonList("AAA Cybernetics Corporation Bed"),
"Bed",
Collections.singletonList("Electric Bed")
)
.setWillReportState(true)
.setAttributes(new JSONObject()
.put("availableModes", new JSONObject[] {
new JSONObject()
.put("name", "massage")
.put("name_values", new JSONObject[] {
new JSONObject()
.put("name_synonym", new String[] {"massage"})
.put("lang", "en")
})
.put("settings", new JSONObject[] {
new JSONObject()
.put("setting_name", "lumbar")
.put("setting_values", new JSONObject[] {
new JSONObject()
.put("setting_synonym", new String[] {"back", "middle"})
.put("lang", "en")
}),
new JSONObject()
.put("setting_name", "head")
.put("setting_values", new JSONObject[] {
new JSONObject()
.put("setting_synonym", new String[] {"head", "neck"})
.put("lang", "en")
})
})
.put("ordered", true)
})
)
.setDeviceInfo("AAA Cybernetics Corporation", "233451", "3.2", "11.4")
.setCustomData(new JSONObject()
.put("fooValue", 74)
.put("barValue", true)
.put("bazValue", "lambtwirl")
.toString()
)
.build()
});
return new SyncResponse(syncRequest.getRequestId(), payload);
}
JSON
{
"requestId": "ff36a3cc-ec34-11e6-b1a0-64510650abcf",
"payload": {
"agentUserId": "1836.15267389",
"devices": [
{
"id": "123",
"type": "action.devices.types.BED",
"traits": [
"action.devices.traits.Modes"
],
"name": {
"defaultNames": [
"AAA Cybernetics Corporation Bed"
],
"name": "Bed",
"nicknames": [
"Electric bed"
]
},
"willReportState": true,
"attributes": {
"availableModes": [
{
"name": "massage",
"name_values": [
{
"name_synonym": [
"massage"
],
"lang": "en"
}
],
"settings": [
{
"setting_name": "lumbar",
"setting_values": [
{
"setting_synonym": [
"back",
"middle"
],
"lang": "en"
}
]
},
{
"setting_name": "head",
"setting_values": [
{
"setting_synonym": [
"head",
"neck"
],
"lang": "en"
}
]
}
],
"ordered": true
}
]
},
"deviceInfo": {
"manufacturer": "AAA Cybernetics Corporation",
"model": "233451",
"hwVersion": "3.2",
"swVersion": "11.4"
},
"customData": {
"fooValue": 74,
"barValue": true,
"bazValue": "lambtwirl"
}
}
]
}
}
Device ERRORS
See the full list of errors and exceptions.