本帖最后由 lidicn 于 2017-7-5 17:31 编辑
scrape传感器可以从网页上抓取信息。传感器加载HTML页面,并提供搜索和分割值的选项。 https://home-assistant.io/components/sensor.scrape/ 要启用此传感器,请将以下行添加到configuration.yaml文件中: sensor 6: - platform: scrape name: New Movie 01 select: a:nth-of-type(17) - platform: scrape name: New Movie 02 select: a:nth-of-type(18) - platform: scrape name: New Movie 03 select: a:nth-of-type(19) - platform: scrape name: New Movie 04 select: a:nth-of-type(20) - platform: scrape name: New Movie 05 select: a:nth-of-type(21) 后续可以通过tts播报这些电影名称。看个人喜好。 注意:这个例子,因网站设定了安全检查5秒。已经无法获取到数据了。只作为例子参考了。
|