Alexa.MotionSensorインターフェース3
領域内の物体の動きを感知するデバイス用のAlexa.MotionSensor
インターフェースをAlexaスキルに実装します。たとえば、玄関ドアに取り付けられたモーションセンサーなどです。セキュリティスキルの詳細については、スマートホームセキュリティの概要を参照してください。
モーションセンサーが大規模なセキュリティシステムの一部である場合は、スキルにAlexa.ContactSensorインターフェースやAlexa.SecurityPanelControllerインターフェースを実装して、ユーザーエクスペリエンスに統一感を持たせることができます。
MotionSensor
インターフェースがサポートする言語については、Alexaインターフェースとサポートしている言語の一覧を参照してください。メッセージプロパティの定義については、Alexaインターフェースのメッセージとプロパティを参照してください。
プロパティ
Alexa.MotionSensor
インターフェースはプライマリプロパティとしてdetectionState
を使用します。detectionState
では以下の値を使用できます。
値 | 説明 |
---|---|
DETECTED |
動作が検出されました。デバイスおよびユーザーの設定により、モーション検出のしきい値が決まります。 |
NOT_DETECTED |
動作が検出されません。 |
検出
Alexa.MotionSensor
をサポートするエンドポイントは、Alexa.Discoveryの標準検出メカニズムを使用して表します。
Alexaからスキルに状態レポートリクエストが送信されたら、レポートするプロパティのretrievable
をtrueに設定します。変更レポートでAlexaにプロアクティブにレポートする場合はプロパティのproactivelyReported
をtrueに設定します。
表示カテゴリーにはMOTION_SENSOR
を使用します。表示カテゴリーの一覧は、表示カテゴリーを参照してください。
センサーには、Alexa.EndpointHealth
も実装する必要があります。
検出応答の例
以下は、Alexa.MotionSensor
インターフェースをサポートするモーションセンサーのDiscover.Response
メッセージの例です。
{
"event": {
"header": {
"namespace": "Alexa.Discovery",
"name": "Discover.Response",
"payloadVersion": "3",
"messageId": "一意の識別子、バージョン4 UUIDが望ましい"
},
"payload": {
"endpoints": [{
"endpointId": "エンドポイントの一意のID",
"manufacturerName": "エンドポイントのメーカー名",
"description": "センサーメーカーのスマートセンサー",
"friendlyName": "玄関ドア",
"displayCategories": ["MOTION_SENSOR"],
"cookie": {},
"capabilities": [{
"type": "AlexaInterface",
"interface": "Alexa.MotionSensor",
"version": "3",
"properties": {
"supported": [{
"name": "detectionState"
}],
"proactivelyReported": true,
"retrievable": true
}
},
{
"type": "AlexaInterface",
"interface": "Alexa.EndpointHealth",
"version": "3.1",
"properties": {
"supported": [{
"name": "connectivity"
}],
"proactivelyReported": true,
"retrievable": true
}
},
{
"type": "AlexaInterface",
"interface": "Alexa",
"version": "3"
}
]
}]
}
}
}
状態レポート
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.MotionSensor",
"name": "detectionState",
"value": "NOT_DETECTED",
"timeOfSample": "2024-07-03T10:20:50.52Z",
"uncertaintyInMilliseconds": 0
},
{
"namespace": "Alexa.EndpointHealth",
"name": "connectivity",
"value": {
"value": "OK"
},
"timeOfSample": "2024-07-03T09:56:50.12Z",
"uncertaintyInMilliseconds": 0
}
]
}
}
変更レポート
エンドポイントの状態の変化をプロアクティブにレポートするために、ChangeReport
イベントを送信します。プロアクティブにレポートするプロパティは検出応答で特定します。変更レポートの詳細については、状態および変更レポートについてを参照してください。
モーションセンサーがDETECTED
に変更され、その後NOT_DETECTED
に変更された場合、2番目の変更レポートを送信する前に30秒以上待機する必要があります。
timeOfSample
値は、detectionState
プロパティが変更された時間を正確に反映する必要があります。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.MotionSensor",
"name": "detectionState",
"value": "DETECTED",
"timeOfSample": "2024-07-03T10:20:50.52Z",
"uncertaintyInMilliseconds": 0
}
]
}
}
},
"context": {
"properties": [
{
"namespace": "Alexa.EndpointHealth",
"name": "connectivity",
"value": {
"value": "OK"
},
"timeOfSample": "2024-07-03T10:11:50.52Z",
"uncertaintyInMilliseconds": 0
}
]
}
}
関連トピック
- Alexa.CameraStreamController
- Alexa.ContactSensor
- Alexa.DoorbellEventSource
- Alexa.LockController
- Alexa.SecurityPanelController
- Alexa.SecurityPanelController.Alert
最終更新日: 2024 年 12 月 09 日