Alexa.ColorControllerインターフェース3
AlexaスキルにAlexa.ColorController
インターフェースを実装すると、色が変化する電球などのデバイスの色をユーザーが変更できるようになります。スマートホームスキルの詳細については、スマートホームスキルを理解するを参照してください。
ColorController
インターフェースがサポートする言語については、Alexaインターフェースとサポートしている言語の一覧を参照してください。メッセージプロパティの定義については、Alexaインターフェースのメッセージとプロパティを参照してください。
発話
Alexa.ColorController
インターフェースを使用する場合、音声対話モデルは既にビルドされています。ユーザーが次のいずれかの発話をしたら、Alexaがそれに対応するディレクティブをスキルに送信します。
以下に、ユーザーの発話の例を示します。
Alexa, set the front porch light to blue.
Alexa, change the kitchen to the color blue.
Alexa, schalte das Wohnzimmerlicht hellblau.
Alexa, règle la lumière du vestibule en bleu.
Alexa, mets la cuisine en bleu.
Alexa, फ्रंट पोर्च लाइट को ब्लू पर सेट करें।
Alexa, किचन को नीले रंग में बदलें।
Alexa, imposta la luce del portico anteriore su blu.
Alexa, cambia la cucina con il colore blu.
アレクサ、寝室のライトを青にして
アレクサ、キッチンをオレンジ色に変えて
Alexa, coloque a luz da entrada em azul.
Alexa, mude luz da entrada para azul.
Alexa, coloque a luz da cozinha em vermelho.
Alexa, mude luz da cozinha para vermelho.
Alexa, pon la luz del porche delantero en azul.
Alexa, cambia la cocina al color azul.
Alexa, zet het licht op de veranda op blauw.
Alexa, verander de keuken naar de kleur blauw.
出力可能なプロパティ
color
オブジェクトは、エンドポイントの色を表します。HSBカラーモデル(hue:色相、saturation:彩度、brightness:明度)で色を指定します。詳細については、colorizer.orgとHSBカラー体系(英語)を参照してください。
検出
Alexa.ColorController
をサポートするエンドポイントは、Alexa.Discoveryの標準検出メカニズムを使用して表します。
Alexaからスキルに状態レポートリクエストが送信されるときにレポートするすべてのインターフェースとプロパティのretrievable
をtrueに設定します。変更レポートでAlexaにプロアクティブにレポートするインターフェースとプロパティのproactivelyReported
をtrueに設定します。
表示カテゴリーの一覧は、表示カテゴリーを参照してください。
Alexaにデバイスの健全性を通知する場合、Alexa.EndpointHealth
インターフェースも実装してください。
検出応答の例
以下は、Alexa.PowerController
インターフェースとAlexa.ColorController
インターフェースをサポートする照明のDiscover.Response
メッセージの例です。
{
"event": {
"header": {
"namespace": "Alexa.Discovery",
"name": "Discover.Response",
"payloadVersion": "3",
"messageId": "一意の識別子、バージョン4 UUIDが望ましい"
},
"payload": {
"endpoints": [
{
"endpointId": "エンドポイントの一意のID",
"manufacturerName": "エンドポイントのメーカー名",
"description": "Alexaアプリに表示される説明",
"friendlyName": "リビングの照明",
"displayCategories": ["LIGHT"],
"additionalAttributes": {
"manufacturer": "エンドポイントのメーカー名",
"model" : "デバイスのモデル",
"customIdentifier": "デバイスの任意のカスタム識別子"
},
"cookie": {},
"capabilities": [
{
"type": "AlexaInterface",
"interface": "Alexa.PowerController",
"version": "3",
"properties": {
"supported": [
{
"name": "powerState"
}
],
"proactivelyReported": true,
"retrievable": true
}
},
{
"type": "AlexaInterface",
"interface": "Alexa.ColorController",
"version": "3",
"properties": {
"supported": [
{
"name": "color"
}
],
"proactivelyReported": true,
"retrievable": true
}
},
{
"type": "AlexaInterface",
"interface": "Alexa.EndpointHealth",
"version": "3",
"properties": {
"supported": [
{
"name": "connectivity"
}
],
"proactivelyReported": true,
"retrievable": true
}
},
{
"type": "AlexaInterface",
"interface": "Alexa",
"version": "3"
}
]
}
]
}
}
}
ディレクティブ
Alexaは次のAlexa.ColorController
インターフェースディレクティブをスキルに送信します。
SetColorディレクティブ
SetColor
ディレクティブをサポートすると、ユーザーがデバイスの色を変更できるようになります。
以下に、ユーザーの発話の例を示します。
Alexa, set the bedroom light to red.
Alexa, schalte das Wohnzimmerlicht rot.
Alexa, règle la lumière de la chambre en rouge.
Alexa, बेडरूम की लाइट को लाल रंग में सेट करो।
Alexa, imposta la luce della camera da letto sul rosso.
アレクサ、寝室のライトを赤に変えて
Alexa, coloque a luz do quarto em vermelho.
Alexa, mude luz do quarto para vermelho.
Alexa, pon la luz del dormitorio en rojo.
Alexa, zet de slaapkamerlamp op rood.
SetColorディレクティブの例
以下は、Alexaがスキルに送信するSetColor
ディレクティブの例です。
SetColor
ディレクティブは色相=0、彩度=1、輝度=1を指定します。ここでは、色相を0、彩度を1に設定し、ディレクティブが指定する輝度の値1は無視してください。代わりに、現在の輝度の値0.5を維持します。{
"directive": {
"header": {
"namespace": "Alexa.ColorController",
"name": "SetColor",
"messageId": "一意のバージョン4 UUID",
"correlationToken": "opaque相関トークン",
"payloadVersion": "3"
},
"endpoint": {
"scope": {
"type": "BearerToken",
"token": "OAuth2.0ベアラートークン"
},
"endpointId": "エンドポイントID",
"cookie": {}
},
"payload": {
"color": {
"hue": 350.5,
"saturation": 0.7138,
"brightness": 0.6524
}
}
}
}
SetColorディレクティブのペイロード
次の表は、SetColor
ディレクティブのペイロードの詳細を示しています。
プロパティ | 説明 | 型 | 必須 |
---|---|---|---|
|
デバイスに設定する色です。 |
オブジェクト |
◯ |
SetColor応答
SetColor
ディレクティブを正しく処理したら、Alexa.Response
イベントを使用して応答します。contextオブジェクトに、変更されたすべてのプロパティの値を含めます。応答は同期または非同期のどちらでも可能です。非同期で応答する場合、相関トークンと、認可トークンを含めたスコープを含めます。
以下は、SetColor
応答の例です。
{
"event": {
"header": {
"namespace": "Alexa",
"name": "Response",
"messageId": "一意の識別子、バージョン4 UUIDが望ましい",
"correlationToken": "リクエストに一致するopaque相関トークン",
"payloadVersion": "3"
},
"endpoint": {
"scope": {
"type": "BearerToken",
"token": "OAuth2.0ベアラートークン"
},
"endpointId": "エンドポイントID"
},
"payload": {}
},
"context": {
"properties": [
{
"namespace": "Alexa.ColorController",
"name": "color",
"value": {
"hue": 350.5,
"saturation": 0.7138,
"brightness": 0.6524
},
"timeOfSample": "2019-07-03T16:20:50Z",
"uncertaintyInMilliseconds": 500
}
]
}
}
SetColorディレクティブのエラー処理
SetColor
ディレクティブを正しく処理できなかった場合は、Alexa.ErrorResponse
イベントを使用して応答します。
状態レポート
Alexaはエンドポイントの状態についての情報をリクエストするために、ReportState
ディレクティブを送信します。AlexaがReportState
ディレクティブを送信したら、それに対する応答としてStateReport
イベントを送信します。この応答には、contextオブジェクトのすべてのretrievableプロパティの現在の状態を含めます。retrievableプロパティは検出応答で特定します。状態レポートの詳細については、状態および変更レポートについてを参照してください。
StateReport応答の例
{
"event": {
"header": {
"namespace": "Alexa",
"name": "StateReport",
"messageId": "一意の識別子、バージョン4 UUIDが望ましい",
"correlationToken": "リクエストに一致するopaque相関トークン",
"payloadVersion": "3"
},
"endpoint": {
"scope": {
"type": "BearerToken",
"token": "OAuth2.0ベアラートークン"
},
"endpointId": "エンドポイントID"
},
"payload": {}
},
"context": {
"properties": [
{
"namespace": "Alexa.ColorController",
"name": "color",
"value": {
"hue": 350.5,
"saturation": 0.7138,
"brightness": 0.6524
},
"timeOfSample": "2019-07-03T16:20:50Z",
"uncertaintyInMilliseconds": 500
}
]
}
}
変更レポート
エンドポイントの状態の変化をプロアクティブにレポートするために、ChangeReport
イベントを送信します。プロアクティブにレポートするプロパティは検出応答で特定します。変更レポートの詳細については、状態および変更レポートについてを参照してください。
ColorController
とColorTemperatureController
の両方のインターフェースをサポートする照明エンドポイントでは、エンドポイントに色が設定されたときはcolor
の状態を、エンドポイントに白の色調が設定されたときはcolorTemperatureInKelvin
の状態をレポートします。
ChangeReportイベントの例
{
"event": {
"header": {
"namespace": "Alexa",
"name": "ChangeReport",
"messageId": "一意の識別子、バージョン4 UUIDが望ましい",
"payloadVersion": "3"
},
"endpoint": {
"scope": {
"type": "BearerToken",
"token": "OAuth2.0ベアラートークン"
},
"endpointId": "エンドポイントID"
},
"payload": {
"change": {
"cause": {
"type": "PHYSICAL_INTERACTION"
},
"properties": [
{
"namespace": "Alexa.ColorController",
"name": "color",
"value": {
"hue": 280,
"saturation": 0.9,
"brightness": 0.9
},
"timeOfSample": "2024-02-03T16:17:00.00Z",
"uncertaintyInMilliseconds": 500
}
]
}
}
},
"context": {
"namespace": "Alexa.EndpointHealth",
"name": "connectivity",
"value": {
"value": "OK"
},
"timeOfSample": "2024-02-03T16:15:00.00Z",
"uncertaintyInMilliseconds": 0
}
}
関連トピック
最終更新日: 2024 年 11 月 08 日