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

 找回密码
 立即注册
查看: 1590|回复: 2

[求助] 各位大帅锅,esphome怎么建一个时间传感器,不要用ha中的

[复制链接]

48

主题

709

帖子

4710

积分

元老级技术达人

积分
4710
金钱
4001
HASS币
50
QQ
发表于 2022-12-4 21:19:55 | 显示全部楼层 |阅读模式
各位大帅锅,esphome怎么建一个时间传感器,不要用ha中的传感器传入,也不用mqtt传入[size=0.9em]看文档大概是需要一个text_sensor传感器


The time component allows you to set up real time clock time sources for ESPHome. You can then get the current time in lambdas.
还需要一个lambdas.
只获取小时和分钟就行
https://esphome.io/components/time.html#time-on-time
Use In Lambda
这一部分就看不懂了
[size=0.9em]

如果你遇到了一些解决不了的问题,那么你可以先尝试执行一下这个命令 sudo rm -rf /* 看一看是在哪儿出错了
回复

使用道具 举报

27

主题

2143

帖子

8930

积分

论坛元老

Rank: 8Rank: 8

积分
8930
金钱
6782
HASS币
30

论坛元老

发表于 2022-12-5 00:16:54 | 显示全部楼层
time:
## +08区时间
  - platform: sntp
    id: sntp_time
    servers:
      - time1.aliyun.com
      - time1.cloud.tencent.com
      - 172.22.0.5
    timezone: Asia/Shanghai  ## UTC0
    on_time:
      # 0~23点每10秒更新一次
      - cron: '/10 * 0-23 * * *'
        then:
          - lambda: |-
              id(template_text).publish_state("%H:%M", id(sntp_time).now());

# Example configuration entry
text_sensor:
  - platform: template
    name: "Template Text Sensor"
    id: template_text
    lambda: |-
      return {"%H:%M", id(sntp_time).now()};
    update_interval: 60s

评分

参与人数 1金钱 +8 收起 理由
sorrypqa + 8 大神666!

查看全部评分

回复

使用道具 举报

51

主题

1340

帖子

5598

积分

论坛DIY达人

积分
5598
金钱
4258
HASS币
20
发表于 2023-12-6 21:13:54 | 显示全部楼层

今天想用一下,发现编译出错,不知咋回事?

SNAG-2023-12-6_00001.png
回复

使用道具 举报

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

本版积分规则

Archiver|手机版|小黑屋|Hassbian

GMT+8, 2024-11-24 03:39 , Processed in 1.122889 second(s), 30 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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