Hi Everyone, I’m trying to make another 24ghz mmWave presence sensor but it’s not working. The sensors/entities show up as “Unknown”… for an unknown reason.
To summarize: I bought some ESP8266 boards from Amazon (link). It is described as the following:
ESP8266 V3 ESP-12E,Aideepen 30PIN NodeMCU ESP8266 V3 ESP-12E Development Board WLAN Module CH-340 for NodeMCU for ESP-12E for Arduin0
(Yep, it says Adruin0 - with a zero). I also bought some HLK-LD2410C 24ghz mmWave radar detectors from Ali Express. They look just like this as shown on Hi-Link’s website (manufacturer of this device).
I set up the radar sensor per the instructions at this website: Build Human Presence Sensor with ESP8266, LD2410 and ESPHome, Integrate into Home Assistant. | Juan's Tech Blog
I have verified every step, every connection. I have ensured the connections are made precisely:
ESP8266 | LD2410 |
---|---|
RX(GPIO3) | TX |
TX(GPIO1) | RX |
VIN | VCC |
GND | GND |
When I look at the device in ESPHome it just shows this, Unknown for everything…
I have even tried the 2nd set of RX/TX pins on this board (RX: GPIO13 ; TX: GPIO15)… same result, Unknown sensors. Board was first detected by ESPHome as board type esp01_1m. I compiled with that, as well as board type nodemcuv2, which is what seems to be close to this board’s identity (it has Nodemcu v3 written on the back). I got the board types for the code from this list, which I was directed to from ESPHome.
I am wondering if the ESP8266 board I bought is crap/no good. I built another presence sensor previously, using this guide: https://smarthomescene.com/diy/diy-presence-sensor-with-hi-link-ld2410-and-esp32-for-home-assistant/ That one worked great (using a HiLetGo ESP32 board from Amazon and also an HLK-LD2410 purchased from Amazon). I wanted to create more presence sensors at a lower cost, which is why I bought the radar sensors from Ali Express and a 6-pack of ESP8266 boards from Amazon.
To verify the DuPont cables and HLK-2410C devices are good, I removed the currently connected LD2410 from the ESP32 and connected the HLK-2410C to the ESP32 using the new DuPont cables I had purchased. When I powered up the ESP32, voila, the HLK-2410C works great and all the sensors function.
So it looks like either the code for this new ESP8266 has errors or the board (ESP8266) is crap. I also tried using the code from the 2nd DIY presence sensor link (from smarthomescene.com) and when I compiled it & uploaded it to the ESP8266, I got the same error… sensors all show Unknown. Just in case I mixed up the TX/RX connections, I also tried swapping those… didn’t fix it. I also tried another ESP8266 in the 6-pack… same error, sensors show up as Unknown.
Here is the code that I have applied to the ESP8266 board. I would appreciate any pointers. If I can’t figure this out, I’ll probably just return these to Amazon and get some ESP32 boards instead. But I was trying to use the ESP8266 boards as they’re less expensive. If anyone has ESP8266 boards that they know work, could you share the links? Hopefully from a site in the U.S., as I don’t want to wait another 2 weeks for stuff to arrive from Ali Express. Thanks everyone for your help in advance!
esphome:
name: esp8266test
friendly_name: ESP8266Test
esp8266:
board: nodemcuv2
# Enable logging
logger:
# Enable Home Assistant API
api:
encryption:
key: "NotTheRealKey"
ota:
password: "blahblahblahNotTheRealPassword"
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "Esp8266Test Fallback Hotspot"
password: "NotTheRealPassword"
captive_portal:
uart:
id: uart_ld2410
tx_pin: GPIO1
rx_pin: GPIO3
baud_rate: 256000
parity: NONE
stop_bits: 1
ld2410:
uart_id: uart_ld2410
binary_sensor:
- platform: ld2410
has_target:
name: Presence
has_moving_target:
name: Moving Target
has_still_target:
name: Still Target
sensor:
- platform: ld2410
light:
name: light
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
g0:
move_energy:
name: g0 move energy
still_energy:
name: g0 still energy
g1:
move_energy:
name: g1 move energy
still_energy:
name: g1 still energy
g2:
move_energy:
name: g2 move energy
still_energy:
name: g2 still energy
g3:
move_energy:
name: g3 move energy
still_energy:
name: g3 still energy
g4:
move_energy:
name: g4 move energy
still_energy:
name: g4 still energy
g5:
move_energy:
name: g5 move energy
still_energy:
name: g5 still energy
g6:
move_energy:
name: g6 move energy
still_energy:
name: g6 still energy
g7:
move_energy:
name: g7 move energy
still_energy:
name: g7 still energy
g8:
move_energy:
name: g8 move energy
still_energy:
name: g8 still energy
switch:
- platform: ld2410
engineering_mode:
name: "engineering mode"
bluetooth:
name: "control bluetooth"
number:
- platform: ld2410
timeout:
name: timeout
light_threshold:
name: light threshold
max_move_distance_gate:
name: max move distance gate
max_still_distance_gate:
name: max still distance gate
g0:
move_threshold:
name: g0 move threshold
still_threshold:
name: g0 still threshold
g1:
move_threshold:
name: g1 move threshold
still_threshold:
name: g1 still threshold
g2:
move_threshold:
name: g2 move threshold
still_threshold:
name: g2 still threshold
g3:
move_threshold:
name: g3 move threshold
still_threshold:
name: g3 still threshold
g4:
move_threshold:
name: g4 move threshold
still_threshold:
name: g4 still threshold
g5:
move_threshold:
name: g5 move threshold
still_threshold:
name: g5 still threshold
g6:
move_threshold:
name: g6 move threshold
still_threshold:
name: g6 still threshold
g7:
move_threshold:
name: g7 move threshold
still_threshold:
name: g7 still threshold
g8:
move_threshold:
name: g8 move threshold
still_threshold:
name: g8 still threshold
button:
- platform: ld2410
factory_reset:
name: "factory reset"
restart:
name: "restart"
query_params:
name: query params
text_sensor:
- platform: ld2410
version:
name: "firmware version"
mac_address:
name: "mac address"
select:
- platform: ld2410
distance_resolution:
name: "distance resolution"
baud_rate:
name: "baud rate"
light_function:
name: light function
And here is the log from the device in ESPHome → Logs. Note, regarding the “disable logger” message in the below log, I did set that another time I built this, and the same result was produced (all sensors show Unknown). So I don’t think that is the cause of the issue…
(Specific msg: “Please disable logging over the serial port by setting logger->baud_rate to 0”)
INFO ESPHome 2024.2.2
INFO Reading configuration /config/esphome/esp8266test.yaml...
INFO Starting log output from 10.10.1.23 using esphome API
INFO Successfully connected to esp8266test @ 10.10.1.23 in 0.020s
INFO Successful handshake with esp8266test @ 10.10.1.23 in 2.690s
[18:39:47][I][app:102]: ESPHome version 2024.2.2 compiled on Mar 16 2024, 17:57:39
[18:39:47][C][wifi:577]: WiFi:
[18:39:47][C][wifi:409]: Local MAC: [redacted]
[18:39:47][C][wifi:414]: SSID: [redacted]
[18:39:47][C][wifi:415]: IP Address: 10.10.1.23
[18:39:47][C][wifi:416]: BSSID: [redacted]
[18:39:47][C][wifi:418]: Hostname: 'esp8266test'
[18:39:47][C][wifi:420]: Signal strength: -69 dB ▂▄▆█
[18:39:47][C][wifi:424]: Channel: 9
[18:39:47][C][wifi:425]: Subnet: 255.255.255.0
[18:39:47][C][wifi:426]: Gateway: 10.10.1.1
[18:39:47][C][wifi:427]: DNS1: 10.10.1.1
[18:39:47][C][wifi:428]: DNS2: 10.10.1.2
[18:39:47][C][logger:447]: Logger:
[18:39:47][C][logger:448]: Level: DEBUG
[18:39:47][C][logger:449]: Log Baud Rate: 115200
[18:39:47][C][logger:451]: Hardware UART: UART0
[18:39:47][C][uart.arduino_esp8266:118]: UART Bus:
[18:39:47][C][uart.arduino_esp8266:119]: TX Pin: GPIO1
[18:39:47][C][uart.arduino_esp8266:120]: RX Pin: GPIO3
[18:39:47][C][uart.arduino_esp8266:122]: RX Buffer Size: 256
[18:39:47][C][uart.arduino_esp8266:124]: Baud Rate: 256000 baud
[18:39:47][C][uart.arduino_esp8266:125]: Data Bits: 8
[18:39:47][C][uart.arduino_esp8266:126]: Parity: NONE
[18:39:47][C][uart.arduino_esp8266:127]: Stop bits: 1
[18:39:47][C][uart.arduino_esp8266:129]: Using hardware serial interface.
[18:39:47][W][uart.arduino_esp8266:143]: You're using the same serial port for logging and the UART component. Please disable logging over the serial port by setting logger->baud_rate to 0.
[18:39:47][C][ld2410:022]: LD2410:
[18:39:47][C][ld2410:024]: TargetBinarySensor 'Presence'
[18:39:47][C][ld2410:024]: Device Class: 'occupancy'
[18:39:47][C][ld2410:025]: MovingTargetBinarySensor 'Moving Target'
[18:39:47][C][ld2410:025]: Device Class: 'motion'
[18:39:47][C][ld2410:026]: StillTargetBinarySensor 'Still Target'
[18:39:47][C][ld2410:026]: Device Class: 'occupancy'
[18:39:47][C][ld2410:068]: EngineeringModeSwitch 'engineering mode'
[18:39:47][C][ld2410:070]: Icon: 'mdi:pulse'
[18:39:47][C][ld2410:079]: Device Class: 'switch'
[18:39:47][C][ld2410:090]: Restore Mode: always OFF
[18:39:47][C][ld2410:068]: BluetoothSwitch 'control bluetooth'
[18:39:47][C][ld2410:070]: Icon: 'mdi:bluetooth'
[18:39:47][C][ld2410:079]: Device Class: 'switch'
[18:39:47][C][ld2410:090]: Restore Mode: always OFF
[18:39:47][C][ld2410:034]: ResetButton 'factory reset'
[18:39:47][C][ld2410:034]: Icon: 'mdi:restart-alert'
[18:39:47][C][ld2410:035]: RestartButton 'restart'
[18:39:47][C][ld2410:035]: Icon: 'mdi:restart'
[18:39:47][C][ld2410:036]: QueryButton 'query params'
[18:39:47][C][ld2410:036]: Icon: 'mdi:database'
[18:39:47][C][ld2410:039]: LightSensor 'light'
[18:39:47][C][ld2410:039]: Device Class: 'illuminance'
[18:39:47][C][ld2410:039]: State Class: ''
[18:39:47][C][ld2410:039]: Unit of Measurement: ''
[18:39:47][C][ld2410:039]: Accuracy Decimals: 0
[18:39:47][C][ld2410:039]: Icon: 'mdi:lightbulb'
[18:39:47][C][ld2410:040]: MovingTargetDistanceSensor 'Moving Distance'
[18:39:47][C][ld2410:040]: Device Class: 'distance'
[18:39:47][C][ld2410:040]: State Class: ''
[18:39:47][C][ld2410:040]: Unit of Measurement: 'cm'
[18:39:47][C][ld2410:040]: Accuracy Decimals: 0
[18:39:47][C][ld2410:040]: Icon: 'mdi:signal-distance-variant'
[18:39:47][C][ld2410:041]: StillTargetDistanceSensor 'Still Distance'
[18:39:47][C][ld2410:041]: Device Class: 'distance'
[18:39:47][C][ld2410:041]: State Class: ''
[18:39:47][C][ld2410:041]: Unit of Measurement: 'cm'
[18:39:47][C][ld2410:041]: Accuracy Decimals: 0
[18:39:47][C][ld2410:041]: Icon: 'mdi:signal-distance-variant'
[18:39:48][C][ld2410:042]: MovingTargetEnergySensor 'Move Energy'
[18:39:48][C][ld2410:042]: State Class: ''
[18:39:48][C][ld2410:042]: Unit of Measurement: '%'
[18:39:48][C][ld2410:042]: Accuracy Decimals: 0
[18:39:48][C][ld2410:042]: Icon: 'mdi:motion-sensor'
[18:39:48][C][ld2410:043]: StillTargetEnergySensor 'Still Energy'
[18:39:48][C][ld2410:043]: State Class: ''
[18:39:48][C][ld2410:043]: Unit of Measurement: '%'
[18:39:48][C][ld2410:043]: Accuracy Decimals: 0
[18:39:48][C][ld2410:043]: Icon: 'mdi:flash'
[18:39:48][C][ld2410:044]: DetectionDistanceSensor 'Detection Distance'
[18:39:48][C][ld2410:044]: Device Class: 'distance'
[18:39:48][C][ld2410:044]: State Class: ''
[18:39:48][C][ld2410:044]: Unit of Measurement: 'cm'
[18:39:48][C][ld2410:044]: Accuracy Decimals: 0
[18:39:48][C][ld2410:044]: Icon: 'mdi:signal-distance-variant'
[18:39:48][C][ld2410:046]: NthGateStillSesnsor 'g0 still energy'
[18:39:48][C][ld2410:046]: State Class: ''
[18:39:48][C][ld2410:046]: Unit of Measurement: '%'
[18:39:48][C][ld2410:046]: Accuracy Decimals: 0
[18:39:48][C][ld2410:046]: Icon: 'mdi:flash'
[18:39:48][C][ld2410:046]: NthGateStillSesnsor 'g1 still energy'
[18:39:48][C][ld2410:046]: State Class: ''
[18:39:48][C][ld2410:046]: Unit of Measurement: '%'
[18:39:48][C][ld2410:046]: Accuracy Decimals: 0
[18:39:48][C][ld2410:046]: Icon: 'mdi:flash'
[18:39:48][C][ld2410:046]: NthGateStillSesnsor 'g2 still energy'
[18:39:48][C][ld2410:046]: State Class: ''
[18:39:48][C][ld2410:046]: Unit of Measurement: '%'
[18:39:48][C][ld2410:046]: Accuracy Decimals: 0
[18:39:48][C][ld2410:046]: Icon: 'mdi:flash'
[18:39:48][C][ld2410:046]: NthGateStillSesnsor 'g3 still energy'
[18:39:48][C][ld2410:046]: State Class: ''
[18:39:48][C][ld2410:046]: Unit of Measurement: '%'
[18:39:48][C][ld2410:046]: Accuracy Decimals: 0
[18:39:48][C][ld2410:046]: Icon: 'mdi:flash'
[18:39:48][C][ld2410:046]: NthGateStillSesnsor 'g5 still energy'
[18:39:48][C][ld2410:046]: State Class: ''
[18:39:48][C][ld2410:046]: Unit of Measurement: '%'
[18:39:48][C][ld2410:046]: Accuracy Decimals: 0
[18:39:48][C][ld2410:046]: Icon: 'mdi:flash'
[18:39:48][C][ld2410:046]: NthGateStillSesnsor 'g6 still energy'
[18:39:48][C][ld2410:046]: State Class: ''
[18:39:48][C][ld2410:046]: Unit of Measurement: '%'
[18:39:48][C][ld2410:046]: Accuracy Decimals: 0
[18:39:48][C][ld2410:046]: Icon: 'mdi:flash'
[18:39:48][C][ld2410:046]: NthGateStillSesnsor 'g7 still energy'
[18:39:48][C][ld2410:046]: State Class: ''
[18:39:48][C][ld2410:046]: Unit of Measurement: '%'
[18:39:48][C][ld2410:046]: Accuracy Decimals: 0
[18:39:48][C][ld2410:046]: Icon: 'mdi:flash'
[18:39:48][C][ld2410:046]: NthGateStillSesnsor 'g8 still energy'
[18:39:48][C][ld2410:046]: State Class: ''
[18:39:48][C][ld2410:046]: Unit of Measurement: '%'
[18:39:48][C][ld2410:046]: Accuracy Decimals: 0
[18:39:48][C][ld2410:046]: Icon: 'mdi:flash'
[18:39:48][C][ld2410:049]: NthGateMoveSesnsor 'g0 move energy'
[18:39:48][C][ld2410:049]: State Class: ''
[18:39:48][C][ld2410:049]: Unit of Measurement: '%'
[18:39:48][C][ld2410:049]: Accuracy Decimals: 0
[18:39:48][C][ld2410:049]: Icon: 'mdi:motion-sensor'
[18:39:48][C][ld2410:049]: NthGateMoveSesnsor 'g1 move energy'
[18:39:48][C][ld2410:049]: State Class: ''
[18:39:48][C][ld2410:049]: Unit of Measurement: '%'
[18:39:48][C][ld2410:049]: Accuracy Decimals: 0
[18:39:48][C][ld2410:049]: Icon: 'mdi:motion-sensor'
[18:39:48][C][ld2410:049]: NthGateMoveSesnsor 'g2 move energy'
[18:39:48][C][ld2410:049]: State Class: ''
[18:39:48][C][ld2410:049]: Unit of Measurement: '%'
[18:39:48][C][ld2410:049]: Accuracy Decimals: 0
[18:39:48][C][ld2410:049]: Icon: 'mdi:motion-sensor'
[18:39:48][C][ld2410:049]: NthGateMoveSesnsor 'g3 move energy'
[18:39:48][C][ld2410:049]: State Class: ''
[18:39:48][C][ld2410:049]: Unit of Measurement: '%'
[18:39:48][C][ld2410:049]: Accuracy Decimals: 0
[18:39:48][C][ld2410:049]: Icon: 'mdi:motion-sensor'
[18:39:48][C][ld2410:049]: NthGateMoveSesnsor 'g4 move energy'
[18:39:48][C][ld2410:049]: State Class: ''
[18:39:48][C][ld2410:049]: Unit of Measurement: '%'
[18:39:48][C][ld2410:049]: Accuracy Decimals: 0
[18:39:48][C][ld2410:049]: Icon: 'mdi:motion-sensor'
[18:39:48][C][ld2410:049]: NthGateMoveSesnsor 'g5 move energy'
[18:39:48][C][ld2410:049]: State Class: ''
[18:39:48][C][ld2410:049]: Unit of Measurement: '%'
[18:39:48][C][ld2410:049]: Accuracy Decimals: 0
[18:39:48][C][ld2410:049]: Icon: 'mdi:motion-sensor'
[18:39:48][C][ld2410:049]: NthGateMoveSesnsor 'g6 move energy'
[18:39:48][C][ld2410:049]: State Class: ''
[18:39:48][C][ld2410:049]: Unit of Measurement: '%'
[18:39:48][C][ld2410:049]: Accuracy Decimals: 0
[18:39:48][C][ld2410:049]: Icon: 'mdi:motion-sensor'
[18:39:48][C][ld2410:049]: NthGateMoveSesnsor 'g7 move energy'
[18:39:48][C][ld2410:049]: State Class: ''
[18:39:48][C][ld2410:049]: Unit of Measurement: '%'
[18:39:48][C][ld2410:049]: Accuracy Decimals: 0
[18:39:48][C][ld2410:049]: Icon: 'mdi:motion-sensor'
[18:39:48][C][ld2410:049]: NthGateMoveSesnsor 'g8 move energy'
[18:39:48][C][ld2410:049]: State Class: ''
[18:39:48][C][ld2410:049]: Unit of Measurement: '%'
[18:39:48][C][ld2410:049]: Accuracy Decimals: 0
[18:39:48][C][ld2410:049]: Icon: 'mdi:motion-sensor'
[18:39:48][C][ld2410:053]: VersionTextSensor 'firmware version'
[18:39:48][C][ld2410:053]: Icon: 'mdi:chip'
[18:39:48][C][ld2410:054]: Icon: 'mdi:bluetooth'
[18:39:48][C][ld2410:057]: LightFunctionSelect 'light function'
[18:39:48][C][ld2410:057]: Icon: 'mdi:lightbulb'
[18:39:48][C][ld2410:059]: DistanceResolutionSelect 'distance resolution'
[18:39:48][C][ld2410:059]: Icon: 'mdi:ruler'
[18:39:48][C][ld2410:060]: BaudRateSelect 'baud rate'
[18:39:48][C][ld2410:060]: Icon: 'mdi:thermometer'
[18:39:48][C][ld2410:063]: LightThresholdNumber 'light threshold'
[18:39:48][C][ld2410:063]: Icon: 'mdi:lightbulb'
[18:39:48][C][ld2410:063]: Device Class: 'illuminance'
[18:39:48][C][ld2410:064]: MaxStillDistanceGateNumber 'max still distance gate'
[18:39:48][C][ld2410:064]: Icon: 'mdi:motion-sensor'
[18:39:48][C][ld2410:064]: Device Class: 'distance'
[18:39:48][C][ld2410:065]: MaxMoveDistanceGateNumber 'max move distance gate'
[18:39:48][C][ld2410:065]: Icon: 'mdi:motion-sensor'
[18:39:48][C][ld2410:065]: Device Class: 'distance'
[18:39:48][C][ld2410:066]: TimeoutNumber 'timeout'
[18:39:48][C][ld2410:066]: Icon: 'mdi:timelapse'
[18:39:48][C][ld2410:066]: Unit of Measurement: 's'
[18:39:48][C][ld2410:068]: Still Thresholds Number 'g0 still threshold'
[18:39:48][C][ld2410:068]: Icon: 'mdi:motion-sensor'
[18:39:48][C][ld2410:068]: Unit of Measurement: '%'
[18:39:48][C][ld2410:068]: Device Class: 'signal_strength'
[18:39:48][C][ld2410:068]: Still Thresholds Number 'g1 still threshold'
[18:39:48][C][ld2410:068]: Icon: 'mdi:motion-sensor'
[18:39:48][C][ld2410:068]: Unit of Measurement: '%'
[18:39:48][C][ld2410:068]: Device Class: 'signal_strength'
[18:39:48][C][ld2410:068]: Still Thresholds Number 'g2 still threshold'
[18:39:48][C][ld2410:068]: Icon: 'mdi:motion-sensor'
[18:39:48][C][ld2410:068]: Unit of Measurement: '%'
[18:39:48][C][ld2410:068]: Device Class: 'signal_strength'
[18:39:48][C][ld2410:068]: Still Thresholds Number 'g3 still threshold'
[18:39:48][C][ld2410:068]: Icon: 'mdi:motion-sensor'
[18:39:48][C][ld2410:068]: Unit of Measurement: '%'
[18:39:48][C][ld2410:068]: Device Class: 'signal_strength'
[18:39:48][C][ld2410:068]: Still Thresholds Number 'g4 still threshold'
[18:39:48][C][ld2410:068]: Icon: 'mdi:motion-sensor'
[18:39:48][C][ld2410:068]: Unit of Measurement: '%'
[18:39:48][C][ld2410:068]: Device Class: 'signal_strength'
[18:39:48][C][ld2410:068]: Still Thresholds Number 'g5 still threshold'
[18:39:48][C][ld2410:068]: Icon: 'mdi:motion-sensor'
[18:39:48][C][ld2410:068]: Unit of Measurement: '%'
[18:39:48][C][ld2410:068]: Device Class: 'signal_strength'
[18:39:48][C][ld2410:068]: Still Thresholds Number 'g6 still threshold'
[18:39:48][C][ld2410:068]: Icon: 'mdi:motion-sensor'
[18:39:48][C][ld2410:068]: Unit of Measurement: '%'
[18:39:48][C][ld2410:068]: Device Class: 'signal_strength'
[18:39:48][C][ld2410:068]: Still Thresholds Number 'g7 still threshold'
[18:39:48][C][ld2410:068]: Icon: 'mdi:motion-sensor'
[18:39:48][C][ld2410:068]: Unit of Measurement: '%'
[18:39:48][C][ld2410:068]: Device Class: 'signal_strength'
[18:39:48][C][ld2410:068]: Still Thresholds Number 'g8 still threshold'
[18:39:48][C][ld2410:068]: Icon: 'mdi:motion-sensor'
[18:39:48][C][ld2410:068]: Unit of Measurement: '%'
[18:39:48][C][ld2410:068]: Device Class: 'signal_strength'
[18:39:48][C][ld2410:071]: Move Thresholds Number 'g0 move threshold'
[18:39:48][C][ld2410:071]: Icon: 'mdi:motion-sensor'
[18:39:48][C][ld2410:071]: Unit of Measurement: '%'
[18:39:48][C][ld2410:071]: Device Class: 'signal_strength'
[18:39:48][C][ld2410:071]: Move Thresholds Number 'g1 move threshold'
[18:39:48][C][ld2410:071]: Icon: 'mdi:motion-sensor'
[18:39:48][C][ld2410:071]: Unit of Measurement: '%'
[18:39:48][C][ld2410:071]: Device Class: 'signal_strength'
[18:39:48][C][ld2410:071]: Move Thresholds Number 'g2 move threshold'
[18:39:48][C][ld2410:071]: Icon: 'mdi:motion-sensor'
[18:39:48][C][ld2410:071]: Unit of Measurement: '%'
[18:39:48][C][ld2410:071]: Device Class: 'signal_strength'
[18:39:48][C][ld2410:071]: Move Thresholds Number 'g3 move threshold'
[18:39:48][C][ld2410:071]: Icon: 'mdi:motion-sensor'
[18:39:48][C][ld2410:071]: Unit of Measurement: '%'
[18:39:48][C][ld2410:071]: Device Class: 'signal_strength'
[18:39:48][C][ld2410:071]: Move Thresholds Number 'g4 move threshold'
[18:39:48][C][ld2410:071]: Icon: 'mdi:motion-sensor'
[18:39:48][C][ld2410:071]: Unit of Measurement: '%'
[18:39:48][C][ld2410:071]: Device Class: 'signal_strength'
[18:39:48][C][ld2410:071]: Move Thresholds Number 'g5 move threshold'
[18:39:48][C][ld2410:071]: Icon: 'mdi:motion-sensor'
[18:39:48][C][ld2410:071]: Unit of Measurement: '%'
[18:39:48][C][ld2410:071]: Device Class: 'signal_strength'
[18:39:48][C][ld2410:071]: Move Thresholds Number 'g6 move threshold'
[18:39:48][C][ld2410:071]: Icon: 'mdi:motion-sensor'
[18:39:48][C][ld2410:071]: Unit of Measurement: '%'
[18:39:48][C][ld2410:071]: Device Class: 'signal_strength'
[18:39:48][C][ld2410:071]: Move Thresholds Number 'g7 move threshold'
[18:39:48][C][ld2410:071]: Icon: 'mdi:motion-sensor'
[18:39:48][C][ld2410:071]: Unit of Measurement: '%'
[18:39:48][C][ld2410:071]: Device Class: 'signal_strength'
[18:39:48][C][ld2410:071]: Move Thresholds Number 'g8 move threshold'
[18:39:48][C][ld2410:071]: Icon: 'mdi:motion-sensor'
[18:39:48][C][ld2410:071]: Unit of Measurement: '%'
[18:39:48][C][ld2410:071]: Device Class: 'signal_strength'
[18:39:48][C][ld2410:075]: Throttle_ : 1000ms
[18:39:48][C][ld2410:076]: MAC Address :
[18:39:48][C][ld2410:077]: Firmware Version :
[18:39:48][C][captive_portal:088]: Captive Portal:
[18:39:48][C][mdns:115]: mDNS:
[18:39:48][C][mdns:116]: Hostname: esp8266test
[18:39:48][C][ota:096]: Over-The-Air Updates:
[18:39:48][C][ota:097]: Address: esp8266test.local:8266
[18:39:48][C][ota:100]: Using Password.
[18:39:48][C][ota:103]: OTA version: 2.
[18:39:48][C][api:139]: API Server:
[18:39:48][C][api:140]: Address: esp8266test.local:6053
[18:39:48][C][api:142]: Using noise encryption: YES
Log ends there…