看不到你传的图片,注意一下配置文件的定义RX引脚应该连接传感器的TX,我的配置文件你看一下
esphome:
name: "ld2410-1"
esp8266:
board: nodemcuv2
wifi:
ssid: "H3"
password: "31222.."
manual_ip:
static_ip: 192.168.0.131
gateway: 192.168.0.1
subnet: 255.255.255.0
ap:
ssid: "2410"
password: "123456789"
captive_portal:
logger:
baud_rate: 0
api:
password: "123456789"
ota:
password: "123456789"
uart:
id: uart1
tx_pin: GPIO1
rx_pin: GPIO3
baud_rate: 256000
parity: NONE
stop_bits: 1
ld2410:
uart_id: uart1 #指定串口 就是上面uart设置的ID
timeout: 10s #无人持续时间(秒),默认5秒,不宜设置的过小,以保证动态静态目标在短时间都丢失后给予一定的冗余
max_move_distance : 6m #运动检测的最大距离 设置你想感应的范围
max_still_distance: 6m #静态检测的最大距离 设置你想感应的范围
g0_move_threshold: 40 # 动态感应门灵敏度,高于此值则触发 0米
g0_still_threshold: 0 # 静态感应门灵敏度,高于此值则触发 0米
g1_move_threshold: 30 # 0~0.75米
g1_still_threshold: 0 # 0~0.75米
g2_move_threshold: 10 # 0.75~1.5米
g2_still_threshold: 10 # 0.75~1.5米
g3_move_threshold: 10 # 1.5~2.25米
g3_still_threshold: 10 # 1.5~2.25米
g4_move_threshold: 20 # 2.25~3米
g4_still_threshold: 35 # 2.25~3米
g5_move_threshold: 15 # 3~3.75米
g5_still_threshold: 60 # 3~3.75米
g6_move_threshold: 100 # 3.75~4.5米
g6_still_threshold: 100 # 3.75~4.5米
g7_move_threshold: 100 # 4.5~5.25米
g7_still_threshold: 100 # 4.5~5.25米
g8_move_threshold: 100 # 5.25~6米
g8_still_threshold: 100 # 5.25~6米
sensor:
- platform: ld2410
moving_distance: #检测到的运动目标的距离(以厘米为单位)
name : Moving Distance
still_distance: # 检测到的静止目标的距离
name: Still Distance
moving_energy: # 运动目标的能量
name: Move Energy
still_energy: # 静止目标的能量
name: Still Energy
detection_distance: # 目标的距离
name: Detection Distance
binary_sensor:
- platform: ld2410
has_target: # 静止或移动目标是否存在
name: Presence
has_moving_target: # 运动目标是否存在
name: Moving Target
has_still_target: # 静止目标是否存在
name: Still Target
|