2

我需要创建一个 Alexa 智能家居技能。我想使用 Alexa 设备控制我的灯。但根据我的理解,智能家居技能只支持这样的话语

Alexa, turn on name
Alexa, turn off name
Alexa, set name to x percent
Alexa, brighten name
Alexa, dim name
Alexa, dim name by x percent
Alexa, brighten name by x percent
Alexa, set name to x degrees
Alexa, decrease name by x degrees
Alexa, increase name by x degrees
Alexa, decrease name

但是,我的用例略有不同。

Alexa, turn on the kitchen light.
Alexa, dim the bedrromlight to 50%
Alexa, turn on the halllight for 3 hours
Alexa, set a daily timer for the testlight to turn on every day at 9am
Alexa, how dim is the bedrromlight right now?

智能家居技能是否适合我的用例?

4

2 回答 2

1

我想这不仅与特定的智能家居技能有关。用户可以给不同的定位设备(比如你的灯)命名kitchen light,他可以将不同的智能家居设备分配给房间。

此外,用户还可以创建包含多个设备的组,因此您可以说:

Alexa, turn on the kitchen

所有相关的灯都会亮起。

在您的情况下,用户还可以在 Alexa 应用程序中创建例程:

switch the testlight on at 9 am every day.

这可能无法通过语音完成,而是在应用程序中完成。

所以 Alexa 智能家居应该适合用例。

于 2018-03-09T14:32:57.720 回答
1

这将在今天与智能家居技能一起正常工作:

Alexa, turn on the kitchen light.
Alexa, dim the bedroomlight to 50 %.

您可以为此使用例程(但目前无法使用语音创建例程,只能在配套应用程序中创建):

Alexa, set a daily timer for the testlight to turn on every day at 9am

Alexa 目前不支持这些:

Alexa, how dim is the bedroomlight right now?
Alexa, turn on the halllight for 3 hours.

可以为这两个用例构建自定义技能,或者只是等待亚马逊实施它们。如果是我,我会专注于已经使用智能家居技能的核心用例,而不是将时间浪费在自定义技能上。例如,您不能将自定义技能内容与例程集成。

于 2018-03-09T19:00:55.713 回答