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

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

[求助] ESPHome http 请求导致看门狗重启

[复制链接]

9

主题

53

帖子

280

积分

中级会员

Rank: 3Rank: 3

积分
280
金钱
227
HASS币
0
发表于 2024-6-13 18:57:16 | 显示全部楼层 |阅读模式
http_request:
useragent: esphome/device
id: my_request
timeout: 3s


interval:
- interval: 5s
then:
- if:
condition: # 定义用于判断的条件
wifi.connected:
then:
# - logger.log: "WiFi已连接"
- logger.log: "http请求"
- http_request.get:
url: "http://c3-hx711.local/sensor/hx711_data"

else:
- logger.log: "WiFi未连接"
上面是一个示例代码,其中c3-hx711.local是另一个esphome设备
如何
c3-hx711.local正常在线,http请求没问题

但是c3-hx711.local掉线了,设备执行到
- http_request.get:
  url: "http://c3-hx711.local/sensor/hx711_data"

也就是url无效,会导致看门狗重启



回复

使用道具 举报

9

主题

53

帖子

280

积分

中级会员

Rank: 3Rank: 3

积分
280
金钱
227
HASS币
0
 楼主| 发表于 2024-6-13 19:30:29 | 显示全部楼层
http_request:
  useragent: esphome/device
  id: my_request
  timeout: 3s


interval:
  - interval: 3s
    then:
      - http_request.get: 
          # url: "http://c3-hx711.local/sensor/hx711_data"
          url: "http://c3-hxhgjghjjhgj"
          on_response:
            then:
              - if: 
                  condition: # 判断条件 请求状态==200表示成功
                    - lambda: 'return status_code == 200;'
                  then:
                    - logger.log: "请求成功"

                  else:
                    - logger.log: "请求失败"
                    - logger.log:
                              format: "Response status: %d, Duration: %u ms"
                              args: [status_code, duration_ms]

发现了一个奇怪的地方,我乱写了一个url: "http://c3-hxhgjghjjhgj",居然没有重启...

url: "http://c3-hx711.local/sensor/hx711_data"就会重启,,,,这是什么情况
回复

使用道具 举报

9

主题

53

帖子

280

积分

中级会员

Rank: 3Rank: 3

积分
280
金钱
227
HASS币
0
 楼主| 发表于 2024-6-13 19:56:07 | 显示全部楼层
# url: "http://c3-hx711.local/sensor/hx711_data"
          # url: "http://c3-hxhgjghjjhgj"
          url: "http://192.168.1.226/sensor/hx711_data"


不要使用  ******.local
使用IP地址就不会看门狗重启了
回复

使用道具 举报

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

本版积分规则

Archiver|手机版|小黑屋|Hassbian

GMT+8, 2024-11-23 09:03 , Processed in 0.338297 second(s), 24 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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