holograma
(Holograma)
December 27, 2025, 12:00am
1
Hi everyone!
I’ve purchased a HLK-LD2412 (https://es.aliexpress.com/item/1005007588627535.html )
to update the ld2410 I had working on a ESP32-S3
The problem is that since I updated the code and hardware the esp32 is constantly rebooting on random time frames.
here’s my code:
substitutions:
e_key: !secret e_key_holoroom
ota_pass: !secret ota_holoroom
ap: !secret ssid_holoroom
ap_pass: !secret ssid_pass_holoroom
##########################################
### Seting de Puertos ###
##########################################
#------ uart -----#
tx_ld2412: GPIO18 #naranjo
rx_ld2412: GPIO17 #amarillo
id_uart: uart_fmcw
# ---- Out Pin ----#
# OP_presence: GPIO7
########################################
### Light Sensor ###
########################################
light_sensor_pin: GPIO7
########################################
### BME680 ###
########################################
h_name: "HR% Holo"
h_id: h_holo
t_name: "T° Holo"
t_id: t_holo
p_name: "Presión en Holo"
p_id: p_holo
gr_name: "Resistencia de Gas"
gr_id: gr_holo
iaq_name: "Calidad del Aire (Raw)"
iaq_id: iaq_raw
iaq_class_name: "Índice de calidad del Aire"
bme680_update: 30s
#------- i2c-------#
bme680_sda: GPIO8 #amarillo
bme680_scl: GPIO9 #verde
## ##
#########################################
### Configuración ###
#########################################
## ##
esphome:
name: "hologramas"
friendly_name: Holograma's
platformio_options:
board_build.flash_mode: dio
esp32:
board: esp32-s3-devkitc-1
flash_size: 16MB
framework:
type: esp-idf
version: recommended
variant: esp32s3
psram:
mode: octal
speed: 80MHz
# Enable logging
logger:
# Enable Home Assistant API
api:
encryption:
key: $e_key
ota:
- platform: esphome
password: $ota_pass
wifi:
networks:
- ssid: !secret wifi_5g
password: !secret wifi_5g_pass
- ssid: !secret wifi_ssid
password: !secret wifi_password
on_connect:
then:
- light.turn_on:
id: onboard_light
brightness: 100%
red: 0
green: 100%
blue: 0
- delay: 500ms
- light.turn_off: onboard_light
- light.turn_on:
id: onboard_light
brightness: 100%
red: 0
green: 100%
blue: 0
- delay: 500ms
- light.turn_off: onboard_light
- light.turn_on:
id: onboard_light
brightness: 100%
red: 0
green: 100%
blue: 0
- delay: 500ms
- light.turn_off: onboard_light
on_disconnect:
then:
- light.turn_on:
id: onboard_light
brightness: 100%
red: 100%
green: 0
blue: 0
- delay: 500ms
- light.turn_off: onboard_light
- light.turn_on:
id: onboard_light
brightness: 100%
red: 100%
green: 0
blue: 0
- delay: 500ms
- light.turn_off: onboard_light
- light.turn_on:
id: onboard_light
brightness: 100%
red: 100%
green: 0
blue: 0
- delay: 500ms
- light.turn_off: onboard_light
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: $ap
password: $ap_pass
captive_portal:
##########################################
### Seting de Puertos ###
##########################################
i2c:
- id: bus_a
sda: $bme680_sda
scl: $bme680_scl
scan: true
uart:
tx_pin: $rx_ld2412
rx_pin: $tx_ld2412
baud_rate: 115200
parity: NONE
stop_bits: 1
id: $id_uart
##########################################
### Sensores ###
##########################################
light:
- platform: esp32_rmt_led_strip
id: onboard_light
rgb_order: GRB
pin: GPIO48
num_leds: 1
chipset: ws2812
name: "LED Onboard"
restore_mode: RESTORE_DEFAULT_OFF
ld2412:
uart_id: $id_uart
id: ld2412_comp
select:
- platform: ld2412
distance_resolution:
name: Distance Resolution
baud_rate:
name: Baud Rate
light_function:
name: Light Function
number:
- platform: ld2412
timeout:
name: Presence Timeout
min_distance_gate:
name: Min Dist Gate
max_distance_gate:
name: Max Dist Gate
light_threshold:
name: Light Threshold
gate_0:
move_threshold:
name: Gate 0 MT
still_threshold:
name: Gate 0 ST
gate_1:
move_threshold:
name: Gate 1 MT
still_threshold:
name: Gate 1 ST
gate_2:
move_threshold:
name: Gate 2 MT
still_threshold:
name: Gate 2 ST
gate_3:
move_threshold:
name: Gate 3 MT
still_threshold:
name: Gate 3 ST
gate_4:
move_threshold:
name: Gate 4 MT
still_threshold:
name: Gate 4 ST
gate_5:
move_threshold:
name: Gate 5 MT
still_threshold:
name: Gate 5 ST
gate_6:
move_threshold:
name: Gate 6 MT
still_threshold:
name: Gate 6 ST
gate_7:
move_threshold:
name: Gate 7 MT
still_threshold:
name: Gate 7 ST
gate_8:
move_threshold:
name: Gate 8 MT
still_threshold:
name: Gate 8 ST
gate_9:
move_threshold:
name: Gate 9 MT
still_threshold:
name: Gate 9 ST
gate_10:
move_threshold:
name: Gate 10 MT
still_threshold:
name: Gate 10 ST
gate_11:
move_threshold:
name: Gate 11 MT
still_threshold:
name: Gate 11 ST
gate_12:
move_threshold:
name: Gate 12 MT
still_threshold:
name: Gate 12 ST
gate_13:
move_threshold:
name: Gate 13 MT
still_threshold:
name: Gate 13 ST
text_sensor:
- platform: ld2412
version:
name: ld2412 Firmware version
mac_address:
name: ld2412 Mac Address
# Sensor THPG Pieza
# Sin BSEC
- platform: template
name: $iaq_class_name
icon: "mdi:checkbox-marked-circle-outline"
lambda: |-
if ( int(id($iaq_id).state) <= 50) {
return {"Excelente"};
}
else if (int(id($iaq_id).state) >= 51 && int(id($iaq_id).state) <= 100) {
return {"Bueno"};
}
else if (int(id($iaq_id).state) >= 101 && int(id($iaq_id).state) <= 150) {
return {"Ligeramente contaminado"};
}
else if (int(id($iaq_id).state) >= 151 && int(id($iaq_id).state) <= 200) {
return {"Moderadamente contaminado"};
}
else if (int(id($iaq_id).state) >= 201 && int(id($iaq_id).state) <= 250) {
return {"Altamente contaminado"};
}
else if (int(id($iaq_id).state) >= 251 && int(id($iaq_id).state) <= 350) {
return {"Gravemente contaminado"};
}
else if (int(id($iaq_id).state) >= 351) {
return {"Extremadamente contaminado"};
}
else {
return {"Error"};
}
switch:
- platform: ld2412
engineering_mode:
name: Engineering Mode
bluetooth:
name: Bluetooth ld2412
restore_mode: ALWAYS_OFF
sensor:
#Señal de wi-fi
- platform: wifi_signal # Reports the WiFi signal strength/RSSI in dB
name: "Señal WiFi HoloRoom (dB)"
id: holo_wifi
- platform: copy # Reports the WiFi signal strength in %
source_id: holo_wifi
name: "WiFi Holograma's Room"
filters:
- lambda: return min(max(2 * (x + 100.0), 0.0), 100.0);
unit_of_measurement: "Señal %"
- platform: adc
id: lux_voltage
name: "Luz en HoloRoom (V)"
pin: $light_sensor_pin
attenuation: 12db
update_interval: 1s
unit_of_measurement: "V"
filters:
- median:
window_size: 5
send_every: 2
# Lux calibrado EXACTO para tu módulo GL5528+LM358+10kΩ
- platform: template
id: lux_sensor
name: "Luz HoloRoom GL5528 (lux)"
unit_of_measurement: "lx"
accuracy_decimals: 0
icon: "mdi:lightbulb-outline"
update_interval: 5s
lambda: |-
const float Vout = id(lux_voltage).state;
if (Vout < 0.05f) return 0.0f; // Oscuridad
const float VCC = 3.3f;
const float R1 = 10000.0f; // Del esquema PDF
const float R10lux = 15000.0f; // GL5528 @10lux
const float gamma = 0.6f; // GL5528 datasheet
// Física exacta del circuito
float R_LDR = R1 * (VCC / Vout - 1.0f);
if (R_LDR > 1000000.0f) R_LDR = 1000000.0f; // Saturación oscuridad
// Modelo GL5528: lux = 10 * (R10/R)^(1/γ)
float lux_fisico = 10.0f * powf(R10lux / R_LDR, 1.0f / gamma);
// Corrección calibrada con TUS 7 puntos (m=0.84, c=1.007)
float log10_lux = 0.84f * log10f(lux_fisico) + 1.007f;
float lux = powf(10.0f, log10_lux);
if (lux > 10000.0f) lux = 10000.0f;
return roundf(lux);
# Sensor THPG Pieza
#Sin BSEC
- platform: bme680
temperature:
name: $t_name
id: $t_id
pressure:
name: $p_name
id: $p_id
humidity:
name: $h_name
id: $h_id
gas_resistance:
name: $gr_name
id: $gr_id
address: 0x77
update_interval: $bme680_update
- platform: template
name: $iaq_name
id: $iaq_id
icon: "mdi:gauge"
# calculation: comp_gas = log(R_gas[ohm]) + 0.04 log(Ohm)/%rh * hum[%rh]
lambda: |-
return log(id($gr_id).state) + 0.04 * id($h_id).state;
state_class: "measurement"
#sensores de mov
- platform: ld2412
moving_distance:
name: Movimiento (cm)
still_distance:
name: Quieto (cm)
moving_energy:
name: Movimiento (%)
still_energy:
name: Quieto (%)
detection_distance:
name: Detección (cm)
gate_0:
move_energy:
name: g0 Mov
still_energy:
name: g0 Quieto
gate_1:
move_energy:
name: g1 Mov
still_energy:
name: g1 Quieto
gate_2:
move_energy:
name: g2 Mov
still_energy:
name: g2 Quieto
gate_3:
move_energy:
name: g3 Mov
still_energy:
name: g3 Quieto
gate_4:
move_energy:
name: g4 Mov
still_energy:
name: g4 Quieto
gate_5:
move_energy:
name: g5 Mov
still_energy:
name: g5 Quieto
gate_6:
move_energy:
name: g6 Mov
still_energy:
name: g6 Quieto
gate_7:
move_energy:
name: g7 Mov
still_energy:
name: g7 Quieto
gate_8:
move_energy:
name: g8 Mov
still_energy:
name: g8 Quieto
gate_9:
move_energy:
name: g9 Mov
still_energy:
name: g9 Quieto
gate_10:
move_energy:
name: g10 Mov
still_energy:
name: g10 Quieto
gate_11:
move_energy:
name: g11 Mov
still_energy:
name: g11 Quieto
gate_12:
move_energy:
name: g12 Mov
still_energy:
name: g12 Quieto
gate_13:
move_energy:
name: g13 Mov
still_energy:
name: g13 Quieto
light:
name: luz
binary_sensor:
- platform: status
name: "Estado"
id: system_status
- platform: ld2412
has_target:
name: Presencia
has_moving_target:
name: Pres Movimiento
has_still_target:
name: Obj. Quieto
dynamic_background_correction_status:
name: Dynamic Background Correction Status
# out_pin_presence_status:
# name: OP Presence
# - platform: gpio
# pin: $OP_presence
# name: gpio out presence
# device_class: presence
button:
- platform: restart
name: "Restart"
- platform: ld2412
factory_reset:
name: ld2412 Factory Reset
restart:
name: ld2412 Restart
query_params:
name: ld2412 Query Params
start_dynamic_background_correction:
name: ld2412 Start Dynamic Background Correction
Any idea on what may cause this? or tips on how to debug?
IOT7712
December 27, 2025, 12:09am
2
Is your “Configuración” section still accurate?
Turn on debug in your ESPHome code, purge your ESPHome cache, recompile, and post your compile and running log here.
[Note that once you purge your ESPHome cache, it will download fresh new code over the internet and recompile it, so the first compile pass after you purge will take a very long time. Expect it and don’t panic.]
1 Like
holograma
(Holograma)
December 27, 2025, 11:43pm
3
This is the log file
INFO ESPHome 2025.12.2
INFO Reading configuration /config/esphome/hologramas.yaml...
INFO Starting log output from 192.168.100.80 using esphome API
INFO Successfully resolved hologramas @ 192.168.100.80 in 0.000s
WARNING Can't connect to ESPHome API for hologramas @ 192.168.100.80: Timeout while connecting to [AddrInfo(family=<AddressFamily.AF_INET: 2>, type=<SocketKind.SOCK_STREAM: 1>, proto=6, sockaddr=IPv4Sockaddr(address='192.168.100.80', port=6053))] (TimeoutAPIError)
INFO Trying to connect to hologramas @ 192.168.100.80 in the background
INFO Successfully connected to hologramas @ 192.168.100.80 in 0.032s
INFO Successful handshake with hologramas @ 192.168.100.80 in 0.099s
[20:34:43.328][I][app:194]: ESPHome version 2025.12.2 compiled on Dec 27 2025, 05:56:19
[20:34:43.329][C][logger:261]: Logger:
[20:34:43.329][C][logger:261]: Max Level: DEBUG
[20:34:43.329][C][logger:261]: Initial Level: DEBUG
[20:34:43.335][C][logger:267]: Log Baud Rate: 115200
[20:34:43.335][C][logger:267]: Hardware UART: USB_SERIAL_JTAG
[20:34:43.336][C][logger:274]: Task Log Buffer Size: 768
[20:34:43.343][C][i2c.idf:090]: I2C Bus:
[20:34:43.345][C][i2c.idf:091]: SDA Pin: GPIO8
[20:34:43.345][C][i2c.idf:091]: SCL Pin: GPIO9
[20:34:43.345][C][i2c.idf:091]: Frequency: 50000 Hz
[20:34:43.348][C][i2c.idf:101]: Recovery: bus successfully recovered
[20:34:43.357][C][i2c.idf:111]: Results from bus scan:
[20:34:43.358][C][i2c.idf:117]: Found device at address 0x77
[20:34:43.360][C][uart.idf:238]: UART Bus 0:
[20:34:43.365][C][uart.idf:239]: TX Pin: GPIO17
[20:34:43.365][C][uart.idf:240]: RX Pin: GPIO18
[20:34:43.366][C][uart.idf:243]: RX Buffer Size: 256
[20:34:43.366][C][uart.idf:243]: RX Full Threshold: 114
[20:34:43.366][C][uart.idf:243]: RX Timeout: 2
[20:34:43.377][C][uart.idf:249]: Baud Rate: 115200 baud
[20:34:43.377][C][uart.idf:249]: Data Bits: 8
[20:34:43.377][C][uart.idf:249]: Parity: NONE
[20:34:43.377][C][uart.idf:249]: Stop bits: 1
[20:34:43.391][C][esp32_rmt_led_strip:268]: ESP32 RMT LED Strip:
[20:34:43.391][C][esp32_rmt_led_strip:268]: Pin: 48
[20:34:43.406][C][esp32_rmt_led_strip:272]: RMT Symbols: 192
[20:34:43.406][C][esp32_rmt_led_strip:297]: RGB Order: GRB
[20:34:43.406][C][esp32_rmt_led_strip:297]: Max refresh rate: 0
[20:34:43.406][C][esp32_rmt_led_strip:297]: Number of LEDs: 1
[20:34:43.411][C][template.text_sensor:016]: Template Sensor 'Índice de calidad del Aire'
[20:34:43.412][C][template.text_sensor:023]: Icon: 'mdi:checkbox-marked-circle-outline'
[20:34:43.422][C][template.sensor:017]: Template Sensor 'Luz HoloRoom GL5528 (lux)'
[20:34:43.422][C][template.sensor:017]: State Class: ''
[20:34:43.422][C][template.sensor:017]: Unit of Measurement: 'lx'
[20:34:43.422][C][template.sensor:017]: Accuracy Decimals: 0
[20:34:43.433][C][template.sensor:031]: Icon: 'mdi:lightbulb-outline'
[20:34:43.434][C][template.sensor:399]: Update Interval: 5.0s
[20:34:43.434][C][template.sensor:017]: Template Sensor 'Calidad del Aire (Raw)'
[20:34:43.434][C][template.sensor:017]: State Class: 'measurement'
[20:34:43.434][C][template.sensor:017]: Unit of Measurement: ''
[20:34:43.434][C][template.sensor:017]: Accuracy Decimals: 1
[20:34:43.434][C][template.sensor:031]: Icon: 'mdi:gauge'
[20:34:43.436][C][template.sensor:399]: Update Interval: 60.0s
[20:34:43.610][D][light:090]: 'LED Onboard' Setting:
[20:34:43.616][D][light:103]: State: OFF
[20:34:43.616][D][light:141]: Transition length: 1.0s
[20:34:43.791][D][sensor:135]: 'Luz en HoloRoom (V)': Sending state 0.24000 V with 2 decimals of accuracy
[20:34:43.840][C][light:091]: Light 'LED Onboard'
[20:34:43.841][C][light:094]: Default Transition Length: 1.0s
[20:34:43.841][C][light:094]: Gamma Correct: 2.80
[20:34:43.847][C][psram:016]: PSRAM:
[20:34:43.865][C][psram:019]: Available: YES
[20:34:43.865][C][psram:021]: Size: 8192 KB
[20:34:43.866][C][ld2412:204]: LD2412:
[20:34:43.866][C][ld2412:204]: Firmware version: 0.00.00000000
[20:34:43.866][C][ld2412:204]: MAC address: unknown
[20:34:43.866][C][ld2412:210]: Binary Sensors:
[20:34:43.866][C][ld2412:016]: DynamicBackgroundCorrectionStatus 'Dynamic Background Correction Status'
[20:34:43.867][C][ld2412:019]: Device Class: 'running'
[20:34:43.870][C][ld2412:016]: MovingTarget 'Pres Movimiento'
[20:34:43.877][C][ld2412:019]: Device Class: 'motion'
[20:34:43.881][C][ld2412:016]: StillTarget 'Obj. Quieto'
[20:34:43.887][C][ld2412:019]: Device Class: 'occupancy'
[20:34:43.888][C][ld2412:016]: Target 'Presencia'
[20:34:43.889][C][ld2412:019]: Device Class: 'occupancy'
[20:34:43.893][C][ld2412:218]: Sensors:
[20:34:43.902][C][ld2412:017]: Light 'luz'
[20:34:43.902][C][ld2412:017]: State Class: ''
[20:34:43.902][C][ld2412:017]: Unit of Measurement: ''
[20:34:43.902][C][ld2412:017]: Accuracy Decimals: 0
[20:34:43.903][C][ld2412:027]: Device Class: 'illuminance'
[20:34:43.903][C][ld2412:031]: Icon: 'mdi:lightbulb'
[20:34:43.904][C][ld2412:017]: DetectionDistance 'Detección (cm)'
[20:34:43.904][C][ld2412:017]: State Class: ''
[20:34:43.904][C][ld2412:017]: Unit of Measurement: 'cm'
[20:34:43.904][C][ld2412:017]: Accuracy Decimals: 0
[20:34:43.908][C][ld2412:027]: Device Class: 'distance'
[20:34:43.916][C][ld2412:031]: Icon: 'mdi:signal-distance-variant'
[20:34:43.917][C][ld2412:017]: MovingTargetDistance 'Movimiento (cm)'
[20:34:43.917][C][ld2412:017]: State Class: ''
[20:34:43.917][C][ld2412:017]: Unit of Measurement: 'cm'
[20:34:43.917][C][ld2412:017]: Accuracy Decimals: 0
[20:34:43.917][C][ld2412:027]: Device Class: 'distance'
[20:34:43.922][C][ld2412:031]: Icon: 'mdi:signal-distance-variant'
[20:34:43.929][C][ld2412:017]: MovingTargetEnergy 'Movimiento (%)'
[20:34:43.929][C][ld2412:017]: State Class: ''
[20:34:43.929][C][ld2412:017]: Unit of Measurement: '%'
[20:34:43.929][C][ld2412:017]: Accuracy Decimals: 0
[20:34:43.930][C][ld2412:031]: Icon: 'mdi:motion-sensor'
[20:34:43.930][C][ld2412:017]: StillTargetDistance 'Quieto (cm)'
[20:34:43.930][C][ld2412:017]: State Class: ''
[20:34:43.930][C][ld2412:017]: Unit of Measurement: 'cm'
[20:34:43.930][C][ld2412:017]: Accuracy Decimals: 0
[20:34:43.941][C][ld2412:027]: Device Class: 'distance'
[20:34:43.944][C][ld2412:031]: Icon: 'mdi:signal-distance-variant'
[20:34:43.944][C][ld2412:017]: StillTargetEnergy 'Quieto (%)'
[20:34:43.944][C][ld2412:017]: State Class: ''
[20:34:43.944][C][ld2412:017]: Unit of Measurement: '%'
[20:34:43.944][C][ld2412:017]: Accuracy Decimals: 0
[20:34:43.945][C][ld2412:031]: Icon: 'mdi:flash'
[20:34:43.946][C][ld2412:017]: GateStill 'g0 Quieto'
[20:34:43.946][C][ld2412:017]: State Class: ''
[20:34:43.946][C][ld2412:017]: Unit of Measurement: '%'
[20:34:43.946][C][ld2412:017]: Accuracy Decimals: 0
[20:34:43.950][C][ld2412:031]: Icon: 'mdi:flash'
[20:34:43.952][C][ld2412:017]: GateStill 'g1 Quieto'
[20:34:43.952][C][ld2412:017]: State Class: ''
[20:34:43.952][C][ld2412:017]: Unit of Measurement: '%'
[20:34:43.952][C][ld2412:017]: Accuracy Decimals: 0
[20:34:43.961][C][ld2412:031]: Icon: 'mdi:flash'
[20:34:43.963][C][ld2412:017]: GateStill 'g2 Quieto'
[20:34:43.963][C][ld2412:017]: State Class: ''
[20:34:43.963][C][ld2412:017]: Unit of Measurement: '%'
[20:34:43.963][C][ld2412:017]: Accuracy Decimals: 0
[20:34:43.965][C][ld2412:031]: Icon: 'mdi:flash'
[20:34:43.973][C][ld2412:017]: GateStill 'g3 Quieto'
[20:34:43.973][C][ld2412:017]: State Class: ''
[20:34:43.973][C][ld2412:017]: Unit of Measurement: '%'
[20:34:43.973][C][ld2412:017]: Accuracy Decimals: 0
[20:34:43.974][C][ld2412:031]: Icon: 'mdi:flash'
[20:34:43.974][C][ld2412:017]: GateStill 'g4 Quieto'
[20:34:43.974][C][ld2412:017]: State Class: ''
[20:34:43.974][C][ld2412:017]: Unit of Measurement: '%'
[20:34:43.974][C][ld2412:017]: Accuracy Decimals: 0
[20:34:43.989][C][ld2412:031]: Icon: 'mdi:flash'
[20:34:43.989][C][ld2412:017]: GateStill 'g5 Quieto'
[20:34:43.989][C][ld2412:017]: State Class: ''
[20:34:43.989][C][ld2412:017]: Unit of Measurement: '%'
[20:34:43.989][C][ld2412:017]: Accuracy Decimals: 0
[20:34:43.990][C][ld2412:031]: Icon: 'mdi:flash'
[20:34:43.990][C][ld2412:017]: GateStill 'g6 Quieto'
[20:34:43.990][C][ld2412:017]: State Class: ''
[20:34:43.990][C][ld2412:017]: Unit of Measurement: '%'
[20:34:43.990][C][ld2412:017]: Accuracy Decimals: 0
[20:34:43.990][C][ld2412:031]: Icon: 'mdi:flash'
[20:34:43.991][C][ld2412:017]: GateStill 'g7 Quieto'
[20:34:43.991][C][ld2412:017]: State Class: ''
[20:34:43.991][C][ld2412:017]: Unit of Measurement: '%'
[20:34:43.991][C][ld2412:017]: Accuracy Decimals: 0
[20:34:43.997][C][ld2412:031]: Icon: 'mdi:flash'
[20:34:43.999][C][ld2412:017]: GateStill 'g8 Quieto'
[20:34:43.999][C][ld2412:017]: State Class: ''
[20:34:43.999][C][ld2412:017]: Unit of Measurement: '%'
[20:34:43.999][C][ld2412:017]: Accuracy Decimals: 0
[20:34:44.004][C][ld2412:031]: Icon: 'mdi:flash'
[20:34:44.010][C][ld2412:017]: GateStill 'g9 Quieto'
[20:34:44.010][C][ld2412:017]: State Class: ''
[20:34:44.010][C][ld2412:017]: Unit of Measurement: '%'
[20:34:44.010][C][ld2412:017]: Accuracy Decimals: 0
[20:34:44.012][C][ld2412:031]: Icon: 'mdi:flash'
[20:34:44.013][C][ld2412:017]: GateStill 'g10 Quieto'
[20:34:44.013][C][ld2412:017]: State Class: ''
[20:34:44.013][C][ld2412:017]: Unit of Measurement: '%'
[20:34:44.013][C][ld2412:017]: Accuracy Decimals: 0
[20:34:44.022][C][ld2412:031]: Icon: 'mdi:flash'
[20:34:44.023][C][ld2412:017]: GateStill 'g11 Quieto'
[20:34:44.023][C][ld2412:017]: State Class: ''
[20:34:44.023][C][ld2412:017]: Unit of Measurement: '%'
[20:34:44.023][C][ld2412:017]: Accuracy Decimals: 0
[20:34:44.024][C][ld2412:031]: Icon: 'mdi:flash'
[20:34:44.032][C][ld2412:017]: GateStill 'g12 Quieto'
[20:34:44.032][C][ld2412:017]: State Class: ''
[20:34:44.032][C][ld2412:017]: Unit of Measurement: '%'
[20:34:44.032][C][ld2412:017]: Accuracy Decimals: 0
[20:34:44.045][C][ld2412:031]: Icon: 'mdi:flash'
[20:34:44.046][C][ld2412:017]: GateStill 'g13 Quieto'
[20:34:44.046][C][ld2412:017]: State Class: ''
[20:34:44.046][C][ld2412:017]: Unit of Measurement: '%'
[20:34:44.046][C][ld2412:017]: Accuracy Decimals: 0
[20:34:44.046][C][ld2412:031]: Icon: 'mdi:flash'
[20:34:44.046][C][ld2412:017]: GateMove 'g0 Mov'
[20:34:44.046][C][ld2412:017]: State Class: ''
[20:34:44.046][C][ld2412:017]: Unit of Measurement: '%'
[20:34:44.046][C][ld2412:017]: Accuracy Decimals: 0
[20:34:44.047][C][ld2412:031]: Icon: 'mdi:motion-sensor'
[20:34:44.047][C][ld2412:017]: GateMove 'g1 Mov'
[20:34:44.047][C][ld2412:017]: State Class: ''
[20:34:44.047][C][ld2412:017]: Unit of Measurement: '%'
[20:34:44.047][C][ld2412:017]: Accuracy Decimals: 0
[20:34:44.051][C][ld2412:031]: Icon: 'mdi:motion-sensor'
[20:34:44.054][C][ld2412:017]: GateMove 'g2 Mov'
[20:34:44.054][C][ld2412:017]: State Class: ''
[20:34:44.054][C][ld2412:017]: Unit of Measurement: '%'
[20:34:44.054][C][ld2412:017]: Accuracy Decimals: 0
[20:34:44.070][C][ld2412:031]: Icon: 'mdi:motion-sensor'
[20:34:44.070][C][ld2412:017]: GateMove 'g3 Mov'
[20:34:44.070][C][ld2412:017]: State Class: ''
[20:34:44.070][C][ld2412:017]: Unit of Measurement: '%'
[20:34:44.070][C][ld2412:017]: Accuracy Decimals: 0
[20:34:44.071][C][ld2412:031]: Icon: 'mdi:motion-sensor'
[20:34:44.071][C][ld2412:017]: GateMove 'g4 Mov'
[20:34:44.071][C][ld2412:017]: State Class: ''
[20:34:44.071][C][ld2412:017]: Unit of Measurement: '%'
[20:34:44.071][C][ld2412:017]: Accuracy Decimals: 0
[20:34:44.071][C][ld2412:031]: Icon: 'mdi:motion-sensor'
[20:34:44.082][C][ld2412:017]: GateMove 'g5 Mov'
[20:34:44.082][C][ld2412:017]: State Class: ''
[20:34:44.082][C][ld2412:017]: Unit of Measurement: '%'
[20:34:44.082][C][ld2412:017]: Accuracy Decimals: 0
[20:34:44.083][C][ld2412:031]: Icon: 'mdi:motion-sensor'
[20:34:44.087][C][ld2412:017]: GateMove 'g6 Mov'
[20:34:44.087][C][ld2412:017]: State Class: ''
[20:34:44.087][C][ld2412:017]: Unit of Measurement: '%'
[20:34:44.087][C][ld2412:017]: Accuracy Decimals: 0
[20:34:44.094][C][ld2412:031]: Icon: 'mdi:motion-sensor'
[20:34:44.094][C][ld2412:017]: GateMove 'g7 Mov'
[20:34:44.094][C][ld2412:017]: State Class: ''
[20:34:44.094][C][ld2412:017]: Unit of Measurement: '%'
[20:34:44.094][C][ld2412:017]: Accuracy Decimals: 0
[20:34:44.095][C][ld2412:031]: Icon: 'mdi:motion-sensor'
[20:34:44.095][C][ld2412:017]: GateMove 'g8 Mov'
[20:34:44.095][C][ld2412:017]: State Class: ''
[20:34:44.095][C][ld2412:017]: Unit of Measurement: '%'
[20:34:44.095][C][ld2412:017]: Accuracy Decimals: 0
[20:34:44.098][C][ld2412:031]: Icon: 'mdi:motion-sensor'
[20:34:44.100][C][ld2412:017]: GateMove 'g9 Mov'
[20:34:44.100][C][ld2412:017]: State Class: ''
[20:34:44.100][C][ld2412:017]: Unit of Measurement: '%'
[20:34:44.100][C][ld2412:017]: Accuracy Decimals: 0
[20:34:44.107][C][ld2412:031]: Icon: 'mdi:motion-sensor'
[20:34:44.127][C][ld2412:017]: GateMove 'g10 Mov'
[20:34:44.127][C][ld2412:017]: State Class: ''
[20:34:44.127][C][ld2412:017]: Unit of Measurement: '%'
[20:34:44.127][C][ld2412:017]: Accuracy Decimals: 0
[20:34:44.128][C][ld2412:031]: Icon: 'mdi:motion-sensor'
[20:34:44.128][C][ld2412:017]: GateMove 'g11 Mov'
[20:34:44.128][C][ld2412:017]: State Class: ''
[20:34:44.128][C][ld2412:017]: Unit of Measurement: '%'
[20:34:44.128][C][ld2412:017]: Accuracy Decimals: 0
[20:34:44.128][C][ld2412:031]: Icon: 'mdi:motion-sensor'
[20:34:44.129][C][ld2412:017]: GateMove 'g12 Mov'
[20:34:44.129][C][ld2412:017]: State Class: ''
[20:34:44.129][C][ld2412:017]: Unit of Measurement: '%'
[20:34:44.129][C][ld2412:017]: Accuracy Decimals: 0
[20:34:44.130][C][ld2412:031]: Icon: 'mdi:motion-sensor'
[20:34:44.130][C][ld2412:017]: GateMove 'g13 Mov'
[20:34:44.130][C][ld2412:017]: State Class: ''
[20:34:44.130][C][ld2412:017]: Unit of Measurement: '%'
[20:34:44.130][C][ld2412:017]: Accuracy Decimals: 0
[20:34:44.135][C][ld2412:031]: Icon: 'mdi:motion-sensor'
[20:34:44.136][C][ld2412:233]: Text Sensors:
[20:34:44.139][C][ld2412:016]: MAC address 'ld2412 Mac Address'
[20:34:44.148][C][ld2412:023]: Icon: 'mdi:bluetooth'
[20:34:44.148][C][ld2412:016]: Version 'ld2412 Firmware version'
[20:34:44.149][C][ld2412:023]: Icon: 'mdi:chip'
[20:34:44.149][C][ld2412:238]: Numbers:
[20:34:44.159][C][ld2412:016]: LightThreshold 'Light Threshold'
[20:34:44.160][C][ld2412:019]: Icon: 'mdi:lightbulb'
[20:34:44.160][C][ld2412:027]: Device Class: 'illuminance'
[20:34:44.169][C][ld2412:016]: MaxDistanceGate 'Max Dist Gate'
[20:34:44.174][C][ld2412:019]: Icon: 'mdi:motion-sensor'
[20:34:44.174][C][ld2412:027]: Device Class: 'distance'
[20:34:44.174][C][ld2412:016]: MinDistanceGate 'Min Dist Gate'
[20:34:44.174][C][ld2412:019]: Icon: 'mdi:motion-sensor'
[20:34:44.178][C][ld2412:027]: Device Class: 'distance'
[20:34:44.178][C][ld2412:016]: Timeout 'Presence Timeout'
[20:34:44.184][C][ld2412:019]: Icon: 'mdi:timelapse'
[20:34:44.197][C][ld2412:023]: Unit of Measurement: 's'
[20:34:44.197][C][ld2412:016]: Move Thresholds 'Gate 0 MT'
[20:34:44.197][C][ld2412:019]: Icon: 'mdi:motion-sensor'
[20:34:44.197][C][ld2412:023]: Unit of Measurement: '%'
[20:34:44.197][C][ld2412:027]: Device Class: 'signal_strength'
[20:34:44.197][C][ld2412:016]: Move Thresholds 'Gate 1 MT'
[20:34:44.202][C][ld2412:019]: Icon: 'mdi:motion-sensor'
[20:34:44.205][C][ld2412:023]: Unit of Measurement: '%'
[20:34:44.215][C][ld2412:027]: Device Class: 'signal_strength'
[20:34:44.216][C][ld2412:016]: Move Thresholds 'Gate 2 MT'
[20:34:44.216][C][ld2412:019]: Icon: 'mdi:motion-sensor'
[20:34:44.216][C][ld2412:023]: Unit of Measurement: '%'
[20:34:44.218][C][ld2412:027]: Device Class: 'signal_strength'
[20:34:44.223][C][ld2412:016]: Move Thresholds 'Gate 3 MT'
[20:34:44.224][C][ld2412:019]: Icon: 'mdi:motion-sensor'
[20:34:44.230][C][ld2412:023]: Unit of Measurement: '%'
[20:34:44.236][C][ld2412:027]: Device Class: 'signal_strength'
[20:34:44.236][C][ld2412:016]: Move Thresholds 'Gate 4 MT'
[20:34:44.252][C][ld2412:019]: Icon: 'mdi:motion-sensor'
[20:34:44.253][C][ld2412:023]: Unit of Measurement: '%'
[20:34:44.253][C][ld2412:027]: Device Class: 'signal_strength'
[20:34:44.253][C][ld2412:016]: Move Thresholds 'Gate 5 MT'
[20:34:44.253][C][ld2412:019]: Icon: 'mdi:motion-sensor'
[20:34:44.253][C][ld2412:023]: Unit of Measurement: '%'
[20:34:44.253][C][ld2412:027]: Device Class: 'signal_strength'
[20:34:44.256][C][ld2412:016]: Move Thresholds 'Gate 6 MT'
[20:34:44.259][C][ld2412:019]: Icon: 'mdi:motion-sensor'
[20:34:44.264][C][ld2412:023]: Unit of Measurement: '%'
[20:34:44.269][C][ld2412:027]: Device Class: 'signal_strength'
[20:34:44.271][C][ld2412:016]: Move Thresholds 'Gate 7 MT'
[20:34:44.275][C][ld2412:019]: Icon: 'mdi:motion-sensor'
[20:34:44.280][C][ld2412:023]: Unit of Measurement: '%'
[20:34:44.281][C][ld2412:027]: Device Class: 'signal_strength'
[20:34:44.286][C][ld2412:016]: Move Thresholds 'Gate 8 MT'
[20:34:44.291][C][ld2412:019]: Icon: 'mdi:motion-sensor'
[20:34:44.291][C][ld2412:023]: Unit of Measurement: '%'
[20:34:44.291][C][ld2412:027]: Device Class: 'signal_strength'
[20:34:44.298][C][ld2412:016]: Move Thresholds 'Gate 9 MT'
[20:34:44.299][C][ld2412:019]: Icon: 'mdi:motion-sensor'
[20:34:44.300][C][ld2412:023]: Unit of Measurement: '%'
[20:34:44.305][C][ld2412:027]: Device Class: 'signal_strength'
[20:34:44.308][C][ld2412:016]: Move Thresholds 'Gate 10 MT'
[20:34:44.312][C][ld2412:019]: Icon: 'mdi:motion-sensor'
[20:34:44.313][C][ld2412:023]: Unit of Measurement: '%'
[20:34:44.317][C][ld2412:027]: Device Class: 'signal_strength'
[20:34:44.321][C][ld2412:016]: Move Thresholds 'Gate 11 MT'
[20:34:44.326][C][ld2412:019]: Icon: 'mdi:motion-sensor'
[20:34:44.327][C][ld2412:023]: Unit of Measurement: '%'
[20:34:44.338][C][ld2412:027]: Device Class: 'signal_strength'
[20:34:44.338][C][ld2412:016]: Move Thresholds 'Gate 12 MT'
[20:34:44.338][C][ld2412:019]: Icon: 'mdi:motion-sensor'
[20:34:44.339][C][ld2412:023]: Unit of Measurement: '%'
[20:34:44.339][C][ld2412:027]: Device Class: 'signal_strength'
[20:34:44.354][C][ld2412:016]: Move Thresholds 'Gate 13 MT'
[20:34:44.354][C][ld2412:019]: Icon: 'mdi:motion-sensor'
[20:34:44.355][C][ld2412:023]: Unit of Measurement: '%'
[20:34:44.355][C][ld2412:027]: Device Class: 'signal_strength'
[20:34:44.355][C][ld2412:016]: Still Thresholds 'Gate 0 ST'
[20:34:44.360][C][ld2412:019]: Icon: 'mdi:motion-sensor'
[20:34:44.360][C][ld2412:023]: Unit of Measurement: '%'
[20:34:44.363][C][ld2412:027]: Device Class: 'signal_strength'
[20:34:44.369][C][ld2412:016]: Still Thresholds 'Gate 1 ST'
[20:34:44.372][C][ld2412:019]: Icon: 'mdi:motion-sensor'
[20:34:44.373][C][ld2412:023]: Unit of Measurement: '%'
[20:34:44.384][C][ld2412:027]: Device Class: 'signal_strength'
[20:34:44.385][C][ld2412:016]: Still Thresholds 'Gate 2 ST'
[20:34:44.385][C][ld2412:019]: Icon: 'mdi:motion-sensor'
[20:34:44.403][C][ld2412:023]: Unit of Measurement: '%'
[20:34:44.403][C][ld2412:027]: Device Class: 'signal_strength'
[20:34:44.404][C][ld2412:016]: Still Thresholds 'Gate 3 ST'
[20:34:44.404][C][ld2412:019]: Icon: 'mdi:motion-sensor'
[20:34:44.404][C][ld2412:023]: Unit of Measurement: '%'
[20:34:44.404][C][ld2412:027]: Device Class: 'signal_strength'
[20:34:44.404][C][ld2412:016]: Still Thresholds 'Gate 4 ST'
[20:34:44.405][C][ld2412:019]: Icon: 'mdi:motion-sensor'
[20:34:44.410][C][ld2412:023]: Unit of Measurement: '%'
[20:34:44.414][C][ld2412:027]: Device Class: 'signal_strength'
[20:34:44.414][C][ld2412:016]: Still Thresholds 'Gate 5 ST'
[20:34:44.420][C][ld2412:019]: Icon: 'mdi:motion-sensor'
[20:34:44.422][C][ld2412:023]: Unit of Measurement: '%'
[20:34:44.428][C][ld2412:027]: Device Class: 'signal_strength'
[20:34:44.440][C][ld2412:016]: Still Thresholds 'Gate 6 ST'
[20:34:44.441][C][ld2412:019]: Icon: 'mdi:motion-sensor'
[20:34:44.441][C][ld2412:023]: Unit of Measurement: '%'
[20:34:44.441][C][ld2412:027]: Device Class: 'signal_strength'
[20:34:44.441][C][ld2412:016]: Still Thresholds 'Gate 7 ST'
[20:34:44.442][C][ld2412:019]: Icon: 'mdi:motion-sensor'
[20:34:44.446][C][ld2412:023]: Unit of Measurement: '%'
[20:34:44.456][C][ld2412:027]: Device Class: 'signal_strength'
[20:34:44.457][C][ld2412:016]: Still Thresholds 'Gate 8 ST'
[20:34:44.457][C][ld2412:019]: Icon: 'mdi:motion-sensor'
[20:34:44.457][C][ld2412:023]: Unit of Measurement: '%'
[20:34:44.458][C][ld2412:027]: Device Class: 'signal_strength'
[20:34:44.462][C][ld2412:016]: Still Thresholds 'Gate 9 ST'
[20:34:44.465][C][ld2412:019]: Icon: 'mdi:motion-sensor'
[20:34:44.470][C][ld2412:023]: Unit of Measurement: '%'
[20:34:44.480][C][ld2412:027]: Device Class: 'signal_strength'
[20:34:44.481][C][ld2412:016]: Still Thresholds 'Gate 10 ST'
[20:34:44.481][C][ld2412:019]: Icon: 'mdi:motion-sensor'
[20:34:44.481][C][ld2412:023]: Unit of Measurement: '%'
[20:34:44.485][C][ld2412:027]: Device Class: 'signal_strength'
[20:34:44.505][C][ld2412:016]: Still Thresholds 'Gate 11 ST'
[20:34:44.505][C][ld2412:019]: Icon: 'mdi:motion-sensor'
[20:34:44.505][C][ld2412:023]: Unit of Measurement: '%'
[20:34:44.506][C][ld2412:027]: Device Class: 'signal_strength'
[20:34:44.506][C][ld2412:016]: Still Thresholds 'Gate 12 ST'
[20:34:44.506][C][ld2412:019]: Icon: 'mdi:motion-sensor'
[20:34:44.506][C][ld2412:023]: Unit of Measurement: '%'
[20:34:44.506][C][ld2412:027]: Device Class: 'signal_strength'
[20:34:44.507][C][ld2412:016]: Still Thresholds 'Gate 13 ST'
[20:34:44.510][C][ld2412:019]: Icon: 'mdi:motion-sensor'
[20:34:44.517][C][ld2412:023]: Unit of Measurement: '%'
[20:34:44.517][C][ld2412:027]: Device Class: 'signal_strength'
[20:34:44.531][C][ld2412:251]: Selects:
[20:34:44.531][C][ld2412:252]: BaudRate 'Baud Rate'
[20:34:44.532][C][ld2412:252]: Icon: 'mdi:thermometer'
[20:34:44.532][C][ld2412:253]: DistanceResolution 'Distance Resolution'
[20:34:44.532][C][ld2412:253]: Icon: 'mdi:ruler'
[20:34:44.542][C][ld2412:254]: LightFunction 'Light Function'
[20:34:44.543][C][ld2412:254]: Icon: 'mdi:lightbulb'
[20:34:44.543][C][ld2412:258]: Switches:
[20:34:44.543][C][ld2412:092]: Bluetooth 'Bluetooth ld2412'
[20:34:44.543][C][ld2412:092]: Restore Mode: always OFF
[20:34:44.543][C][ld2412:100]: Icon: 'mdi:bluetooth'
[20:34:44.548][C][ld2412:109]: Device Class: 'switch'
[20:34:44.556][C][ld2412:092]: EngineeringMode 'Engineering Mode'
[20:34:44.556][C][ld2412:092]: Restore Mode: always OFF
[20:34:44.557][C][ld2412:100]: Icon: 'mdi:pulse'
[20:34:44.557][C][ld2412:109]: Device Class: 'switch'
[20:34:44.558][C][ld2412:263]: Buttons:
[20:34:44.564][C][ld2412:014]: FactoryReset 'ld2412 Factory Reset'
[20:34:44.565][C][ld2412:017]: Icon: 'mdi:restart-alert'
[20:34:44.577][C][ld2412:014]: Query 'ld2412 Query Params'
[20:34:44.577][C][ld2412:017]: Icon: 'mdi:database'
[20:34:44.577][C][ld2412:014]: Restart 'ld2412 Restart'
[20:34:44.577][C][ld2412:017]: Icon: 'mdi:restart'
[20:34:44.586][C][ld2412:014]: StartDynamicBackgroundCorrection 'ld2412 Start Dynamic Background Correction'
[20:34:44.587][C][ld2412:017]: Icon: 'mdi:pulse'
[20:34:44.606][C][copy.sensor:017]: Copy Sensor 'WiFi Holograma's Room'
[20:34:44.606][C][copy.sensor:017]: State Class: 'measurement'
[20:34:44.606][C][copy.sensor:017]: Unit of Measurement: 'Señal %'
[20:34:44.606][C][copy.sensor:017]: Accuracy Decimals: 0
[20:34:44.607][C][copy.sensor:027]: Device Class: 'signal_strength'
[20:34:44.607][D][api:136]: Accept 192.168.100.222
[20:34:44.607][C][adc.esp32:017]: ADC Sensor 'Luz en HoloRoom (V)'
[20:34:44.607][C][adc.esp32:017]: State Class: 'measurement'
[20:34:44.607][C][adc.esp32:017]: Unit of Measurement: 'V'
[20:34:44.607][C][adc.esp32:017]: Accuracy Decimals: 2
[20:34:44.608][C][adc.esp32:027]: Device Class: 'voltage'
[20:34:44.608][C][adc.esp32:123]: Pin: GPIO7
[20:34:44.612][C][adc.esp32:124]: Channel: 6
[20:34:44.612][C][adc.esp32:124]: Unit: ADC1
[20:34:44.612][C][adc.esp32:124]: Attenuation: 12 dB
[20:34:44.612][C][adc.esp32:124]: Samples: 1
[20:34:44.612][C][adc.esp32:124]: Sampling mode: average
[20:34:44.619][C][adc.esp32:134]: Setup Status:
[20:34:44.619][C][adc.esp32:134]: Handle Init: OK
[20:34:44.619][C][adc.esp32:134]: Config: OK
[20:34:44.619][C][adc.esp32:134]: Calibration: OK
[20:34:44.619][C][adc.esp32:134]: Overall Init: OK
[20:34:44.620][C][adc.esp32:399]: Update Interval: 1.0s
[20:34:44.668][C][bme680.sensor:214]: BME680:
[20:34:44.669][C][bme680.sensor:215]: Address: 0x77
[20:34:44.674][C][bme680.sensor:219]: IIR Filter: OFF
[20:34:44.678][C][bme680.sensor:399]: Update Interval: 30.0s
[20:34:44.686][C][bme680.sensor:017]: Temperature 'T° Holo'
[20:34:44.686][C][bme680.sensor:017]: State Class: 'measurement'
[20:34:44.686][C][bme680.sensor:017]: Unit of Measurement: '°C'
[20:34:44.686][C][bme680.sensor:017]: Accuracy Decimals: 1
[20:34:44.686][C][bme680.sensor:027]: Device Class: 'temperature'
[20:34:44.700][C][bme680.sensor:223]: Oversampling: 16x
[20:34:44.701][C][bme680.sensor:017]: Pressure 'Presión en Holo'
[20:34:44.701][C][bme680.sensor:017]: State Class: 'measurement'
[20:34:44.701][C][bme680.sensor:017]: Unit of Measurement: 'hPa'
[20:34:44.701][C][bme680.sensor:017]: Accuracy Decimals: 1
[20:34:44.701][C][bme680.sensor:027]: Device Class: 'atmospheric_pressure'
[20:34:44.702][C][bme680.sensor:225]: Oversampling: 16x
[20:34:44.702][C][bme680.sensor:017]: Humidity 'HR% Holo'
[20:34:44.702][C][bme680.sensor:017]: State Class: 'measurement'
[20:34:44.702][C][bme680.sensor:017]: Unit of Measurement: '%'
[20:34:44.702][C][bme680.sensor:017]: Accuracy Decimals: 1
[20:34:44.708][C][bme680.sensor:027]: Device Class: 'humidity'
[20:34:44.709][C][bme680.sensor:227]: Oversampling: 16x
[20:34:44.709][C][bme680.sensor:017]: Gas Resistance 'Resistencia de Gas'
[20:34:44.709][C][bme680.sensor:017]: State Class: 'measurement'
[20:34:44.709][C][bme680.sensor:017]: Unit of Measurement: 'Ω'
[20:34:44.709][C][bme680.sensor:017]: Accuracy Decimals: 1
[20:34:44.722][C][bme680.sensor:031]: Icon: 'mdi:gas-cylinder'
[20:34:44.748][C][bme680.sensor:232]: Heater temperature=320°C duration=150ms
[20:34:44.748][C][status:016]: Status Binary Sensor 'Estado'
[20:34:44.748][C][status:019]: Device Class: 'connectivity'
[20:34:44.756][D][api.connection:1398]: Home Assistant 2025.12.4 (192.168.100.222) connected
[20:34:44.765][C][restart.button:014]: Restart Button 'Restart'
[20:34:44.766][C][restart.button:017]: Icon: 'mdi:restart'
[20:34:44.766][C][captive_portal:118]: Captive Portal:
[20:34:44.776][C][wifi:1132]: WiFi:
[20:34:44.776][C][wifi:1132]: Connected: YES
[20:34:44.782][C][wifi:897]: Local MAC: 24:58:7C:E1:F9:B8
[20:34:44.782][C][wifi:904]: IP Address: 192.168.100.80
[20:34:44.793][C][wifi:908]: SSID:
[20:34:44.793][C][wifi:908]: BSSID:
[20:34:44.793][C][wifi:908]: Hostname: 'hologramas'
[20:34:44.793][C][wifi:908]: Signal strength: -45 dB ▂▄▆█
[20:34:44.793][C][wifi:908]: Channel: 6
[20:34:44.793][C][wifi:908]: Subnet: 255.255.255.0
[20:34:44.793][C][wifi:908]: Gateway: 192.168.100.1
[20:34:44.793][C][wifi:908]: DNS1: 192.168.100.1
[20:34:44.793][C][wifi:908]: DNS2: 0.0.0.0
[20:34:44.794][C][esphome.ota:092]: Over-The-Air updates:
[20:34:44.794][C][esphome.ota:092]: Address: hologramas.local:3232
[20:34:44.794][C][esphome.ota:092]: Version: 2
[20:34:44.795][C][esphome.ota:099]: Password configured
[20:34:44.814][C][safe_mode:018]: Safe Mode:
[20:34:44.814][C][safe_mode:018]: Successful after: 60s
[20:34:44.814][C][safe_mode:018]: Invoke after: 10 attempts
[20:34:44.814][C][safe_mode:018]: Duration: 300s
[20:34:44.814][W][safe_mode:030]: Last reset too quick; invoke in 8 restarts
[20:34:44.815][C][web_server.ota:241]: Web Server OTA
[20:34:44.839][C][api:211]: Server:
[20:34:44.839][C][api:211]: Address: hologramas.local:6053
[20:34:44.839][C][api:211]: Listen backlog: 4
[20:34:44.839][C][api:211]: Max connections: 8
[20:34:44.840][C][api:218]: Noise encryption: YES
[20:34:44.850][C][wifi_signal.sensor:017]: WiFi Signal 'Señal WiFi HoloRoom (dB)'
[20:34:44.850][C][wifi_signal.sensor:017]: State Class: 'measurement'
[20:34:44.850][C][wifi_signal.sensor:017]: Unit of Measurement: 'dBm'
[20:34:44.850][C][wifi_signal.sensor:017]: Accuracy Decimals: 0
[20:34:44.850][C][wifi_signal.sensor:027]: Device Class: 'signal_strength'
[20:34:44.867][C][mdns:177]: mDNS:
[20:34:44.867][C][mdns:177]: Hostname: hologramas
[20:34:45.482][D][sensor:135]: 'Luz HoloRoom GL5528 (lux)': Sending state 4.00000 lx with 0 decimals of accuracy
[20:34:45.794][D][sensor:135]: 'Luz en HoloRoom (V)': Sending state 0.24200 V with 2 decimals of accuracy
[20:34:47.881][D][sensor:135]: 'Luz en HoloRoom (V)': Sending state 0.23600 V with 2 decimals of accuracy
[20:34:49.800][D][sensor:135]: 'Luz en HoloRoom (V)': Sending state 0.23500 V with 2 decimals of accuracy
[20:34:50.566][D][sensor:135]: 'Luz HoloRoom GL5528 (lux)': Sending state 3.00000 lx with 0 decimals of accuracy
[20:34:51.633][D][binary_sensor:047]: 'Presencia': ON
[20:34:51.633][D][binary_sensor:047]: 'Pres Movimiento': ON
[20:34:51.633][D][binary_sensor:047]: 'Obj. Quieto': ON
[20:34:51.633][D][sensor:135]: 'Movimiento (cm)': Sending state 831.00000 cm with 0 decimals of accuracy
[20:34:51.633][D][sensor:135]: 'Movimiento (%)': Sending state 100.00000 % with 0 decimals of accuracy
[20:34:51.634][D][sensor:135]: 'Detección (cm)': Sending state 831.00000 cm with 0 decimals of accuracy
[20:34:51.805][D][sensor:135]: 'Luz en HoloRoom (V)': Sending state 0.19600 V with 2 decimals of accuracy
[20:34:52.679][D][sensor:135]: 'Movimiento (cm)': Sending state 147.00000 cm with 0 decimals of accuracy
[20:34:52.693][D][sensor:135]: 'Movimiento (%)': Sending state 50.00000 % with 0 decimals of accuracy
[20:34:52.694][D][sensor:135]: 'Detección (cm)': Sending state 147.00000 cm with 0 decimals of accuracy
[20:34:53.822][D][sensor:135]: 'Luz en HoloRoom (V)': Sending state 0.22800 V with 2 decimals of accuracy...
I encountered a similar issue with an LD2410. I solved it by wiring it to 3.3 V instead of 5 V. It might work for your LD2412, too.
1 Like
holograma
(Holograma)
December 28, 2025, 10:28pm
5
Thank you, but is already powered by 3.3v pin
holograma
(Holograma)
January 2, 2026, 3:18pm
6
I found the problem. It was a very “noob one”. The issue was indeed the power. I had it connected to a usb charger with 2A but I was using a usb extender that clearly was not able to draw sufficient power. I changed to a buck converter with good wiring and 0.6A and it has been working properly since.