『瀚思彼岸』» 智能家居技术论坛

 找回密码
 立即注册
查看: 10140|回复: 4

[求助] 如何判断开关是否在规定时间内被触发n次

[复制链接]

3

主题

74

帖子

1004

积分

金牌会员

Rank: 6Rank: 6

积分
1004
金钱
930
HASS币
0
发表于 2021-3-30 07:59:24 来自手机 | 显示全部楼层 |阅读模式
如何判断开关是否在规定时间内被触发n次
比如,当某开关5秒内被触发3次后,就执行某个命令。
不知道该怎么实现。
回复

使用道具 举报

23

主题

656

帖子

4611

积分

元老级技术达人

积分
4611
金钱
3940
HASS币
30

教程狂人

QQ
发表于 2021-3-30 10:25:00 | 显示全部楼层
如果开关采用tasmota的固件,或者自动化使用nodered的话,可以用tasmota的命令rule规则或者单纯使用nodered实现。nodered中可以使用counter计数器节点
回复

使用道具 举报

3

主题

74

帖子

1004

积分

金牌会员

Rank: 6Rank: 6

积分
1004
金钱
930
HASS币
0
 楼主| 发表于 2021-3-30 12:49:05 来自手机 | 显示全部楼层
多谢指点,不是Tasmota的固件,对Nodered也一无所知:-(
回复

使用道具 举报

3

主题

74

帖子

1004

积分

金牌会员

Rank: 6Rank: 6

积分
1004
金钱
930
HASS币
0
 楼主| 发表于 2021-3-30 12:51:44 来自手机 | 显示全部楼层
用Home Assistant自己的自动化没法实现吗
回复

使用道具 举报

3

主题

74

帖子

1004

积分

金牌会员

Rank: 6Rank: 6

积分
1004
金钱
930
HASS币
0
 楼主| 发表于 2021-3-30 19:43:46 | 显示全部楼层
搞定了:https://community.home-assistant.io/t/automation-using-counters/156454/17

counter:
  stairs_motion_count:
    name: Stairs Motion Count
    initial: 0
    step: 1

timer:
  stairs_motion_timer:
    duration: '00:01:00'
- id: '1576869751187'
  alias: 'Reset counter when timer expires.'
  trigger:
    platform: event
    event_type: timer.finished
    event_data:
      entity_id: timer.stairs_motion_timer
  action:
    service: counter.reset
    entity_id: counter.stairs_motion_count
- id: '1576869741194'
  alias: 'Increase Counter and start/restart timer on motion'
  description: Motion in Stairs Counter
  trigger:
    platform: state
    entity_id: binary_sensor.commonstairs_movement
    from: 'off'
    to: 'on'
  action:
  - entity_id: counter.stairs_motion_count
    service: counter.increment
  - entity_id: timer.stairs_motion_timer
    service: timer.start
  - conditon: numeric_state
    entity_id: counter.stairs_motion_count
    above: 1
  - <font color="Red">action you want to do if count > 1</font>

回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|Hassbian

GMT+8, 2024-11-25 09:47 , Processed in 0.649126 second(s), 28 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表