Google Home 脚本编辑器 YAML 上的“InputValue”问题

问题描述 投票:0回答:1

大家好,

我最近正在使用 Google Home 脚本编辑器,我想使用“输入”结构,这样我就可以避免重复我的设备名称。 然而我有这个错误,我已经检查了整个文档并且我对这个错误一无所知。

错误:

Field [inputValue] is unexpected in the struct.
,位于该脚本第 9 行
inputValue:
行。

剧本:

metadata:
  name: Roller shutter
  description: Automation of the roller shutter

#############
# INPUT
#############

inputValue:
  rollerShutters: Test device
input:
  rollerShutters:
    metadata:
      name:
        en: rollerShutters
      description:
        en: List of all roller shutters
    selector:
      type: device
      multiSelect: true

#############
# ACTIONS
#############
automations:
  #############
  # On sun rise open
  #############
  - starters:
      - type: time.schedule
        at: sunrise

    actions:
      - type: device.command.OpenClose
        openPercent: 100
        devices: $rollerShutters

  #############
  # At night close all
  #############
  - starters:
      - type: time.schedule
        at: sunset

    actions:
      - type: device.command.OpenClose
        openPercent: 0
        devices: $rollerShutters

无需输入部分,脚本即可顺利运行。 有人遇到过这个问题吗?

yaml google-home google-smart-home google-assistant
1个回答
0
投票

我最近遇到了完全相同的问题。我的脚本已经运行良好几个月了......然后几天前,我在 inputValue 上遇到了同样的错误,并且文档中没有任何更改。我假设这是某种错误,但不知道如何向 Google 的某人提出查看请求

© www.soinside.com 2019 - 2024. All rights reserved.