Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Get Bermuda running on Rev4 Hardware Firmware w/ mWW #57

Open
that1guy opened this issue Oct 29, 2024 · 6 comments
Open

Get Bermuda running on Rev4 Hardware Firmware w/ mWW #57

that1guy opened this issue Oct 29, 2024 · 6 comments
Assignees

Comments

@that1guy
Copy link
Collaborator

Currently Bermuda does not run on Rev3 hardware and our latest Rev4 fw. We suspect this is because of memory management issues, but it should be possible to run both. Below is the older code that successfully ran mWW and Bermuda side-by-side:

substitutions:
  node_name: fph-sat1
  friendly_name: 'FPH Sat1'
  area: 'Media Room'
  wake_word_model: hey_jarvis
  # Phases of the Voice Assistant
  # IDLE: The voice assistant is ready to be triggered by a wake-word
  voice_assist_idle_phase_id: '1'
  # LISTENING: The voice assistant is ready to listen to a voice command (after being triggered by the wake word)
  voice_assist_listening_phase_id: '2'
  # THINKING: The voice assistant is currently processing the command
  voice_assist_thinking_phase_id: '3'
  # REPLYING: The voice assistant is replying to the command
  voice_assist_replying_phase_id: '4'
  # NOT_READY: The voice assistant is not ready
  voice_assist_not_ready_phase_id: '10'
  # ERROR: The voice assistant encountered an error
  voice_assist_error_phase_id: '11'
  # MUTED: The voice assistant is muted and will not reply to a wake-word
  voice_assist_muted_phase_id: '12'


globals:
  # Global initialisation variable. Initialized to true and set to false once everything is connected. Only used to have a smooth "plugging" experience
  - id: init_in_progress
    type: bool
    restore_value: no
    initial_value: 'true'
  # Global variable tracking the phase of the voice assistant (defined above). Initialized to not_ready
  - id: voice_assistant_phase
    type: int
    restore_value: no
    initial_value: ${voice_assist_not_ready_phase_id}


external_components:
  - source:
      type: git
      url: https://github.com/gnumpi/esphome_audio
      ref: dev-next
      #type: local
      #path: /Users/siekmann/Privat/Projects/espHome/esphome_audio/esphome/components
    components: [ adf_pipeline, i2s_audio ]


esphome:
  name: ${node_name}
  min_version: 2024.2.0
  platformio_options:
    board_build.flash_mode: dio
    board_upload.maximum_size: 16777216
    #board_build.partitions: "../../../esp32-s3/custom_partitions_16MB.csv"
  on_boot:
    priority: 600
    then:
      # Run the script to refresh the LED status
      # If after 30 seconds, the device is still initializing (It did not yet connect to Home Assistant), turn off the init_in_progress variable and run the script to refresh the LED status
      - delay: 30s
      - if:
          condition:
            lambda: return id(init_in_progress);
          then:
            - lambda: id(init_in_progress) = false;


esp32:
  board: esp32-s3-devkitc-1
  variant: ESP32S3
  flash_size: 16MB
  framework:
    type: esp-idf
    version: recommended
    sdkconfig_options:
      # need to set a s3 compatible board for the adf-sdk to compile
      # board specific code is not used though
      CONFIG_ESP32_S3_BOX_BOARD: "y"
      CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM: "16"
      CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM: "512"
      CONFIG_TCPIP_RECVMBOX_SIZE: "512"

      CONFIG_TCP_SND_BUF_DEFAULT: "65535"
      CONFIG_TCP_WND_DEFAULT: "512000"
      CONFIG_TCP_RECVMBOX_SIZE: "512"

      #CONFIG_LOG_DEFAULT_LEVEL_DEBUG: "y"
      #CONFIG_LOG_DEFAULT_LEVEL: "4"


api:


logger:
  # hardware_uart : USB_CDC
  # level: VERBOSE
  # logs:
  #   micro_wake_word: WARN


psram:
  mode: octal
  speed: 120MHz


ota:
  - platform: esphome


wifi:
  ssid: !secret wifi_ssid
  password: !secret wifi_password


  # Enable fallback hotspot (captive portal) in case wifi connection fails
  ap:
    ssid: "FPH Sat1 Fallback Hotspot"
    password: "NDarYztmiMGL"


captive_portal:


i2s_audio:
  - id: i2s_in
    i2s_lrclk_pin: GPIO16  #WS 
    i2s_bclk_pin: GPIO2 #SCK
  - id: i2s_out
    i2s_lrclk_pin: GPIO6  #LRC 
    i2s_bclk_pin: GPIO7 #BLCK


adf_pipeline:
  - platform: i2s_audio
    type: audio_out
    id: adf_i2s_out
    i2s_audio_id: i2s_out
    i2s_dout_pin: GPIO15
    # sample_rate: 16000
    # bits_per_sample: 16bit
    # channel: left

  - platform: i2s_audio
    type: audio_in
    id: adf_i2s_in
    i2s_audio_id: i2s_in
    i2s_din_pin: GPIO4
    pdm: false
    channel: left
    sample_rate: 16000
    bits_per_sample: 16bit


microphone:
  - platform: adf_pipeline
    id: adf_microphone
    gain_log2: 3
    keep_pipeline_alive: false
    pipeline:
      - adf_i2s_in
      - self


media_player:
  - platform: adf_pipeline
    id: adf_media_player
    name: ${area} Sat1 Media Player
    keep_pipeline_alive: false
    internal: false
    # announcement_audio:
    #   sample_rate: 16000
    #   bits_per_sample: 16
    #   num_channels: 1
    pipeline:
      - self
      # - resampler
      - adf_i2s_out


micro_wake_word:
  model: hey_jarvis
  on_wake_word_detected:
      - media_player.stop:
      - light.turn_on:
          id: led
          effect: "Slow Pulse"
      - voice_assistant.start:
      - media_player.play_media: http://homeassistant.local:8123/local/vad.mp3 #put this .mp3 file in your www directory so it is publically accessible without any authentication.


voice_assistant:
  microphone: adf_microphone
  media_player: adf_media_player

  use_wake_word: false
  #vad_threshold: 3

  noise_suppression_level: 4
  auto_gain: 31dBFS
  volume_multiplier: 4.0

  on_client_connected:
    - lambda: id(init_in_progress) = false;
    - if:
        condition:
          switch.is_on: use_wake_word
        then:
          - micro_wake_word.start:
          - lambda: id(voice_assistant_phase) = ${voice_assist_idle_phase_id};
        else:
          - lambda: id(voice_assistant_phase) = ${voice_assist_muted_phase_id};

  on_client_disconnected:
    - lambda: id(voice_assistant_phase) = ${voice_assist_not_ready_phase_id};
    - voice_assistant.stop
    - micro_wake_word.stop

  on_end:
      then:
        - light.turn_off:
            id: led
        - voice_assistant.stop
        - wait_until:
            not:
              voice_assistant.is_running:
        - if:
            condition:
              switch.is_on: use_wake_word
            then:
              - micro_wake_word.start:
  on_error:
      then:
        - voice_assistant.stop
        - wait_until:
            not:
              voice_assistant.is_running:
        - if:
            condition:
              switch.is_on: use_wake_word
            then:
              - micro_wake_word.start:


switch:
  - platform: template
    name: Enable Voice Assistant
    id: use_wake_word
    optimistic: true
    restore_mode: RESTORE_DEFAULT_ON
    icon: mdi:assistant
    # When the switch is turned on (on Home Assistant):
    # Start the voice assistant component
    # Set the correct phase and run the script to refresh the LED status
    on_turn_on:
      - logger.log: "switch on"
      - if:
          condition:
            lambda: return !id(init_in_progress);
          then:
            - logger.log: "condition 1"
            - lambda: id(voice_assistant_phase) = ${voice_assist_idle_phase_id};
            - voice_assistant.stop
            - delay: 1s
            - if:
                condition:
                  not:
                    - voice_assistant.is_running
                then:
                  - logger.log: "Starting MWW"
                  #- voice_assistant.start_continuous
                  - micro_wake_word.start:
    on_turn_off:
      - if:
          condition:
            lambda: return !id(init_in_progress);
          then:
            - voice_assistant.stop
            - micro_wake_word.stop
            - lambda: id(voice_assistant_phase) = ${voice_assist_muted_phase_id};

  - platform: template
    name: ADF Pipeline Test
    id: adf_pipeline_test_switch
    optimistic: true
    restore_mode: RESTORE_DEFAULT_OFF

    on_turn_off:
      - media_player.stop

    on_turn_on:
      - media_player.play_media: "https://dl.espressif.com/dl/audio/ff-16b-2c-44100hz.mp3"


light:
  - platform: esp32_rmt_led_strip
    rgb_order: GRB
    pin: GPIO48
    num_leds: 1
    rmt_channel: 0
    chipset: WS2812
    name: "Status LED"
    id: led
    disabled_by_default: false
    #entity_category: diagnostic
    icon: mdi:led-on
    default_transition_length: 0s
    effects:
      - pulse:
          name: "Slow Pulse"
          transition_length: 250ms
          update_interval: 250ms
          min_brightness: 50%
          max_brightness: 100%
      - pulse:
          name: "Fast Pulse"
          transition_length: 100ms
          update_interval: 100ms
          min_brightness: 50%
          max_brightness: 100%


#Creates a global hub so that you can track bluetooth low energy devices using your ESP32 node: https://esphome.io/components/esp32_ble_tracker
#We we specify which device to track by using Bermuda in Home Assistant: https://github.com/agittins/bermuda 
esp32_ble_tracker:
  # scan_parameters:
  #   active: true
  #   interval: 1000ms # default 320ms. Time spent per adv channel
  #   window: 900ms # default 30ms. Time spent listening during interval.

bluetooth_proxy:
  active: true

i2c:
  #For Illuminance BH1750 sensor
  - id: bus_a 
    sda: GPIO8
    scl: GPIO3
    scan: true

sensor:
  - platform: dht
    pin: GPIO5
    temperature:
      name: "Room Temperature"
    humidity:
      name: "Room Humidity"
    update_interval: 10s
    
  - platform: bh1750
    i2c_id: bus_a
    name: "Illuminance"
    address: 0x23
    update_interval: 10s

  - platform: ld2410
    moving_distance:
      name: Radar Moving Distance
      id: moving_distance
    still_distance:
      name: Radar Still Distance
      id: still_distance
    moving_energy:
      name: Radar Move Energy
    still_energy:
      name: Radar Still Energy
    detection_distance:
      name: Radar Detection Distance
      id: radar_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

ld2410:
  id: ld2410_radar
  
uart:
  tx_pin: GPIO17
  rx_pin: GPIO18
  baud_rate: 256000
  parity: NONE
  stop_bits: 1

number:
  - platform: ld2410
    timeout:
      name: Radar Timeout
    max_move_distance_gate:
      name: Radar Max Move Distance
    max_still_distance_gate:
      name: Radar Max Still Distance
    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

binary_sensor:
  - platform: ld2410
    has_target:
      name: Radar Target
      id: radar_has_target
    has_moving_target:
      name: Radar Moving Target
    has_still_target:
      name: Radar Still Target
@that1guy
Copy link
Collaborator Author

@formatBCE want to take a stab at this one?

@that1guy
Copy link
Collaborator Author

I have no idea if this is possible (probably not) but could we use the LD2450's bluetooth instead of ESP32?

@formatBCE
Copy link

I have no idea if this is possible (probably not) but could we use the LD2450's bluetooth instead of ESP32?

Unfortunately, 2410/2450 don't expose Bluetooth to ESPHome. UART on both is too convoluted to hold additional data, even if former wasn't true...

@formatBCE
Copy link

formatBCE commented Dec 13, 2024

Here's log, when i said the wake word shortly after reboot (scroll to the end, there's crash):

[08:57:12][D][binary_sensor:036]: 'Moving Target': Sending state ON
[08:57:12][D][sensor:094]: 'Moving Distance': Sending state 91.00000 cm with 0 decimals of accuracy
[08:57:12][D][sensor:094]: 'Moving Energy': Sending state 58.00000 % with 0 decimals of accuracy
[08:57:12][D][sensor:094]: 'Still Distance': Sending state 150.00000 cm with 0 decimals of accuracy
[08:57:12][D][sensor:094]: 'Detection Distance': Sending state 166.00000 cm with 0 decimals of accuracy
[08:57:12][D][sensor:094]: 'Heap Fre[D][sensor:094]: 'Moving Distance': Sending state 104.00000 cm with 0 decimals of accuracy
[08:57:12][D][sensor:094]: 'Moving Energy': Sending state 0.00000 % with 0 decimals of accuracy
[08:57:12][D][sensor:094]: 'Still Distance': Sending state 104.00000 cm with 0 decimals of accuracy
[08:57:12][D][sensor:094]: 'Detection Distance': Sending state 95.00000 cm with 0 decimals of accuracy
[08:57:12][D][sensor:094]: 'Detection Distance': Sending state 94.00000 cm with 0 decimals of accuracy
[08:57:13][D][binary_sensor:036]: 'Moving Target': Sending state ON
[08:57:13][D][sensor:094]: 'Moving Distance': Sending state 150.00000 cm with 0 decimals of accuracy
[08:57:13][D][sensor:094]: 'Moving Energy': Sending state 47.00000 % with 0 decimals of accuracy
[08:57:13][D][sensor:094]: 'Still Distance': Sending state 175.00000 cm with 0 decimals of accuracy
[08:57:13][D][sensor:094]: 'Detection Distance': Sending state 99.00000 cm with 0 decimals of accuracy
[08:57:14][D][sensor:094]: 'Moving Distance': Sending state 0.00000 cm with 0 decimals of accuracy
[08:57:14][D][sensor:094]: 'Moving Energy': Sending state 48.00000 % with 0 decimals of accuracy
[08:57:14][D][sensor:094]: 'Still Distance': Sending state 150.00000 cm with 0 decimals of accuracy
[08:57:14][D][sensor:094]: 'Detection Distance': Sending state 68.00000 cm with 0 decimals of accuracy
[08:57:15][D][sensor:094]: 'Heap Free': Sending state 25684.00000 B with 0 decimals of accuracy
[08:57:15][D][sensor:094]: 'Loop Time': Sending state 37.00000 ms with 0 decimals of accuracy
[08:57:15][D][sensor:094]: 'Heap Max Block': Sending state 12800.00000 B with 0 decimals of accuracy
[08:57:15][D][sensor:094]: 'Free PSRAM': Sending state 8152575.00000 B with 0 decimals of accuracy
[08:57:15][D][sensor:094]: 'Moving Distance': Sending state 225.00000 cm with 0 decimals of accuracy
[08:57:15][D][sensor:094]: 'Moving Energy': Sending state 92.00000 % with 0 decimals of accuracy
[08:57:15][D][sensor:094]: 'Still Distance': Sending state 300.00000 cm with 0 decimals of accuracy
[08:57:15][D][sensor:094]: 'Detection Distance': Sending state 181.00000 cm with 0 decimals of accuracy
[08:57:16][D][binary_sensor:036]: 'Moving Target': Sending state OFF
[08:57:16][D][sensor:094]: 'Moving Distance': Sending state 215.00000 cm with 0 decimals of accuracy
[08:57:16][D][sensor:094]: 'Moving Energy': Sending state 0.00000 % with 0 decimals of accuracy
[08:57:16][D][sensor:094]: 'Still Distance': Sending state 215.00000 cm with 0 decimals of accuracy
[08:57:16][D][sensor:094]: 'Detection Distance': Sending state 185.00000 cm with 0 decimals of accuracy
[08:57:17][D][sensor:094]: 'Moving Distance': Sending state 86.00000 cm with 0 decimals of accuracy
[08:57:17][D][sensor:094]: 'Moving Energy': Sending state 100.00000 % with 0 decimals of accuracy
[08:57:17][D][sensor:094]: 'Still Distance': Sending state 300.00000 cm with 0 decimals of accuracy
[08:57:17][D][sensor:094]: 'Detection Distance': Sending state 148.00000 cm with 0 decimals of accuracy
[08:57:18][D][micro_wake_word:357]: Detected 'Hey Jarvis' with sliding average probability is 0.98 and max probability is 1.00
[08:57:18][D][media_player:080]: 'Sat1 Media Player' - Setting
[08:57:18][D][media_player:084]:   Command: STOP
[08:57:18][D][media_player:093]:  Announcement: yes
[08:57:18][D][media_player:080]: 'Sat1 Media Player' - Setting
[08:57:18][D][media_player:093]:  Announcement: yes
[08:57:18][D][ring_buffer:034]: Created ring buffer with size 48000
[08:57:18][D][ring_buffer:034]: Created ring buffer with size 48000
[08:57:18][D][ring_buffer:034]: Created ring buffer with size 65536
[08:57:18][D][ring_buffer:034]: Created ring buffer with size 65536
[08:57:18][D][nabu_media_player.pipeline:174]: Reading FLAC file type
[08:57:18][D][nabu_media_player.pipeline:186]: Decoded audio has 1 channels, 48000 Hz sample rate, and 16 bits per sample
[08:57:18][D][nabu_media_player.pipeline:211]: Converting mono channel audio to stereo channel audio
[08:57:18][D][ring_buffer:034][speaker_task]: Created ring buffer with size 16384
[08:57:18][D][i2s_audio:067][speaker_task]: Install driver requested by Writer
[08:57:18][D][i2s_audio.speaker:109]: Starting Speaker
[08:57:18][D][i2s_audio.speaker:114]: Started Speaker
[08:57:18][D][voice_assistant:516]: State changed from IDLE to START_MICROPHONE
[08:57:18][D][voice_assistant:522]: Desired state set to START_PIPELINE
[08:57:18][D][voice_assistant:225]: Starting Microphone
[08:57:18][D][ring_buffer:034]: Created ring buffer with size 16384
[08:57:18][D][voice_assistant:516]: State changed from START_MICROPHONE to STARTING_MICROPHONE
[08:57:18][D][voice_assistant:516]: State changed from STARTING_MICROPHONE to START_PIPELINE
[08:57:18][D][voice_assistant:280]: Requesting start...
[08:57:18][D][voice_assistant:516]: State changed from START_PIPELINE to STARTING_PIPELINE
[08:57:18][D][sensor:094]: 'Moving Distance': Sending state 78.00000 cm with 0 decimals of accuracy
[08:57:18][D][sensor:094]: 'Moving Energy': Sending state 80.00000 % with 0 decimals of accuracy
[08:57:18][D][sensor:094]: 'Still Distance': Sending state 224.00000 cm with 0 decimals of accuracy
[08:57:18][D][sensor:094]: 'Detection Distance': Sending state 207.00000 cm with 0 decimals of accuracy
[08:57:19][D][i2s_audio:124][speaker_task]: Other component hasn't released
[08:57:19][D][i2s_audio.speaker:121]: Stopping Speaker
[08:57:19][D][i2s_audio.speaker:127]: Stopped Speaker
[08:57:19][D][esp-idf:000][wifi]: W (87884) wifi:
[08:57:19][D][esp-idf:000][wifi]: m f null
[08:57:19]
[08:57:19][D][esp-idf:000][wifi]: 
[08:57:19]
[08:57:19][D][binary_sensor:036]: 'Moving Target': Sending state ON
[08:57:19][D][sensor:094]: 'Moving Distance': Sending state 83.00000 cm with 0 decimals of accuracy
[08:57:19][D][sensor:094]: 'Moving Energy': Sending state 75.00000 % with 0 decimals of accuracy
[08:57:19][D][sensor:094]: 'Still Distance': Sending state 79.00000 cm with 0 decimals of accuracy
[08:57:19][D][sensor:094]: 'Detection Distance': Sending state 118.00000 cm with 0 decimals of accuracy
[08:57:20][D][sensor:094]: 'Heap Free': Sending state 1968.00000 B with 0 decimals of accuracy
[08:57:20][D][sensor:094]: 'Loop Time': Sending state 33.00000 ms with 0 decimals of accuracy
[08:57:20][D][sensor:094]: 'Heap Max Block': Sending state 1024.00000 B with 0 decimals of accuracy
[08:57:20][D][sensor:094]: 'Free PSRAM': Sending state 7857859.00000 B with 0 decimals of accuracy
[08:57:20][D][binary_sensor:036]: 'Moving Target': Sending state OFF
[08:57:20][D][sensor:094]: 'Moving Distance': Sending state 215.00000 cm with 0 decimals of accuracy
[08:57:20][D][sensor:094]: 'Moving Energy': Sending state 85.00000 % with 0 decimals of accuracy
[08:57:20][D][sensor:094]: 'Still Distance': Sending state 450.00000 cm with 0 decimals of accuracy
[08:57:20][D][sensor:094]: 'Detection Distance': Sending state 200.00000 cm with 0 decimals of accuracy
[08:57:21][D][esp-idf:000][wifi]: W (89938) wifi:
[08:57:21][D][esp-idf:000][wifi]: m f null
[08:57:21]
[08:57:21][D][esp-idf:000][wifi]: 
[08:57:21]
[08:57:21][D][esp-idf:000][wifi]: W (90040) wifi:
[08:57:21][D][esp-idf:000][wifi]: m f null
[08:57:21]
[08:57:21][D][esp-idf:000][wifi]: 
[08:57:21]
[08:57:21][D][esp-idf:000][wifi]: W (90142) wifi:
[08:57:21][D][esp-idf:000][wifi]: m f null
[08:57:21]
[08:57:21][D][esp-idf:000][wifi]: 
[08:57:21]
[08:57:21][D][sensor:094]: 'Moving Distance': Sending state 220.00000 cm with 0 decimals of accuracy
[08:57:21][D][sensor:094]: 'Moving Energy': Sending state 0.00000 % with 0 decimals of accuracy
[08:57:21][D][sensor:094]: 'Still Distance': Sending state 220.00000 cm with 0 decimals of accuracy
[08:57:21][D][sensor:094]: 'Detection Distance': Sending state 187.00000 cm with 0 decimals of accuracy
[08:57:22][D][esp-idf:000][wifi]: W (90245) wifi:
[08:57:22][D][esp-idf:000][wifi]: m f null
[08:57:22]
[08:57:22][D][esp-idf:000][wifi]: 
[08:57:22]
[08:57:22][D][esp-idf:000][wifi]: W (90347) wifi:
[08:57:22][D][esp-idf:000][wifi]: m f null
[08:57:22]
[08:57:22][D][esp-idf:000][wifi]: 
[08:57:22]
[08:57:22][D][esp-idf:000][wifi]: W (90449) wifi:
[08:57:22][D][esp-idf:000][wifi]: m f null
[08:57:22]
[08:57:22][D][esp-idf:000][wifi]: 
[08:57:22]
[08:57:22][D][esp-idf:000][wifi]: W (90551) wifi:
[08:57:22][D][esp-idf:000][wifi]: m f null
[08:57:22]
[08:57:22][D][esp-idf:000][wifi]: 
[08:57:22]
[08:57:22][D][esp-idf:000][wifi]: W (90654) wifi:
[08:57:22][D][esp-idf:000][wifi]: m f null
[08:57:22]
[08:57:22][D][esp-idf:000][wifi]: 
[08:57:22]
[08:57:22][D][esp-idf:000][wifi]: W (90756) wifi:
[08:57:22][D][esp-idf:000][wifi]: m f null
[08:57:22]
[08:57:22][D][esp-idf:000][wifi]: 
[08:57:22]
[08:57:22][D][esp-idf:000][wifi]: W (90858) wifi:
[08:57:22][D][esp-idf:000][wifi]: m f null
[08:57:22]
[08:57:22][D][esp-idf:000][wifi]: 
[08:57:22]
[08:57:22][D][esp-idf:000][wifi]: W (90961) wifi:
[08:57:22][D][esp-idf:000][wifi]: m f null
[08:57:22]
[08:57:22][D][esp-idf:000][wifi]: 
[08:57:22]
[08:57:22][D][esp-idf:000][wifi]: W (91063) wifi:
[08:57:22][D][esp-idf:000][wifi]: m f null
[08:57:22]
[08:57:22][D][esp-idf:000][wifi]: 
[08:57:22]
[08:57:22][D][sensor:094]: 'Detection Distance': Sending state 193.00000 cm with 0 decimals of accuracy
[08:57:22][D][esp-idf:000][wifi]: W (91165) wifi:
[08:57:22][D][esp-idf:000][wifi]: m f null
[08:57:22]
[08:57:22][D][esp-idf:000][wifi]: 
[08:57:22]
[08:57:23][D][esp-idf:000][wifi]: W (91269) wifi:
[08:57:23][D][esp-idf:000][wifi]: m f null
[08:57:23]
[08:57:23][D][esp-idf:000][wifi]: 
[08:57:23]
[08:57:23][D][esp-idf:000][wifi]: W (91370) wifi:
[08:57:23][D][esp-idf:000][wifi]: m f null
[08:57:23]
[08:57:23][D][esp-idf:000][wifi]: 
[08:57:23]
[08:57:23][D][esp-idf:000][wifi]: W (91474) wifi:
[08:57:23][D][esp-idf:000][wifi]: m f null
[08:57:23]
[08:57:23][D][esp-idf:000][wifi]: 
[08:57:23]
[08:57:23][D][esp-idf:000][wifi]: W (91576) wifi:
[08:57:23][D][esp-idf:000][wifi]: m f null
[08:57:23]
[08:57:23][D][esp-idf:000][wifi]: 
[08:57:23]
[08:57:23][D][esp-idf:000][wifi]: W (91678) wifi:
[08:57:23][D][esp-idf:000][wifi]: m f null
[08:57:23]
[08:57:23][D][esp-idf:000][wifi]: 
[08:57:23]
[08:57:23][D][esp-idf:000][wifi]: W (91780) wifi:
[08:57:23][D][esp-idf:000][wifi]: m f null
[08:57:23]
[08:57:23][D][esp-idf:000][wifi]: 
[08:57:23]
[08:57:23][D][esp-idf:000][wifi]: W (91882) wifi:
[08:57:23][D][esp-idf:000][wifi]: m f null
[08:57:23]
[08:57:23][D][esp-idf:000][wifi]: 
[08:57:23]
[08:57:23][D][esp-idf:000][wifi]: W (91985) wifi:
[08:57:23][D][esp-idf:000][wifi]: m f null
[08:57:23]
[08:57:23][D][esp-idf:000][wifi]: 
[08:57:23]
[08:57:23][D][esp-idf:000][wifi]: W (92087) wifi:
[08:57:23][D][esp-idf:000][wifi]: m f null
[08:57:23]
[08:57:23][D][esp-idf:000][wifi]: 
[08:57:23]
[08:57:23][D][sensor:094]: 'Moving Distance': Sending state 215.00000 cm with 0 decimals of accuracy
[08:57:23][D][sensor:094]: 'Still Distance': Sending state 198.00000 cm with 0 decimals of accuracy
[08:57:23][D][sensor:094]: 'Detection Distance': Sending state 173.00000 cm with 0 decimals of accuracy
[08:57:23][D][esp-idf:000][wifi]: W (92189) wifi:
[08:57:23][D][esp-idf:000][wifi]: m f null
[08:57:23]
[08:57:23][D][esp-idf:000][wifi]: 
[08:57:23]
[08:57:24][D][esp-idf:000][wifi]: W (92291) wifi:
[08:57:24][D][esp-idf:000][wifi]: m f null
[08:57:24]
[08:57:24][D][esp-idf:000][wifi]: 
[08:57:24]
[08:57:24][D][esp-idf:000][wifi]: W (92394) wifi:
[08:57:24][D][esp-idf:000][wifi]: m f null
[08:57:24]
[08:57:24][D][esp-idf:000][wifi]: 
[08:57:24]
[08:57:24][D][esp-idf:000][wifi]: W (92496) wifi:
[08:57:24][D][esp-idf:000][wifi]: m f null
[08:57:24]
[08:57:24][D][esp-idf:000][wifi]: 
[08:57:24]
[08:57:24][D][esp-idf:000][wifi]: W (92599) wifi:
[08:57:24][D][esp-idf:000][wifi]: m f null
[08:57:24]
[08:57:24][D][esp-idf:000][wifi]: 
[08:57:24]
[08:57:24][D][esp-idf:000][wifi]: W (92702) wifi:
[08:57:24][D][esp-idf:000][wifi]: m f null
[08:57:24]
[08:57:24][D][esp-idf:000][wifi]: 
[08:57:24]
[08:57:24][D][esp-idf:000][wifi]: W (92804) wifi:
[08:57:24][D][esp-idf:000][wifi]: m f null
[08:57:24]
[08:57:24][D][esp-idf:000][wifi]: 
[08:57:24]
[08:57:24][D][esp-idf:000][wifi]: W (92906) wifi:
[08:57:24][D][esp-idf:000][wifi]: m f null
[08:57:24]
[08:57:24][D][esp-idf:000][wifi]: 
[08:57:24]
[08:57:24][D][sensor:094]: 'Temperature': Sending state 25.95164 °C with 2 decimals of accuracy
[08:57:24][D][sensor:094]: 'Humidity': Sending state 37.28064 % with 2 decimals of accuracy
[08:57:24][D][esp-idf:000][wifi]: W (93007) wifi:
[08:57:24][D][esp-idf:000][wifi]: m f null
[08:57:24]
[08:57:24][D][esp-idf:000][wifi]: 
[08:57:24]
[08:57:24][D][esp-idf:000][wifi]: W (93110) wifi:
[08:57:24][D][esp-idf:000][wifi]: m f null
[08:57:24]
[08:57:24][D][esp-idf:000][wifi]: 
[08:57:24]
[08:57:25][D][esp-idf:000][wifi]: W (93214) wifi:
[08:57:25][D][esp-idf:000][wifi]: m f null
[08:57:25]
[08:57:25][D][esp-idf:000][wifi]: 
[08:57:25]
[08:57:25][D][sensor:094]: 'Moving Distance': Sending state 223.00000 cm with 0 decimals of accuracy
[08:57:25][D][sensor:094]: 'Still Distance': Sending state 200.00000 cm with 0 decimals of accuracy
[08:57:25][D][sensor:094]: 'Detection Distance': Sending state 180.00000 cm with 0 decimals of accuracy
[08:57:25][D][esp-idf:000][wifi]: W (93314) wifi:
[08:57:25][D][esp-idf:000][wifi]: m f null
[08:57:25]
[08:57:25][D][esp-idf:000][wifi]: 
[08:57:25]
[08:57:25][D][sensor:094]: 'Heap Free': Sending state 1936.00000 B with 0 decimals of accuracy
[08:57:25][D][sensor:094]: 'Loop Time': Sending state 32.00000 ms with 0 decimals of accuracy
[08:57:25][D][sensor:094]: 'Heap Max Block': Sending state 1024.00000 B with 0 decimals of accuracy
[08:57:25][D][sensor:094]: 'Free PSRAM': Sending state 7857859.00000 B with 0 decimals of accuracy
[08:57:25][D][esp-idf:000][wifi]: W (93419) wifi:
[08:57:25][D][esp-idf:000][wifi]: m f null
[08:57:25]
[08:57:25][D][esp-idf:000][wifi]: 
[08:57:25]
[08:57:25][D][esp-idf:000][wifi]: W (93520) wifi:
[08:57:25][D][esp-idf:000][wifi]: m f null
[08:57:25]
[08:57:25][D][esp-idf:000][wifi]: 
[08:57:25]
[08:57:25][D][esp-idf:000][wifi]: W (93621) wifi:
[08:57:25][D][esp-idf:000][wifi]: m f null
[08:57:25]
[08:57:25][D][esp-idf:000][wifi]: 
[08:57:25]
[08:57:25][D][esp-idf:000][wifi]: W (93726) wifi:
[08:57:25][D][esp-idf:000][wifi]: m f null
[08:57:25]
[08:57:25][D][esp-idf:000][wifi]: 
[08:57:25]
[08:57:25][D][esp-idf:000][wifi]: W (93826) wifi:
[08:57:25][D][esp-idf:000][wifi]: m f null
[08:57:25]
[08:57:25][D][esp-idf:000][wifi]: 
[08:57:25]
[08:57:25][D][esp-idf:000][wifi]: W (93930) wifi:
[08:57:25][D][esp-idf:000][wifi]: m f null
[08:57:25]
[08:57:25][D][esp-idf:000][wifi]: 
[08:57:25]
[08:57:25][D][esp-idf:000][wifi]: W (94031) wifi:
[08:57:25][D][esp-idf:000][wifi]: m f null
[08:57:25]
[08:57:25][D][esp-idf:000][wifi]: 
[08:57:25]
[08:57:25][D][esp-idf:000][wifi]: W (94133) wifi:
[08:57:25][D][esp-idf:000][wifi]: m f null
[08:57:25]
[08:57:25][D][esp-idf:000][wifi]: 
[08:57:25]
[08:57:26][D][esp-idf:000][wifi]: W (94235) wifi:
[08:57:26][D][esp-idf:000][wifi]: m f null
[08:57:26]
[08:57:26][D][esp-idf:000][wifi]: 
[08:57:26]
[08:57:26][D][esp-idf:000][wifi]: W (94338) wifi:
[08:57:26][D][esp-idf:000][wifi]: m f null
[08:57:26]
[08:57:26][D][esp-idf:000][wifi]: 
[08:57:26]
[08:57:26][D][binary_sensor:036]: 'Moving Target': Sending state ON
[08:57:26][D][sensor:094]: 'Moving Distance': Sending state 220.00000 cm with 0 decimals of accuracy
[08:57:26][D][sensor:094]: 'Moving Energy': Sending state 92.00000 % with 0 decimals of accuracy
[08:57:26][D][sensor:094]: 'Still Distance': Sending state 227.00000 cm with 0 decimals of accuracy
[08:57:26][D][sensor:094]: 'Detection Distance': Sending state 195.00000 cm with 0 decimals of accuracy
[08:57:26][D][esp-idf:000][wifi]: W (94440) wifi:
[08:57:26][D][esp-idf:000][wifi]: m f null
[08:57:26]
[08:57:26][D][esp-idf:000][wifi]: 
[08:57:26]
[08:57:26][D][esp-idf:000][wifi]: W (94543) wifi:
[08:57:26][D][esp-idf:000][wifi]: m f null
[08:57:26]
[08:57:26][D][esp-idf:000][wifi]: 
[08:57:26]
[08:57:26][D][esp-idf:000][wifi]: W (94646) wifi:
[08:57:26][D][esp-idf:000][wifi]: m f null
[08:57:26]
[08:57:26][D][esp-idf:000][wifi]: 
[08:57:26]
[08:57:26][D][esp-idf:000][wifi]: W (94747) wifi:
[08:57:26][D][esp-idf:000][wifi]: m f null
[08:57:26]
[08:57:26][D][esp-idf:000][wifi]: 
[08:57:26]
[08:57:26][D][esp-idf:000][wifi]: W (94849) wifi:
[08:57:26][D][esp-idf:000][wifi]: m f null
[08:57:26]
[08:57:26][D][esp-idf:000][wifi]: 
[08:57:26]
[08:57:26][D][esp-idf:000][wifi]: W (94952) wifi:
[08:57:26][D][esp-idf:000][wifi]: m f null
[08:57:26]
[08:57:26][D][esp-idf:000][wifi]: 
[08:57:26]
[08:57:26][D][esp-idf:000][wifi]: W (95054) wifi:
[08:57:26][D][esp-idf:000][wifi]: m f null
[08:57:26]
[08:57:26][D][esp-idf:000][wifi]: 
[08:57:26]
[08:57:26][D][esp-idf:000][wifi]: W (95156) wifi:
[08:57:26][D][esp-idf:000][wifi]: m f null
[08:57:26]
[08:57:26][D][esp-idf:000][wifi]: 
[08:57:26]
[08:57:27][D][esp-idf:000][wifi]: W (95259) wifi:
[08:57:27][D][esp-idf:000][wifi]: m f null
[08:57:27]
[08:57:27][D][esp-idf:000][wifi]: 
[08:57:27]
[08:57:27][D][esp-idf:000][wifi]: W (95361) wifi:
[08:57:27][D][esp-idf:000][wifi]: m f null
[08:57:27]
[08:57:27][D][esp-idf:000][wifi]: 
[08:57:27]
[08:57:27][D][sensor:094]: 'Moving Distance': Sending state 215.00000 cm with 0 decimals of accuracy
[08:57:27][D][sensor:094]: 'Moving Energy': Sending state 100.00000 % with 0 decimals of accuracy
[08:57:27][D][sensor:094]: 'Still Distance': Sending state 204.00000 cm with 0 decimals of accuracy
[08:57:27][D][sensor:094]: 'Detection Distance': Sending state 213.00000 cm with 0 decimals of accuracy
[08:57:27][D][esp-idf:000][wifi]: W (95463) wifi:
[08:57:27][D][esp-idf:000][wifi]: m f null
[08:57:27]
[08:57:27][D][esp-idf:000][wifi]: 
[08:57:27]
[08:57:27][D][esp-idf:000][wifi]: W (95566) wifi:
[08:57:27][D][esp-idf:000][wifi]: m f null
[08:57:27]
[08:57:27][D][esp-idf:000][wifi]: 
[08:57:27]
[08:57:27][D][esp-idf:000][wifi]: W (95671) wifi:
[08:57:27][D][esp-idf:000][wifi]: m f null
[08:57:27]
[08:57:27][D][esp-idf:000][wifi]: 
[08:57:27]
[08:57:27][D][esp-idf:000][wifi]: W (95771) wifi:
[08:57:27][D][esp-idf:000][wifi]: m f null
[08:57:27]
[08:57:27][D][esp-idf:000][wifi]: 
[08:57:27]
[08:57:27][D][esp-idf:000][wifi]: W (95873) wifi:
[08:57:27][D][esp-idf:000][wifi]: m f null
[08:57:27]
[08:57:27][D][esp-idf:000][wifi]: 
[08:57:27]
[08:57:27][D][esp-idf:000][wifi]: W (95975) wifi:
[08:57:27][D][esp-idf:000][wifi]: m f null
[08:57:27]
[08:57:27][D][esp-idf:000][wifi]: 
[08:57:27]
[08:57:27][D][esp-idf:000][wifi]: W (96077) wifi:
[08:57:27][D][esp-idf:000][wifi]: m f null
[08:57:27]
[08:57:27][D][esp-idf:000][wifi]: 
[08:57:27]
[08:57:27][D][esp-idf:000][wifi]: W (96180) wifi:
[08:57:27][D][esp-idf:000][wifi]: m f null
[08:57:27]
[08:57:27][D][esp-idf:000][wifi]: 
[08:57:27]
[08:57:28][D][esp-idf:000][wifi]: W (96282) wifi:
[08:57:28][D][esp-idf:000][wifi]: m f null
[08:57:28]
[08:57:28][D][esp-idf:000][wifi]: 
[08:57:28]
[08:57:28][D][esp-idf:000][wifi]: W (96387) wifi:
[08:57:28][D][esp-idf:000][wifi]: m f null
[08:57:28]
[08:57:28][D][esp-idf:000][wifi]: 
[08:57:28]
[08:57:28][D][sensor:094]: 'Moving Distance': Sending state 223.00000 cm with 0 decimals of accuracy
[08:57:28][D][sensor:094]: 'Moving Energy': Sending state 85.00000 % with 0 decimals of accuracy
[08:57:28][D][sensor:094]: 'Still Distance': Sending state 219.00000 cm with 0 decimals of accuracy
[08:57:28][D][sensor:094]: 'Detection Distance': Sending state 206.00000 cm with 0 decimals of accuracy
[08:57:28][D][esp-idf:000][wifi]: W (96487) wifi:
[08:57:28][D][esp-idf:000][wifi]: m f null
[08:57:28]
[08:57:28][D][esp-idf:000][wifi]: 
[08:57:28]
[08:57:28][D][api.connection:147]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 1 time(s), will retry in 1000 ms
[08:57:28][D][esp-idf:000][wifi]: W (96589) wifi:
[08:57:28][D][esp-idf:000][wifi]: m f null
[08:57:28]
[08:57:28][D][esp-idf:000][wifi]: 
[08:57:28]
[08:57:28][D][esp-idf:000][wifi]: W (96691) wifi:
[08:57:28][D][esp-idf:000][wifi]: m f null
[08:57:28]
[08:57:28][D][esp-idf:000][wifi]: 
[08:57:28]
[08:57:28][D][esp-idf:000][wifi]: W (96794) wifi:
[08:57:28][D][esp-idf:000][wifi]: m f null
[08:57:28]
[08:57:28][D][esp-idf:000][wifi]: 
[08:57:28]
[08:57:28][D][esp-idf:000][wifi]: W (96896) wifi:
[08:57:28][D][esp-idf:000][wifi]: m f null
[08:57:28]
[08:57:28][D][esp-idf:000][wifi]: 
[08:57:28]
[08:57:28][D][esp-idf:000][wifi]: W (97003) wifi:
[08:57:28][D][esp-idf:000][wifi]: m f null
[08:57:28]
[08:57:28][D][esp-idf:000][wifi]: 
[08:57:28]
[08:57:28][D][esp-idf:000][wifi]: W (97101) wifi:
[08:57:28][D][esp-idf:000][wifi]: m f null
[08:57:28]
[08:57:28][D][esp-idf:000][wifi]: 
[08:57:28]
[08:57:29][D][esp-idf:000][wifi]: W (97204) wifi:
[08:57:29][D][esp-idf:000][wifi]: m f null
[08:57:29]
[08:57:29][D][esp-idf:000][wifi]: 
[08:57:29]
[08:57:29][D][esp-idf:000][wifi]: W (97305) wifi:
[08:57:29][D][esp-idf:000][wifi]: m f null
[08:57:29]
[08:57:29][D][esp-idf:000][wifi]: 
[08:57:29]
[08:57:29][D][esp-idf:000][wifi]: W (97408) wifi:
[08:57:29][D][esp-idf:000][wifi]: m f null
[08:57:29]
[08:57:29][D][esp-idf:000][wifi]: 
[08:57:29]
[08:57:29][D][api.connection:147]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 2 time(s), will retry in 1000 ms
[08:57:29][D][esp-idf:000][wifi]: W (97510) wifi:
[08:57:29][D][esp-idf:000][wifi]: m f null
[08:57:29]
[08:57:29][D][esp-idf:000][wifi]: 
[08:57:29]
[08:57:29][D][sensor:094]: 'Moving Distance': Sending state 220.00000 cm with 0 decimals of accuracy
[08:57:29][D][sensor:094]: 'Moving Energy': Sending state 100.00000 % with 0 decimals of accuracy
[08:57:29][D][esp-idf:000][wifi]: W (97612) wifi:
[08:57:29][D][esp-idf:000][wifi]: m f null
[08:57:29]
[08:57:29][D][esp-idf:000][wifi]: 
[08:57:29]
[08:57:29][D][esp-idf:000][wifi]: W (97716) wifi:
[08:57:29][D][esp-idf:000][wifi]: m f null
[08:57:29]
[08:57:29][D][esp-idf:000][wifi]: 
[08:57:29]
[08:57:29][D][esp-idf:000][wifi]: W (97817) wifi:
[08:57:29][D][esp-idf:000][wifi]: m f null
[08:57:29]
[08:57:29][D][esp-idf:000][wifi]: 
[08:57:29]
[08:57:29][D][esp-idf:000][wifi]: W (97919) wifi:
[08:57:29][D][esp-idf:000][wifi]: m f null
[08:57:29]
[08:57:29][D][esp-idf:000][wifi]: 
[08:57:29]
[08:57:29][D][ltr_als_ps:185]: Reconfiguring sensitivity: gain = 1x, time = 100 ms
[08:57:29][D][esp-idf:000][wifi]: W (98024) wifi:
[08:57:29][D][esp-idf:000][wifi]: m f null
[08:57:29]
[08:57:29][D][esp-idf:000][wifi]: 
[08:57:29]
[08:57:29][D][esp-idf:000][wifi]: W (98134) wifi:
[08:57:29][D][esp-idf:000][wifi]: m f null
[08:57:29]
[08:57:29][D][esp-idf:000][wifi]: 
[08:57:29]
[08:57:30][D][esp-idf:000][wifi]: W (98228) wifi:
[08:57:30][D][esp-idf:000][wifi]: m f null
[08:57:30]
[08:57:30][D][esp-idf:000][wifi]: 
[08:57:30]
[08:57:30][D][esp-idf:000][wifi]: W (98329) wifi:
[08:57:30][D][esp-idf:000][wifi]: m f null
[08:57:30]
[08:57:30][D][esp-idf:000][wifi]: 
[08:57:30]
[08:57:30][D][sensor:094]: 'Heap Free': Sending state 1872.00000 B with 0 decimals of accuracy
[08:57:30][D][sensor:094]: 'Loop Time': Sending state 27.00000 ms with 0 decimals of accuracy
[08:57:30][D][sensor:094]: 'Heap Max Block': Sending state 1024.00000 B with 0 decimals of accuracy
[08:57:30][D][sensor:094]: 'Free PSRAM': Sending state 7857859.00000 B with 0 decimals of accuracy
[08:57:30][D][esp-idf:000][wifi]: W (98431) wifi:
[08:57:30][D][esp-idf:000][wifi]: m f null
[08:57:30]
[08:57:30][D][esp-idf:000][wifi]: 
[08:57:30]
[08:57:30][D][api.connection:147]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 3 time(s), will retry in 1000 ms
[08:57:30][D][esp-idf:000][wifi]: W (98533) wifi:
[08:57:30][D][esp-idf:000][wifi]: m f null
[08:57:30]
[08:57:30][D][esp-idf:000][wifi]: 
[08:57:30]
[08:57:30][D][esp-idf:000][wifi]: W (98636) wifi:
[08:57:30][D][esp-idf:000][wifi]: m f null
[08:57:30]
[08:57:30][D][esp-idf:000][wifi]: 
[08:57:30]
[08:57:30][D][binary_sensor:036]: 'Moving Target': Sending state OFF
[08:57:30][D][sensor:094]: 'Moving Distance': Sending state 300.00000 cm with 0 decimals of accuracy
[08:57:30][D][sensor:094]: 'Moving Energy': Sending state 50.00000 % with 0 decimals of accuracy
[08:57:30][D][sensor:094]: 'Still Distance': Sending state 223.00000 cm with 0 decimals of accuracy
[08:57:30][D][sensor:094]: 'Detection Distance': Sending state 192.00000 cm with 0 decimals of accuracy
[08:57:30][D][esp-idf:000][wifi]: W (98740) wifi:
[08:57:30][D][esp-idf:000][wifi]: m f null
[08:57:30]
[08:57:30][D][esp-idf:000][wifi]: 
[08:57:30]
[08:57:30][D][esp-idf:000][wifi]: W (98841) wifi:
[08:57:30][D][esp-idf:000][wifi]: m f null
[08:57:30]
[08:57:30][D][esp-idf:000][wifi]: 
[08:57:30][0m
[08:57:30][D][esp-idf:000][wifi]: W (98943) wifi:
[08:57:30][D][esp-idf:000][wifi]: m f null
[08:57:30]
[08:57:30][D][esp-idf:000][wifi]: 
[08:57:30]
[08:57:30][D][ltr_als_ps:185]: Reconfiguring sensitivity: gain = 2x, time = 100 ms
[08:57:30][D][esp-idf:000][wifi]: W (99045) wifi:
[08:57:30][D][esp-idf:000][wifi]: m f null
[08:57:30]
[08:57:30][D][esp-idf:000][wifi]: 
[08:57:30]
[08:57:30][D][esp-idf:000][wifi]: W (99148) wifi:
[08:57:30][D][esp-idf:000][wifi]: m f null
[08:57:30]
[08:57:30][D][esp-idf:000][wifi]: 
[08:57:30]
[08:57:31][D][esp-idf:000][wifi]: W (99250) wifi:
[08:57:31][D][esp-idf:000][wifi]: m f null
[08:57:31]
[08:57:31][D][esp-idf:000][wifi]: 
[08:57:31]
[08:57:31][D][esp-idf:000][wifi]: W (99352) wifi:
[08:57:31][D][esp-idf:000][wifi]: m f null
[08:57:31]
[08:57:31][D][esp-idf:000][wifi]: 
[08:57:31]
[08:57:31][D][esp-idf:000][wifi]: W (99454) wifi:
[08:57:31][D][esp-idf:000][wifi]: m f null
[08:57:31]
[08:57:31][D][esp-idf:000][wifi]: 
[08:57:31]
[08:57:31][D][api.connection:147]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 4 time(s), will retry in 1000 ms
[08:57:31][D][esp-idf:000][wifi]: W (99557) wifi:
[08:57:31][D][esp-idf:000][wifi]: m f null
[08:57:31]
[08:57:31][D][esp-idf:000][wifi]: 
[08:57:31]
[08:57:31][D][sensor:094]: 'Moving Energy': Sending state 0.00000 % with 0 decimals of accuracy
[08:57:31][D][sensor:094]: 'Detection Distance': Sending state 204.00000 cm with 0 decimals of accuracy
[08:57:31][D][esp-idf:000][wifi]: W (99660) wifi:
[08:57:31][D][esp-idf:000][wifi]: m f null
[08:57:31]
[08:57:31][D][esp-idf:000][wifi]: 
[08:57:31]
[08:57:31][D][esp-idf:000][wifi]: W (99761) wifi:
[08:57:31][D][esp-idf:000][wifi]: m f null
[08:57:31]
[08:57:31][D][esp-idf:000][wifi]: 
[08:57:31]
[08:57:31][D][esp-idf:000][wifi]: W (99864) wifi:
[08:57:31][D][esp-idf:000][wifi]: m f null
[08:57:31]
[08:57:31][D][esp-idf:000][wifi]: 
[08:57:31]
[08:57:31][D][esp-idf:000][wifi]: W (99967) wifi:
[08:57:31][D][esp-idf:000][wifi]: m f null
[08:57:31]
[08:57:31][D][esp-idf:000][wifi]: 
[08:57:31]
[08:57:31][D][ltr_als_ps:185]: Reconfiguring sensitivity: gain = 4x, time = 100 ms
[08:57:31][D][esp-idf:000][wifi]: W (100068) wifi:
[08:57:31][D][esp-idf:000][wifi]: m f null
[08:57:31]
[08:57:31][D][esp-idf:000][wifi]: 
[08:57:31]
[08:57:31][D][esp-idf:000][wifi]: W (100171) wifi:
[08:57:31][D][esp-idf:000][wifi]: m f null
[08:57:31]
[08:57:31][D][esp-idf:000][wifi]: 
[08:57:31]
[08:57:32][D][esp-idf:000][wifi]: W (100274) wifi:
[08:57:32][D][esp-idf:000][wifi]: m f null
[08:57:32]
[08:57:32][D][esp-idf:000][wifi]: 
[08:57:32]
[08:57:32][D][esp-idf:000][wifi]: W (100376) wifi:
[08:57:32][D][esp-idf:000][wifi]: m f null
[08:57:32]
[08:57:32][D][esp-idf:000][wifi]: 
[08:57:32]
[08:57:32][D][esp-idf:000][wifi]: W (100479) wifi:
[08:57:32][D][esp-idf:000][wifi]: m f null
[08:57:32]
[08:57:32][D][esp-idf:000][wifi]: 
[08:57:32]
[08:57:32][D][api.connection:147]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 5 time(s), will retry in 1000 ms
[08:57:32][D][esp-idf:000][wifi]: W (100580) wifi:
[08:57:32][D][esp-idf:000][wifi]: m f null
[08:57:32]
[08:57:32][D][esp-idf:000][wifi]: 
[08:57:32]
[08:57:32][D][sensor:094]: 'Detection Distance': Sending state 206.00000 cm with 0 decimals of accuracy
[08:57:32][D][esp-idf:000][wifi]: W (100682) wifi:
[08:57:32][D][esp-idf:000][wifi]: m f null
[08:57:32]
[08:57:32][D][esp-idf:000][wifi]: 
[08:57:32]
[08:57:32][D][esp-idf:000][wifi]: W (100786) wifi:
[08:57:32][D][esp-idf:000][wifi]: m f null
[08:57:32]
[08:57:32][D][esp-idf:000][wifi]: 
[08:57:32]
[08:57:32][D][esp-idf:000][wifi]: W (100888) wifi:
[08:57:32][D][esp-idf:000][wifi]: m f null
[08:57:32]
[08:57:32][D][esp-idf:000][wifi]: 
[08:57:32]
[08:57:32][D][ltr_als_ps:185]: Reconfiguring sensitivity: gain = 8x, time = 100 ms
[08:57:32][D][esp-idf:000][wifi]: W (101092) wifi:
[08:57:32][D][esp-idf:000][wifi]: m f null
[08:57:32]
[08:57:32][D][esp-idf:000][wifi]: 
[08:57:32]
[08:57:32][D][esp-idf:000][wifi]: W (101194) wifi:
[08:57:32][D][esp-idf:000][wifi]: m f null
[08:57:33]
[08:57:33][D][esp-idf:000][wifi]: 
[08:57:33]
[08:57:33][D][esp-idf:000][wifi]: W (101298) wifi:
[08:57:33][D][esp-idf:000][wifi]: m f null
[08:57:33]
[08:57:33][D][esp-idf:000][wifi]: 
[08:57:33]
[08:57:33][D][esp-idf:000][wifi]: W (101399) wifi:
[08:57:33][D][esp-idf:000][wifi]: m f null
[08:57:33]
[08:57:33][D][esp-idf:000][wifi]: 
[08:57:33]
[08:57:33][D][esp-idf:000][wifi]: W (101504) wifi:
[08:57:33][D][esp-idf:000][wifi]: m f null
[08:57:33]
[08:57:33][D][esp-idf:000][wifi]: 
[08:57:33]
[08:57:33][D][api.connection:147]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 6 time(s), will retry in 1000 ms
[08:57:33][D][esp-idf:000][wifi]: W (101605) wifi:
[08:57:33][D][esp-idf:000][wifi]: m f null
[08:57:33]
[08:57:33][D][esp-idf:000][wifi]: 
[08:57:33]
[08:57:33][D][esp-idf:000][wifi]: W (101709) wifi:
[08:57:33][D][esp-idf:000][wifi]: m f null
[08:57:33]
[08:57:33][D][esp-idf:000][wifi]: 
[08:57:33]
[08:57:33][D][esp-idf:000][wifi]: W (101810) wifi:
[08:57:33][D][esp-idf:000][wifi]: m f null
[08:57:33]
[08:57:33][D][esp-idf:000][wifi]: 
[08:57:33]
[08:57:33][D][esp-idf:000][wifi]: W (101913) wifi:
[08:57:33][D][esp-idf:000][wifi]: m f null
[08:57:33]
[08:57:33][D][esp-idf:000][wifi]: 
[08:57:33]
[08:57:33][D][esp-idf:000][wifi]: W (102013) wifi:
[08:57:33][D][esp-idf:000][wifi]: m f null
[08:57:33]
[08:57:33][D][esp-idf:000][wifi]: 
[08:57:33][0m
[08:57:33][D][ltr_als_ps:185]: Reconfiguring sensitivity: gain = 48x, time = 100 ms
[08:57:33][D][esp-idf:000][wifi]: W (102115) wifi:
[08:57:33][D][esp-idf:000][wifi]: m f null
[08:57:33]
[08:57:33][D][esp-idf:000][wifi]: 
[08:57:33]
[08:57:34][D][esp-idf:000][wifi]: W (102217) wifi:
[08:57:34][D][esp-idf:000][wifi]: m f null
[08:57:34]
[08:57:34][D][esp-idf:000][wifi]: 
[08:57:34]
[08:57:34][D][esp-idf:000][wifi]: W (102320) wifi:
[08:57:34][D][esp-idf:000][wifi]: m f null
[08:57:34]
[08:57:34][D][esp-idf:000][wifi]: 
[08:57:34]
[08:57:34][D][esp-idf:000][wifi]: W (102423) wifi:
[08:57:34][D][esp-idf:000][wifi]: m f null
[08:57:34]
[08:57:34][D][esp-idf:000][wifi]: 
[08:57:34]
[08:57:34][D][api.connection:147]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 7 time(s), will retry in 1000 ms
[08:57:34][D][esp-idf:000][wifi]: W (102526) wifi:
[08:57:34][D][esp-idf:000][wifi]: m f null
[08:57:34]
[08:57:34][D][esp-idf:000][wifi]: 
[08:57:34]
[08:57:34][D][esp-idf:000][wifi]: W (102627) wifi:
[08:57:34][D][esp-idf:000][wifi]: m f null
[08:57:34]
[08:57:34][D][esp-idf:000][wifi]: 
[08:57:34]
[08:57:34][D][esp-idf:000][wifi]: W (102729) wifi:
[08:57:34][D][esp-idf:000][wifi]: m f null
[08:57:34]
[08:57:34][D][esp-idf:000][wifi]: 
[08:57:34]
[08:57:34][D][sensor:094]: 'Moving Distance': Sending state 84.00000 cm with 0 decimals of accuracy
[08:57:34][D][sensor:094]: 'Still Distance': Sending state 192.00000 cm with 0 decimals of accuracy
[08:57:34][D][sensor:094]: 'Detection Distance': Sending state 171.00000 cm with 0 decimals of accuracy
[08:57:34][D][esp-idf:000][wifi]: W (102831) wifi:
[08:57:34][D][esp-idf:000][wifi]: m f null
[08:57:34]
[08:57:34][D][esp-idf:000][wifi]: 
[08:57:34]
[08:57:34][D][esp-idf:000][wifi]: W (102934) wifi:
[08:57:34][D][esp-idf:000][wifi]: m f null
[08:57:34]
[08:57:34][D][esp-idf:000][wifi]: 
[08:57:34]
[08:57:34][D][esp-idf:000][wifi]: W (103036) wifi:
[08:57:34][D][esp-idf:000][wifi]: m f null
[08:57:34]
[08:57:34][D][esp-idf:000][wifi]: 
[08:57:34]
[08:57:34][D][ltr_als_ps:185]: Reconfiguring sensitivity: gain = 96x, time = 100 ms
[08:57:34][D][esp-idf:000][wifi]: W (103138) wifi:
[08:57:34][D][esp-idf:000][wifi]: m f null
[08:57:34]
[08:57:34][D][esp-idf:000][wifi]: 
[08:57:34]
[08:57:35][D][esp-idf:000][wifi]: W (103241) wifi:
[08:57:35][D][esp-idf:000][wifi]: m f null
[08:57:35]
[08:57:35][D][esp-idf:000][wifi]: 
[08:57:35]
[08:57:35][D][esp-idf:000][wifi]: W (103343) wifi:
[08:57:35][D][esp-idf:000][wifi]: m f null
[08:57:35]
[08:57:35][D][esp-idf:000][wifi]: 
[08:57:35][0m
[08:57:35][D][sensor:094]: 'Heap Free': Sending state 1872.00000 B with 0 decimals of accuracy
[08:57:35][D][sensor:094]: 'Loop Time': Sending state 26.00000 ms with 0 decimals of accuracy
[08:57:35][D][sensor:094]: 'Heap Max Block': Sending state 1024.00000 B with 0 decimals of accuracy
[08:57:35][D][sensor:094]: 'Free PSRAM': Sending state 7857859.00000 B with 0 decimals of accuracy
[08:57:35][D][esp-idf:000][wifi]: W (103445) wifi:
[08:57:35][D][esp-idf:000][wifi]: m f null
[08:57:35]
[08:57:35][D][esp-idf:000][wifi]: 
[08:57:35]
[08:57:35][D][api.connection:147]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 8 time(s), will retry in 1000 ms
[08:57:35][D][esp-idf:000][wifi]: W (103548) wifi:
[08:57:35][D][esp-idf:000][wifi]: m f null
[08:57:35]
[08:57:35][D][esp-idf:000][wifi]: 
[08:57:35]
[08:57:35][D][esp-idf:000][wifi]: W (103650) wifi:
[08:57:35][D][esp-idf:000][wifi]: m f null
[08:57:35]
[08:57:35][D][esp-idf:000][wifi]: 
[08:57:35]
[08:57:35][D][esp-idf:000][wifi]: W (103752) wifi:
[08:57:35][D][esp-idf:000][wifi]: m f null
[08:57:35]
[08:57:35][D][esp-idf:000][wifi]: 
[08:57:35]
[08:57:35][D][esp-idf:000][wifi]: W (103855) wifi:
[08:57:35][D][esp-idf:000][wifi]: m f null
[08:57:35]
[08:57:35][D][esp-idf:000][wifi]: 
[08:57:35]
[08:57:35][D][sensor:094]: 'Moving Distance': Sending state 216.00000 cm with 0 decimals of accuracy
[08:57:35][D][sensor:094]: 'Still Distance': Sending state 216.00000 cm with 0 decimals of accuracy
[08:57:35][D][sensor:094]: 'Detection Distance': Sending state 187.00000 cm with 0 decimals of accuracy
[08:57:35][D][esp-idf:000][wifi]: W (103957) wifi:
[08:57:35][D][esp-idf:000][wifi]: m f null
[08:57:35]
[08:57:35][D][esp-idf:000][wifi]: 
[08:57:35]
[08:57:35][D][esp-idf:000][wifi]: W (104059) wifi:
[08:57:35][D][esp-idf:000][wifi]: m f null
[08:57:35]
[08:57:35][D][esp-idf:000][wifi]: 
[08:57:35]
[08:57:35][D][ltr_als_ps:450]: Illuminance is sufficient.
[08:57:35][D][sensor:094]: 'Ambient light': Sending state 54.58531 lx with 1 decimals of accuracy
[08:57:35][D][esp-idf:000][wifi]: W (104162) wifi:
[08:57:35][D][esp-idf:000][wifi]: m f null
[08:57:35]
[08:57:35][D][esp-idf:000][wifi]: 
[08:57:35]
[08:57:36][D][esp-idf:000][wifi]: W (104264) wifi:
[08:57:36][D][esp-idf:000][wifi]: m f null
[08:57:36]
[08:57:36][D][esp-idf:000][wifi]: 
[08:57:36]
[08:57:36][D][esp-idf:000][wifi]: W (104366) wifi:
[08:57:36][D][esp-idf:000][wifi]: m f null
[08:57:36]
[08:57:36][D][esp-idf:000][wifi]: 
[08:57:36]
[08:57:36][D][esp-idf:000][wifi]: W (104469) wifi:
[08:57:36][D][esp-idf:000][wifi]: m f null
[08:57:36]
[08:57:36][D][esp-idf:000][wifi]: 
[08:57:36]
[08:57:36][D][api.connection:147]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 9 time(s), will retry in 1000 ms
[08:57:36][D][esp-idf:000][wifi]: W (104571) wifi:
[08:57:36][D][esp-idf:000][wifi]: m f null
[08:57:36]
[08:57:36][D][esp-idf:000][wifi]: 
[08:57:36]
[08:57:36][D][esp-idf:000][wifi]: W (104673) wifi:
[08:57:36][D][esp-idf:000][wifi]: m f null
[08:57:36]
[08:57:36][D][esp-idf:000][wifi]: 
[08:57:36]
[08:57:36][D][esp-idf:000][wifi]: W (104776) wifi:
[08:57:36][D][esp-idf:000][wifi]: m f null
[08:57:36]
[08:57:36][D][esp-idf:000][wifi]: 
[08:57:36]
[08:57:36][D][esp-idf:000][wifi]: W (104878) wifi:
[08:57:36][D][esp-idf:000][wifi]: m f null
[08:57:36]
[08:57:36][D][esp-idf:000][wifi]: 
[08:57:36]
[08:57:36][D][sensor:094]: 'Moving Distance': Sending state 176.00000 cm with 0 decimals of accuracy
[08:57:36][D][sensor:094]: 'Still Distance': Sending state 176.00000 cm with 0 decimals of accuracy
[08:57:36][D][sensor:094]: 'Detection Distance': Sending state 163.00000 cm with 0 decimals of accuracy
[08:57:36][D][esp-idf:000][wifi]: W (104980) wifi:
[08:57:36][D][esp-idf:000][wifi]: m f null
[08:57:36]
[08:57:36][D][esp-idf:000][wifi]: 
[08:57:36]
[08:57:36][D][esp-idf:000][wifi]: W (105083) wifi:
[08:57:36][D][esp-idf:000][wifi]: m f null
[08:57:36]
[08:57:36][D][esp-idf:000][wifi]: 
[08:57:36]
[08:57:36][D][esp-idf:000][wifi]: W (105187) wifi:
[08:57:36][D][esp-idf:000][wifi]: m f null
[08:57:37]
[08:57:37][D][esp-idf:000][wifi]: 
[08:57:37]
[08:57:37][D][esp-idf:000][wifi]: W (105287) wifi:
[08:57:37][D][esp-idf:000][wifi]: m f null
[08:57:37]
[08:57:37][D][esp-idf:000][wifi]: 
[08:57:37]
[08:57:37][D][esp-idf:000][wifi]: W (105396) wifi:
[08:57:37][D][esp-idf:000][wifi]: m f null
[08:57:37]
[08:57:37][D][esp-idf:000][wifi]: 
[08:57:37]
[08:57:37][W][api.connection:144]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 10 time(s), will retry in 1000 ms
[08:57:37][D][esp-idf:000][wifi]: W (105606) wifi:
[08:57:37][D][esp-idf:000][wifi]: m f null
[08:57:37]
[08:57:37][D][esp-idf:000][wifi]: 
[08:57:37]
[08:57:37][D][esp-idf:000][wifi]: W (105697) wifi:
[08:57:37][D][esp-idf:000][wifi]: m f null
[08:57:37]
[08:57:37][D][esp-idf:000][wifi]: 
[08:57:37]
[08:57:37][D][esp-idf:000][wifi]: W (105799) wifi:
[08:57:37][D][esp-idf:000][wifi]: m f null
[08:57:37]
[08:57:37][D][esp-idf:000][wifi]: 
[08:57:37]
[08:57:37][D][esp-idf:000][wifi]: W (105901) wifi:
[08:57:37][D][esp-idf:000][wifi]: m f null
[08:57:37]
[08:57:37][D][esp-idf:000][wifi]: 
[08:57:37]
[08:57:37][D][esp-idf:000][wifi]: W (106004) wifi:
[08:57:37][D][esp-idf:000][wifi]: m f null
[08:57:37]
[08:57:37][D][esp-idf:000][wifi]: 
[08:57:37]
[08:57:37][D][binary_sensor:036]: 'Moving Target': Sending state ON
[08:57:37][D][sensor:094]: 'Moving Distance': Sending state 220.00000 cm with 0 decimals of accuracy
[08:57:37][D][sensor:094]: 'Moving Energy': Sending state 100.00000 % with 0 decimals of accuracy
[08:57:37][D][sensor:094]: 'Still Distance': Sending state 223.00000 cm with 0 decimals of accuracy
[08:57:37][D][sensor:094]: 'Detection Distance': Sending state 181.00000 cm with 0 decimals of accuracy
[08:57:37][D][esp-idf:000][wifi]: W (106106) wifi:
[08:57:37][D][esp-idf:000][wifi]: m f null
[08:57:37]
[08:57:37][D][esp-idf:000][wifi]: 
[08:57:37]
[08:57:38][D][esp-idf:000][wifi]: W (106208) wifi:
[08:57:38][D][esp-idf:000][wifi]: m f null
[08:57:38]
[08:57:38][D][esp-idf:000][wifi]: 
[08:57:38]
[08:57:38][D][esp-idf:000][wifi]: W (106311) wifi:
[08:57:38][D][esp-idf:000][wifi]: m f null
[08:57:38]
[08:57:38][D][esp-idf:000][wifi]: 
[08:57:38]
[08:57:38][D][esp-idf:000][wifi]: W (106413) wifi:
[08:57:38][D][esp-idf:000][wifi]: m f null
[08:57:38]
[08:57:38][D][esp-idf:000][wifi]: 
[08:57:38]
[08:57:38][D][esp-idf:000][wifi]: W (106518) wifi:
[08:57:38][D][esp-idf:000][wifi]: m f null
[08:57:38]
[08:57:38][D][esp-idf:000][wifi]: 
[08:57:38]
[08:57:38][W][api.connection:144]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 11 time(s), will retry in 1000 ms
[08:57:38][D][esp-idf:000][wifi]: W (106618) wifi:
[08:57:38][D][esp-idf:000][wifi]: m f null
[08:57:38]
[08:57:38][D][esp-idf:000][wifi]: 
[08:57:38]
[08:57:38][D][esp-idf:000][wifi]: W (106720) wifi:
[08:57:38][D][esp-idf:000][wifi]: m f null
[08:57:38]
[08:57:38][D][esp-idf:000][wifi]: 
[08:57:38]
[08:57:38][D][sensor:094]: 'Wi-Fi Signal Strength': Sending state -77.00000 dBm with 0 decimals of accuracy
[08:57:38][D][esp-idf:000][wifi]: W (106822) wifi:
[08:57:38][D][esp-idf:000][wifi]: m f null
[08:57:38]
[08:57:38][D][esp-idf:000][wifi]: 
[08:57:38]
[08:57:38][D][esp-idf:000][wifi]: W (106925) wifi:
[08:57:38][D][esp-idf:000][wifi]: m f null
[08:57:38]
[08:57:38][D][esp-idf:000][wifi]: 
[08:57:38]
[08:57:38][D][esp-idf:000][wifi]: W (107027) wifi:
[08:57:38][D][esp-idf:000][wifi]: m f null
[08:57:38]
[08:57:38][D][esp-idf:000][wifi]: 
[08:57:38]
[08:57:38][D][esp-idf:000][wifi]: W (107129) wifi:
[08:57:38][D][esp-idf:000][wifi]: m f null
[08:57:38]
[08:57:38][D][esp-idf:000][wifi]: 
[08:57:38]
[08:57:38][D][sensor:094]: 'Moving Distance': Sending state 227.00000 cm with 0 decimals of accuracy
[08:57:38][D][sensor:094]: 'Moving Energy': Sending state 70.00000 % with 0 decimals of accuracy
[08:57:38][D][sensor:094]: 'Still Distance': Sending state 216.00000 cm with 0 decimals of accuracy
[08:57:38][D][sensor:094]: 'Detection Distance': Sending state 200.00000 cm with 0 decimals of accuracy
[08:57:39][D][esp-idf:000][wifi]: W (107232) wifi:
[08:57:39][D][esp-idf:000][wifi]: m f null
[08:57:39]
[08:57:39][D][esp-idf:000][wifi]: 
[08:57:39]
[08:57:39][D][esp-idf:000][wifi]: W (107337) wifi:
[08:57:39][D][esp-idf:000][wifi]: m f null
[08:57:39]
[08:57:39][D][esp-idf:000][wifi]: 
[08:57:39]
[08:57:39][D][esp-idf:000][wifi]: W (107436) wifi:
[08:57:39][D][esp-idf:000][wifi]: m f null
[08:57:39]
[08:57:39][D][esp-idf:000][wifi]: 
[08:57:39]
[08:57:39][D][esp-idf:000][wifi]: W (107539) wifi:
[08:57:39][D][esp-idf:000][wifi]: m f null
[08:57:39]
[08:57:39][D][esp-idf:000][wifi]: 
[08:57:39]
[08:57:39][W][api.connection:144]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 12 time(s), will retry in 1000 ms
[08:57:39][D][esp-idf:000][wifi]: W (107641) wifi:
[08:57:39][D][esp-idf:000][wifi]: m f null
[08:57:39]
[08:57:39][D][esp-idf:000][wifi]: 
[08:57:39]
[08:57:39][D][esp-idf:000][wifi]: W (107744) wifi:
[08:57:39][D][esp-idf:000][wifi]: m f null
[08:57:39]
[08:57:39][D][esp-idf:000][wifi]: 
[08:57:39]
[08:57:39][D][esp-idf:000][wifi]: W (107846) wifi:
[08:57:39][D][esp-idf:000][wifi]: m f null
[08:57:39]
[08:57:39][D][esp-idf:000][wifi]: 
[08:57:39]
[08:57:39][D][esp-idf:000][wifi]: W (107948) wifi:
[08:57:39][D][esp-idf:000][wifi]: m f null
[08:57:39]
[08:57:39][D][esp-idf:000][wifi]: 
[08:57:39]
[08:57:39][D][esp-idf:000][wifi]: W (108050) wifi:
[08:57:39][D][esp-idf:000][wifi]: m f null
[08:57:39]
[08:57:39][D][esp-idf:000][wifi]: 
[08:57:39]
[08:57:39][D][esp-idf:000][wifi]: W (108153) wifi:
[08:57:39][D][esp-idf:000][wifi]: m f null
[08:57:39]
[08:57:39][D][esp-idf:000][wifi]: 
[08:57:39]
[08:57:40][D][sensor:094]: 'Moving Distance': Sending state 225.00000 cm with 0 decimals of accuracy
[08:57:40][D][sensor:094]: 'Moving Energy': Sending state 100.00000 % with 0 decimals of accuracy
[08:57:40][D][sensor:094]: 'Still Distance': Sending state 201.00000 cm with 0 decimals of accuracy
[08:57:40][D][sensor:094]: 'Detection Distance': Sending state 201.00000 cm with 0 decimals of accuracy
[08:57:40][D][esp-idf:000][wifi]: W (108357) wifi:
[08:57:40][D][esp-idf:000][wifi]: m f null
[08:57:40]
[08:57:40][D][esp-idf:000][wifi]: 
[08:57:40]
[08:57:40][D][sensor:094]: 'Heap Free': Sending state 1936.00000 B with 0 decimals of accuracy
[08:57:40][D][sensor:094]: 'Loop Time': Sending state 26.00000 ms with 0 decimals of accuracy
[08:57:40][D][sensor:094]: 'Heap Max Block': Sending state 1024.00000 B with 0 decimals of accuracy
[08:57:40][D][sensor:094]: 'Free PSRAM': Sending state 7857859.00000 B with 0 decimals of accuracy
[08:57:40][D][esp-idf:000][wifi]: W (108460) wifi:
[08:57:40][D][esp-idf:000][wifi]: m f null
[08:57:40]
[08:57:40][D][esp-idf:000][wifi]: 
[08:57:40]
[08:57:40][D][esp-idf:000][wifi]: W (108563) wifi:
[08:57:40][D][esp-idf:000][wifi]: m f null
[08:57:40]
[08:57:40][D][esp-idf:000][wifi]: 
[08:57:40]
[08:57:40][W][api.connection:144]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 13 time(s), will retry in 1000 ms
[08:57:40][D][esp-idf:000][wifi]: W (108664) wifi:
[08:57:40][D][esp-idf:000][wifi]: m f null
[08:57:40]
[08:57:40][D][esp-idf:000][wifi]: 
[08:57:40]
[08:57:40][D][esp-idf:000][wifi]: W (108767) wifi:
[08:57:40][D][esp-idf:000][wifi]: m f null
[08:57:40]
[08:57:40][D][esp-idf:000][wifi]: 
[08:57:40]
[08:57:40][D][esp-idf:000][wifi]: W (108869) wifi:
[08:57:40][D][esp-idf:000][wifi]: m f null
[08:57:40]
[08:57:40][D][esp-idf:000][wifi]: 
[08:57:40]
[08:57:40][D][esp-idf:000][wifi]: W (108971) wifi:
[08:57:40][D][esp-idf:000][wifi]: m f null
[08:57:40]
[08:57:40][D][esp-idf:000][wifi]: 
[08:57:40]
[08:57:40][D][esp-idf:000][wifi]: W (109075) wifi:
[08:57:40][D][esp-idf:000][wifi]: m f null
[08:57:40]
[08:57:40][D][esp-idf:000][wifi]: 
[08:57:40]
[08:57:40][D][esp-idf:000][wifi]: W (109176) wifi:
[08:57:40][D][esp-idf:000][wifi]: m f null
[08:57:40]
[08:57:40][D][esp-idf:000][wifi]: 
[08:57:41]
[08:57:41][D][esp-idf:000][wifi]: W (109280) wifi:
[08:57:41][D][esp-idf:000][wifi]: m f null
[08:57:41]
[08:57:41][D][esp-idf:000][wifi]: 
[08:57:41]
[08:57:41][D][sensor:094]: 'Moving Distance': Sending state 235.00000 cm with 0 decimals of accuracy
[08:57:41][D][sensor:094]: 'Moving Energy': Sending state 80.00000 % with 0 decimals of accuracy
[08:57:41][D][sensor:094]: 'Still Distance': Sending state 217.00000 cm with 0 decimals of accuracy
[08:57:41][D][sensor:094]: 'Detection Distance': Sending state 187.00000 cm with 0 decimals of accuracy
[08:57:41][D][esp-idf:000][wifi]: W (109390) wifi:
[08:57:41][D][esp-idf:000][wifi]: m f null
[08:57:41]
[08:57:41][D][esp-idf:000][wifi]: 
[08:57:41]
[08:57:41][D][esp-idf:000][wifi]: W (109483) wifi:
[08:57:41][D][esp-idf:000][wifi]: m f null
[08:57:41]
[08:57:41][D][esp-idf:000][wifi]: 
[08:57:41]
[08:57:41][W][api.connection:144]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 14 time(s), will retry in 1000 ms
[08:57:41][D][esp-idf:000][wifi]: W (109585) wifi:
[08:57:41][D][esp-idf:000][wifi]: m f null
[08:57:41]
[08:57:41][D][esp-idf:000][wifi]: 
[08:57:41]
[08:57:41][D][esp-idf:000][wifi]: W (109688) wifi:
[08:57:41][D][esp-idf:000][wifi]: m f null
[08:57:41]
[08:57:41][D][esp-idf:000][wifi]: 
[08:57:41]
[08:57:41][D][esp-idf:000][wifi]: W (109790) wifi:
[08:57:41][D][esp-idf:000][wifi]: m f null
[08:57:41]
[08:57:41][D][esp-idf:000][wifi]: 
[08:57:41]
[08:57:41][D][esp-idf:000][wifi]: W (109892) wifi:
[08:57:41][D][esp-idf:000][wifi]: m f null
[08:57:41]
[08:57:41][D][esp-idf:000][wifi]: 
[08:57:41]
[08:57:41][D][esp-idf:000][wifi]: W (109995) wifi:
[08:57:41][D][esp-idf:000][wifi]: m f null
[08:57:41]
[08:57:41][D][esp-idf:000][wifi]: 
[08:57:41]
[08:57:41][D][esp-idf:000][wifi]: W (110097) wifi:
[08:57:41][D][esp-idf:000][wifi]: m f null
[08:57:41]
[08:57:41][D][esp-idf:000][wifi]: 
[08:57:41]
[08:57:41][D][esp-idf:000][wifi]: W (110199) wifi:
[08:57:42][D][esp-idf:000][wifi]: m f null
[08:57:42]
[08:57:42][D][esp-idf:000][wifi]: 
[08:57:42]
[08:57:42][D][esp-idf:000][wifi]: W (110302) wifi:
[08:57:42][D][esp-idf:000][wifi]: m f null
[08:57:42]
[08:57:42][D][esp-idf:000][wifi]: 
[08:57:42]
[08:57:42][D][binary_sensor:036]: 'Moving Target': Sending state OFF
[08:57:42][D][sensor:094]: 'Moving Energy': Sending state 0.00000 % with 0 decimals of accuracy
[08:57:42][D][sensor:094]: 'Still Distance': Sending state 223.00000 cm with 0 decimals of accuracy
[08:57:42][D][sensor:094]: 'Detection Distance': Sending state 200.00000 cm with 0 decimals of accuracy
[08:57:42][D][esp-idf:000][wifi]: W (110404) wifi:
[08:57:42][D][esp-idf:000][wifi]: m f null
[08:57:42]
[08:57:42][D][esp-idf:000][wifi]: 
[08:57:42]
[08:57:42][D][esp-idf:000][wifi]: W (110506) wifi:
[08:57:42][D][esp-idf:000][wifi]: m f null
[08:57:42]
[08:57:42][D][esp-idf:000][wifi]: 
[08:57:42]
[08:57:42][W][api.connection:144]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 15 time(s), will retry in 1000 ms
[08:57:42][D][esp-idf:000][wifi]: W (110609) wifi:
[08:57:42][D][esp-idf:000][wifi]: m f null
[08:57:42]
[08:57:42][D][esp-idf:000][wifi]: 
[08:57:42]
[08:57:42][D][esp-idf:000][wifi]: W (110711) wifi:
[08:57:42][D][esp-idf:000][wifi]: m f null
[08:57:42]
[08:57:42][D][esp-idf:000][wifi]: 
[08:57:42]
[08:57:42][D][esp-idf:000][wifi]: W (110813) wifi:
[08:57:42][D][esp-idf:000][wifi]: m f null
[08:57:42]
[08:57:42][D][esp-idf:000][wifi]: 
[08:57:42]
[08:57:42][D][esp-idf:000][wifi]: W (110916) wifi:
[08:57:42][D][esp-idf:000][wifi]: m f null
[08:57:42]
[08:57:42][D][esp-idf:000][wifi]: 
[08:57:42]
[08:57:42][D][esp-idf:000][wifi]: W (111018) wifi:
[08:57:42][D][esp-idf:000][wifi]: m f null
[08:57:42]
[08:57:42][D][esp-idf:000][wifi]: 
[08:57:42]
[08:57:42][D][esp-idf:000][wifi]: W (111121) wifi:
[08:57:42][D][esp-idf:000][wifi]: m f null
[08:57:42]
[08:57:42][D][esp-idf:000][wifi]: 
[08:57:42]
[08:57:43][D][esp-idf:000][wifi]: W (111223) wifi:
[08:57:43][D][esp-idf:000][wifi]: m f null
[08:57:43]
[08:57:43][D][esp-idf:000][wifi]: 
[08:57:43]
[08:57:43][D][esp-idf:000][wifi]: W (111325) wifi:
[08:57:43][D][esp-idf:000][wifi]: m f null
[08:57:43]
[08:57:43][D][esp-idf:000][wifi]: 
[08:57:43]
[08:57:43][D][esp-idf:000][wifi]: W (111428) wifi:
[08:57:43][D][esp-idf:000][wifi]: m f null
[08:57:43]
[08:57:43][D][esp-idf:000][wifi]: 
[08:57:43]
[08:57:43][D][sensor:094]: 'Still Distance': Sending state 224.00000 cm with 0 decimals of accuracy
[08:57:43][D][sensor:094]: 'Detection Distance': Sending state 207.00000 cm with 0 decimals of accuracy
[08:57:43][D][esp-idf:000][wifi]: W (111530) wifi:
[08:57:43][D][esp-idf:000][wifi]: m f null
[08:57:43]
[08:57:43][D][esp-idf:000][wifi]: 
[08:57:43]
[08:57:43][W][api.connection:144]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 16 time(s), will retry in 1000 ms
[08:57:43][D][esp-idf:000][wifi]: W (111633) wifi:
[08:57:43][D][esp-idf:000][wifi]: m f null
[08:57:43]
[08:57:43][D][esp-idf:000][wifi]: 
[08:57:43]
[08:57:43][D][esp-idf:000][wifi]: W (111734) wifi:
[08:57:43][D][esp-idf:000][wifi]: m f null
[08:57:43]
[08:57:43][D][esp-idf:000][wifi]: 
[08:57:43]
[08:57:43][D][esp-idf:000][wifi]: W (111837) wifi:
[08:57:43][D][esp-idf:000][wifi]: m f null
[08:57:43]
[08:57:43][D][esp-idf:000][wifi]: 
[08:57:43]
[08:57:43][D][esp-idf:000][wifi]: W (111939) wifi:
[08:57:43][D][esp-idf:000][wifi]: m f null
[08:57:43]
[08:57:43][D][esp-idf:000][wifi]: 
[08:57:43]
[08:57:43][D][esp-idf:000][wifi]: W (112046) wifi:
[08:57:43][D][esp-idf:000][wifi]: m f null
[08:57:43]
[08:57:43][D][esp-idf:000][wifi]: 
[08:57:43]
[08:57:43][D][esp-idf:000][wifi]: W (112144) wifi:
[08:57:43][D][esp-idf:000][wifi]: m f null
[08:57:43]
[08:57:43][D][esp-idf:000][wifi]: 
[08:57:43]
[08:57:44][D][esp-idf:000][wifi]: W (112246) wifi:
[08:57:44][D][esp-idf:000][wifi]: m f null
[08:57:44]
[08:57:44][D][esp-idf:000][wifi]: 
[08:57:44]
[08:57:44][D][esp-idf:000][wifi]: W (112348) wifi:
[08:57:44][D][esp-idf:000][wifi]: m f null
[08:57:44]
[08:57:44][D][esp-idf:000][wifi]: 
[08:57:44]
[08:57:44][D][esp-idf:000][wifi]: W (112451) wifi:
[08:57:44][D][esp-idf:000][wifi]: m f null
[08:57:44]
[08:57:44][D][esp-idf:000][wifi]: 
[08:57:44]
[08:57:44][D][binary_sensor:036]: 'Moving Target': Sending state ON
[08:57:44][D][sensor:094]: 'Moving Distance': Sending state 219.00000 cm with 0 decimals of accuracy
[08:57:44][D][sensor:094]: 'Moving Energy': Sending state 77.00000 % with 0 decimals of accuracy
[08:57:44][D][sensor:094]: 'Still Distance': Sending state 226.00000 cm with 0 decimals of accuracy
[08:57:44][D][esp-idf:000][wifi]: W (112553) wifi:
[08:57:44][D][esp-idf:000][wifi]: m f null
[08:57:44]
[08:57:44][D][esp-idf:000][wifi]: 
[08:57:44]
[08:57:44][W][api.connection:144]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 17 time(s), will retry in 1000 ms
[08:57:44][D][esp-idf:000][wifi]: W (112656) wifi:
[08:57:44][D][esp-idf:000][wifi]: m f null
[08:57:44]
[08:57:44][D][esp-idf:000][wifi]: 
[08:57:44]
[08:57:44][D][esp-idf:000][wifi]: W (112758) wifi:
[08:57:44][D][esp-idf:000][wifi]: m f null
[08:57:44]
[08:57:44][D][esp-idf:000][wifi]: 
[08:57:44]
[08:57:44][D][esp-idf:000][wifi]: W (112860) wifi:
[08:57:44][D][esp-idf:000][wifi]: m f null
[08:57:44]
[08:57:44][D][esp-idf:000][wifi]: 
[08:57:44]
[08:57:44][D][esp-idf:000][wifi]: W (112964) wifi:
[08:57:44][D][esp-idf:000][wifi]: m f null
[08:57:44]
[08:57:44][D][esp-idf:000][wifi]: 
[08:57:44]
[08:57:44][D][esp-idf:000][wifi]: W (113065) wifi:
[08:57:44][D][esp-idf:000][wifi]: m f null
[08:57:44]
[08:57:44][D][esp-idf:000][wifi]: 
[08:57:44]
[08:57:44][D][esp-idf:000][wifi]: W (113167) wifi:
[08:57:44][D][esp-idf:000][wifi]: m f null
[08:57:44]
[08:57:44][D][esp-idf:000][wifi]: 
[08:57:45]
[08:57:45][D][esp-idf:000][wifi]: W (113272) wifi:
[08:57:45][D][esp-idf:000][wifi]: m f null
[08:57:45]
[08:57:45][D][esp-idf:000][wifi]: 
[08:57:45]
[08:57:45][D][sensor:094]: 'Heap Free': Sending state 1936.00000 B with 0 decimals of accuracy
[08:57:45][D][sensor:094]: 'Loop Time': Sending state 29.00000 ms with 0 decimals of accuracy
[08:57:45][D][sensor:094]: 'Heap Max Block': Sending state 1024.00000 B with 0 decimals of accuracy
[08:57:45][D][sensor:094]: 'Free PSRAM': Sending state 7857859.00000 B with 0 decimals of accuracy
[08:57:45][D][esp-idf:000][wifi]: W (113375) wifi:
[08:57:45][D][esp-idf:000][wifi]: m f null
[08:57:45]
[08:57:45][D][esp-idf:000][wifi]: 
[08:57:45]
[08:57:45][D][esp-idf:000][wifi]: W (113475) wifi:
[08:57:45][D][esp-idf:000][wifi]: m f null
[08:57:45][0m
[08:57:45][D][esp-idf:000][wifi]: 
[08:57:45]
[08:57:45][D][sensor:094]: 'Moving Distance': Sending state 226.00000 cm with 0 decimals of accuracy
[08:57:45][D][sensor:094]: 'Moving Energy': Sending state 100.00000 % with 0 decimals of accuracy
[08:57:45][D][sensor:094]: 'Still Distance': Sending state 219.00000 cm with 0 decimals of accuracy
[08:57:45][D][sensor:094]: 'Detection Distance': Sending state 204.00000 cm with 0 decimals of accuracy
[08:57:45][D][esp-idf:000][wifi]: W (113576) wifi:
[08:57:45][D][esp-idf:000][wifi]: m f null
[08:57:45]
[08:57:45][D][esp-idf:000][wifi]: 
[08:57:45]
[08:57:45][W][api.connection:144]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 18 time(s), will retry in 1000 ms
[08:57:45][D][esp-idf:000][wifi]: W (113679) wifi:
[08:57:45][D][esp-idf:000][wifi]: m f null
[08:57:45]
[08:57:45][D][esp-idf:000][wifi]: 
[08:57:45]
[08:57:45][D][esp-idf:000][wifi]: W (113781) wifi:
[08:57:45][D][esp-idf:000][wifi]: m f null
[08:57:45]
[08:57:45][D][esp-idf:000][wifi]: 
[08:57:45]
[08:57:45][D][esp-idf:000][wifi]: W (113883) wifi:
[08:57:45][D][esp-idf:000][wifi]: m f null
[08:57:45]
[08:57:45][D][esp-idf:000][wifi]: 
[08:57:45]
[08:57:45][D][esp-idf:000][wifi]: W (113986) wifi:
[08:57:45][D][esp-idf:000][wifi]: m f null
[08:57:45]
[08:57:45][D][esp-idf:000][wifi]: 
[08:57:45]
[08:57:45][D][esp-idf:000][wifi]: W (114091) wifi:
[08:57:45][D][esp-idf:000][wifi]: m f null
[08:57:45]
[08:57:45][D][esp-idf:000][wifi]: 
[08:57:45]
[08:57:45][D][esp-idf:000][wifi]: W (114190) wifi:
[08:57:46][D][esp-idf:000][wifi]: m f null
[08:57:46]
[08:57:46][D][esp-idf:000][wifi]: 
[08:57:46]
[08:57:46][D][esp-idf:000][wifi]: W (114293) wifi:
[08:57:46][D][esp-idf:000][wifi]: m f null
[08:57:46]
[08:57:46][D][esp-idf:000][wifi]: 
[08:57:46]
[08:57:46][D][esp-idf:000][wifi]: W (114395) wifi:
[08:57:46][D][esp-idf:000][wifi]: m f null
[08:57:46]
[08:57:46][D][esp-idf:000][wifi]: 
[08:57:46]
[08:57:46][D][esp-idf:000][wifi]: W (114497) wifi:
[08:57:46][D][esp-idf:000][wifi]: m f null
[08:57:46]
[08:57:46][D][esp-idf:000][wifi]: 
[08:57:46]
[08:57:46][D][sensor:094]: 'Moving Distance': Sending state 222.00000 cm with 0 decimals of accuracy
[08:57:46][D][sensor:094]: 'Moving Energy': Sending state 99.00000 % with 0 decimals of accuracy
[08:57:46][D][sensor:094]: 'Still Distance': Sending state 222.00000 cm with 0 decimals of accuracy
[08:57:46][D][sensor:094]: 'Detection Distance': Sending state 206.00000 cm with 0 decimals of accuracy
[08:57:46][D][esp-idf:000][wifi]: W (114600) wifi:
[08:57:46][D][esp-idf:000][wifi]: m f null
[08:57:46]
[08:57:46][D][esp-idf:000][wifi]: 
[08:57:46]
[08:57:46][W][api.connection:144]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 19 time(s), will retry in 1000 ms
[08:57:46][D][esp-idf:000][wifi]: W (114702) wifi:
[08:57:46][D][esp-idf:000][wifi]: m f null
[08:57:46]
[08:57:46][D][esp-idf:000][wifi]: 
[08:57:46]
[08:57:46][D][esp-idf:000][wifi]: W (114805) wifi:
[08:57:46][D][esp-idf:000][wifi]: m f null
[08:57:46]
[08:57:46][D][esp-idf:000][wifi]: 
[08:57:46]
[08:57:46][D][esp-idf:000][wifi]: W (114907) wifi:
[08:57:46][D][esp-idf:000][wifi]: m f null
[08:57:46]
[08:57:46][D][esp-idf:000][wifi]: 
[08:57:46]
[08:57:46][D][esp-idf:000][wifi]: W (115009) wifi:
[08:57:46][D][esp-idf:000][wifi]: m f null
[08:57:46]
[08:57:46][D][esp-idf:000][wifi]: 
[08:57:46]
[08:57:46][D][esp-idf:000][wifi]: W (115111) wifi:
[08:57:46][D][esp-idf:000][wifi]: m f null
[08:57:46]
[08:57:46][D][esp-idf:000][wifi]: 
[08:57:46]
[08:57:47][D][esp-idf:000][wifi]: W (115214) wifi:
[08:57:47][D][esp-idf:000][wifi]: m f null
[08:57:47]
[08:57:47][D][esp-idf:000][wifi]: 
[08:57:47]
[08:57:47][D][esp-idf:000][wifi]: W (115316) wifi:
[08:57:47][D][esp-idf:000][wifi]: m f null
[08:57:47]
[08:57:47][D][esp-idf:000][wifi]: 
[08:57:47]
[08:57:47][D][esp-idf:000][wifi]: W (115418) wifi:
[08:57:47][D][esp-idf:000][wifi]: m f null
[08:57:47]
[08:57:47][D][esp-idf:000][wifi]: 
[08:57:47]
[08:57:47][D][esp-idf:000][wifi]: W (115521) wifi:
[08:57:47][D][esp-idf:000][wifi]: m f null
[08:57:47]
[08:57:47][D][esp-idf:000][wifi]: 
[08:57:47]
[08:57:47][W][api.connection:144]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 20 time(s), will retry in 1000 ms
[08:57:47][D][esp-idf:000][wifi]: W (115623) wifi:
[08:57:47][D][esp-idf:000][wifi]: m f null
[08:57:47]
[08:57:47][D][esp-idf:000][wifi]: 
[08:57:47]
[08:57:47][D][sensor:094]: 'Moving Distance': Sending state 221.00000 cm with 0 decimals of accuracy
[08:57:47][D][sensor:094]: 'Moving Energy': Sending state 88.00000 % with 0 decimals of accuracy
[08:57:47][D][sensor:094]: 'Still Distance': Sending state 194.00000 cm with 0 decimals of accuracy
[08:57:47][D][sensor:094]: 'Detection Distance': Sending state 205.00000 cm with 0 decimals of accuracy
[08:57:47][D][esp-idf:000][wifi]: W (115725) wifi:
[08:57:47][D][esp-idf:000][wifi]: m f null
[08:57:47]
[08:57:47][D][esp-idf:000][wifi]: 
[08:57:47]
[08:57:47][D][esp-idf:000][wifi]: W (115828) wifi:
[08:57:47][D][esp-idf:000][wifi]: m f null
[08:57:47]
[08:57:47][D][esp-idf:000][wifi]: 
[08:57:47]
[08:57:47][D][esp-idf:000][wifi]: W (115930) wifi:
[08:57:47][D][esp-idf:000][wifi]: m f null
[08:57:47]
[08:57:47][D][esp-idf:000][wifi]: 
[08:57:47]
[08:57:47][D][esp-idf:000][wifi]: W (116032) wifi:
[08:57:47][D][esp-idf:000][wifi]: m f null
[08:57:47]
[08:57:47][D][esp-idf:000][wifi]: 
[08:57:47]
[08:57:47][D][esp-idf:000][wifi]: W (116135) wifi:
[08:57:47][D][esp-idf:000][wifi]: m f null
[08:57:47]
[08:57:47][D][esp-idf:000][wifi]: 
[08:57:47]
[08:57:48][D][esp-idf:000][wifi]: W (116237) wifi:
[08:57:48][D][esp-idf:000][wifi]: m f null
[08:57:48]
[08:57:48][D][esp-idf:000][wifi]: 
[08:57:48]
[08:57:48][D][esp-idf:000][wifi]: W (116339) wifi:
[08:57:48][D][esp-idf:000][wifi]: m f null
[08:57:48]
[08:57:48][D][esp-idf:000][wifi]: 
[08:57:48]
[08:57:48][D][esp-idf:000][wifi]: W (116442) wifi:
[08:57:48][D][esp-idf:000][wifi]: m f null
[08:57:48]
[08:57:48][D][esp-idf:000][wifi]: 
[08:57:48]
[08:57:48][D][esp-idf:000][wifi]: W (116544) wifi:
[08:57:48][D][esp-idf:000][wifi]: m f null
[08:57:48]
[08:57:48][D][esp-idf:000][wifi]: 
[08:57:48]
[08:57:48][W][api.connection:144]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 21 time(s), will retry in 1000 ms
[08:57:48][D][esp-idf:000][wifi]: W (116646) wifi:
[08:57:48][D][esp-idf:000][wifi]: m f null
[08:57:48]
[08:57:48][D][esp-idf:000][wifi]: 
[08:57:48]
[08:57:48][D][binary_sensor:036]: 'Moving Target': Sending state OFF
[08:57:48][D][sensor:094]: 'Moving Distance': Sending state 0.00000 cm with 0 decimals of accuracy
[08:57:48][D][sensor:094]: 'Moving Energy': Sending state 0.00000 % with 0 decimals of accuracy
[08:57:48][D][sensor:094]: 'Still Distance': Sending state 204.00000 cm with 0 decimals of accuracy
[08:57:48][D][sensor:094]: 'Detection Distance': Sending state 155.00000 cm with 0 decimals of accuracy
[08:57:48][D][esp-idf:000][wifi]: W (116749) wifi:
[08:57:48][D][esp-idf:000][wifi]: m f null
[08:57:48]
[08:57:48][D][esp-idf:000][wifi]: 
[08:57:48]
[08:57:48][D][esp-idf:000][wifi]: W (116851) wifi:
[08:57:48][D][esp-idf:000][wifi]: m f null
[08:57:48]
[08:57:48][D][esp-idf:000][wifi]: 
[08:57:48]
[08:57:48][D][esp-idf:000][wifi]: W (116953) wifi:
[08:57:48][D][esp-idf:000][wifi]: m f null
[08:57:48]
[08:57:48][D][esp-idf:000][wifi]: 
[08:57:48]
[08:57:48][D][esp-idf:000][wifi]: W (117056) wifi:
[08:57:48][D][esp-idf:000][wifi]: m f null
[08:57:48]
[08:57:48][D][esp-idf:000][wifi]: 
[08:57:48]
[08:57:48][D][esp-idf:000][wifi]: W (117160) wifi:
[08:57:48][D][esp-idf:000][wifi]: m f null
[08:57:48]
[08:57:49][D][esp-idf:000][wifi]: 
[08:57:49]
[08:57:49][D][esp-idf:000][wifi]: W (117260) wifi:
[08:57:49][D][esp-idf:000][wifi]: m f null
[08:57:49]
[08:57:49][D][esp-idf:000][wifi]: 
[08:57:49]
[08:57:49][D][esp-idf:000][wifi]: W (117363) wifi:
[08:57:49][D][esp-idf:000][wifi]: m f null
[08:57:49]
[08:57:49][D][esp-idf:000][wifi]: 
[08:57:49]
[08:57:49][D][esp-idf:000][wifi]: W (117465) wifi:
[08:57:49][D][esp-idf:000][wifi]: m f null
[08:57:49]
[08:57:49][D][esp-idf:000][wifi]: 
[08:57:49]
[08:57:49][D][esp-idf:000][wifi]: W (117567) wifi:
[08:57:49][D][esp-idf:000][wifi]: m f null
[08:57:49]
[08:57:49][D][esp-idf:000][wifi]: 
[08:57:49]
[08:57:49][W][api.connection:144]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 22 time(s), will retry in 1000 ms
[08:57:49][D][esp-idf:000][wifi]: W (117670) wifi:
[08:57:49][D][esp-idf:000][wifi]: m f null
[08:57:49]
[08:57:49][D][esp-idf:000][wifi]: 
[08:57:49]
[08:57:49][D][sensor:094]: 'Moving Distance': Sending state 82.00000 cm with 0 decimals of accuracy
[08:57:49][D][sensor:094]: 'Still Distance': Sending state 210.00000 cm with 0 decimals of accuracy
[08:57:49][D][sensor:094]: 'Detection Distance': Sending state 185.00000 cm with 0 decimals of accuracy
[08:57:49][D][esp-idf:000][wifi]: W (117772) wifi:
[08:57:49][D][esp-idf:000][wifi]: m f null
[08:57:49]
[08:57:49][D][esp-idf:000][wifi]: 
[08:57:49]
[08:57:49][D][esp-idf:000][wifi]: W (117874) wifi:
[08:57:49][D][esp-idf:000][wifi]: m f null
[08:57:49]
[08:57:49][D][esp-idf:000][wifi]: 
[08:57:49]
[08:57:49][D][esp-idf:000][wifi]: W (117977) wifi:
[08:57:49][D][esp-idf:000][wifi]: m f null
[08:57:49]
[08:57:49][D][esp-idf:000][wifi]: 
[08:57:49]
[08:57:49][D][esp-idf:000][wifi]: W (118079) wifi:
[08:57:49][D][esp-idf:000][wifi]: m f null
[08:57:49]
[08:57:49][D][esp-idf:000][wifi]: 
[08:57:49]
[08:57:49][D][esp-idf:000][wifi]: W (118181) wifi:
[08:57:49][D][esp-idf:000][wifi]: m f null
[08:57:50]
[08:57:50][D][esp-idf:000][wifi]: 
[08:57:50]
[08:57:50][D][esp-idf:000][wifi]: W (118284) wifi:
[08:57:50][D][esp-idf:000][wifi]: m f null
[08:57:50]
[08:57:50][D][esp-idf:000][wifi]: 
[08:57:50]
[08:57:50][D][sensor:094]: 'Heap Free': Sending state 1936.00000 B with 0 decimals of accuracy
[08:57:50][D][sensor:094]: 'Loop Time': Sending state 26.00000 ms with 0 decimals of accuracy
[08:57:50][D][sensor:094]: 'Heap Max Block': Sending state 1024.00000 B with 0 decimals of accuracy
[08:57:50][D][sensor:094]: 'Free PSRAM': Sending state 7857859.00000 B with 0 decimals of accuracy
[08:57:50][D][esp-idf:000][wifi]: W (118386) wifi:
[08:57:50][D][esp-idf:000][wifi]: m f null
[08:57:50]
[08:57:50][D][esp-idf:000][wifi]: 
[08:57:50]
[08:57:50][D][esp-idf:000][wifi]: W (118488) wifi:
[08:57:50][D][esp-idf:000][wifi]: m f null
[08:57:50]
[08:57:50][D][esp-idf:000][wifi]: 
[08:57:50]
[08:57:50][D][esp-idf:000][wifi]: W (118592) wifi:
[08:57:50][D][esp-idf:000][wifi]: m f null
[08:57:50]
[08:57:50][D][esp-idf:000][wifi]: 
[08:57:50]
[08:57:50][W][api.connection:144]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 23 time(s), will retry in 1000 ms
[08:57:50][D][esp-idf:000][wifi]: W (118693) wifi:
[08:57:50][D][esp-idf:000][wifi]: m f null
[08:57:50]
[08:57:50][D][esp-idf:000][wifi]: 
[08:57:50]
[08:57:50][D][esp-idf:000][wifi]: W (118795) wifi:
[08:57:50][D][esp-idf:000][wifi]: m f null
[08:57:50]
[08:57:50][D][esp-idf:000][wifi]: 
[08:57:50]
[08:57:50][D][binary_sensor:036]: 'Moving Target': Sending state ON
[08:57:50][D][sensor:094]: 'Moving Distance': Sending state 99.00000 cm with 0 decimals of accuracy
[08:57:50][D][sensor:094]: 'Moving Energy': Sending state 100.00000 % with 0 decimals of accuracy
[08:57:50][D][sensor:094]: 'Still Distance': Sending state 142.00000 cm with 0 decimals of accuracy
[08:57:50][D][sensor:094]: 'Detection Distance': Sending state 160.00000 cm with 0 decimals of accuracy
[08:57:50][D][esp-idf:000][wifi]: W (118898) wifi:
[08:57:50][D][esp-idf:000][wifi]: m f null
[08:57:50]
[08:57:50][D][esp-idf:000][wifi]: 
[08:57:50]
[08:57:50][D][esp-idf:000][wifi]: W (119000) wifi:
[08:57:50][D][esp-idf:000][wifi]: m f null
[08:57:50]
[08:57:50][D][esp-idf:000][wifi]: 
[08:57:50]
[08:57:50][D][esp-idf:000][wifi]: W (119102) wifi:
[08:57:50][D][esp-idf:000][wifi]: m f null
[08:57:50]
[08:57:50][D][esp-idf:000][wifi]: 
[08:57:50]
[08:57:51][D][esp-idf:000][wifi]: W (119206) wifi:
[08:57:51][D][esp-idf:000][wifi]: m f null
[08:57:51]
[08:57:51][D][esp-idf:000][wifi]: 
[08:57:51]
[08:57:51][D][esp-idf:000][wifi]: W (119307) wifi:
[08:57:51][D][esp-idf:000][wifi]: m f null
[08:57:51]
[08:57:51][D][esp-idf:000][wifi]: 
[08:57:51]
[08:57:51][D][esp-idf:000][wifi]: W (119409) wifi:
[08:57:51][D][esp-idf:000][wifi]: m f null
[08:57:51]
[08:57:51][D][esp-idf:000][wifi]: 
[08:57:51]
[08:57:51][D][esp-idf:000][wifi]: W (119515) wifi:
[08:57:51][D][esp-idf:000][wifi]: m f null
[08:57:51]
[08:57:51][D][esp-idf:000][wifi]: 
[08:57:51]
[08:57:51][D][esp-idf:000][wifi]: W (119614) wifi:
[08:57:51][D][esp-idf:000][wifi]: m f null
[08:57:51]
[08:57:51][D][esp-idf:000][wifi]: 
[08:57:51]
[08:57:51][W][api.connection:144]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 24 time(s), will retry in 1000 ms
[08:57:51][D][esp-idf:000][wifi]: W (119716) wifi:
[08:57:51][D][esp-idf:000][wifi]: m f null
[08:57:51]
[08:57:51][D][esp-idf:000][wifi]: 
[08:57:51]
[08:57:51][D][esp-idf:000][wifi]: W (119819) wifi:
[08:57:51][D][esp-idf:000][wifi]: m f null
[08:57:51]
[08:57:51][D][esp-idf:000][wifi]: 
[08:57:51]
[08:57:51][D][esp-idf:000][wifi]: W (119921) wifi:
[08:57:51][D][esp-idf:000][wifi]: m f null
[08:57:51]
[08:57:51][D][esp-idf:000][wifi]: 
[08:57:51]
[08:57:51][D][sensor:094]: 'Moving Distance': Sending state 94.00000 cm with 0 decimals of accuracy
[08:57:51][D][sensor:094]: 'Still Distance': Sending state 154.00000 cm with 0 decimals of accuracy
[08:57:51][D][sensor:094]: 'Detection Distance': Sending state 93.00000 cm with 0 decimals of accuracy
[08:57:51][D][esp-idf:000][wifi]: W (120023) wifi:
[08:57:51][D][esp-idf:000][wifi]: m f null
[08:57:51]
[08:57:51][D][esp-idf:000][wifi]: 
[08:57:51]
[08:57:51][D][esp-idf:000][wifi]: W (120126) wifi:
[08:57:51][D][esp-idf:000][wifi]: m f null
[08:57:51]
[08:57:51][D][esp-idf:000][wifi]: 
[08:57:51]
[08:57:52][D][esp-idf:000][wifi]: W (120228) wifi:
[08:57:52][D][esp-idf:000][wifi]: m f null
[08:57:52]
[08:57:52][D][esp-idf:000][wifi]: 
[08:57:52]
[08:57:52][D][esp-idf:000][wifi]: W (120330) wifi:
[08:57:52][D][esp-idf:000][wifi]: m f null
[08:57:52]
[08:57:52][D][esp-idf:000][wifi]: 
[08:57:52]
[08:57:52][D][esp-idf:000][wifi]: W (120433) wifi:
[08:57:52][D][esp-idf:000][wifi]: m f null
[08:57:52]
[08:57:52][D][esp-idf:000][wifi]: 
[08:57:52]
[08:57:52][D][esp-idf:000][wifi]: W (120535) wifi:
[08:57:52][D][esp-idf:000][wifi]: m f null
[08:57:52]
[08:57:52][D][esp-idf:000][wifi]: 
[08:57:52]
[08:57:52][D][esp-idf:000][wifi]: W (120637) wifi:
[08:57:52][D][esp-idf:000][wifi]: m f null
[08:57:52]
[08:57:52][D][esp-idf:000][wifi]: 
[08:57:52]
[08:57:52][W][api.connection:144]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 25 time(s), will retry in 1000 ms
[08:57:52][D][esp-idf:000][wifi]: W (120740) wifi:
[08:57:52][D][esp-idf:000][wifi]: m f null
[08:57:52]
[08:57:52][D][esp-idf:000][wifi]: 
[08:57:52]
[08:57:52][D][esp-idf:000][wifi]: W (120842) wifi:
[08:57:52][D][esp-idf:000][wifi]: m f null
[08:57:52]
[08:57:52][D][esp-idf:000][wifi]: 
[08:57:52]
[08:57:52][D][esp-idf:000][wifi]: W (120944) wifi:
[08:57:52][D][esp-idf:000][wifi]: m f null
[08:57:52]
[08:57:52][D][esp-idf:000][wifi]: 
[08:57:52]
[08:57:52][D][esp-idf:000][wifi]: W (121047) wifi:
[08:57:52][D][esp-idf:000][wifi]: m f null
[08:57:52]
[08:57:52][D][esp-idf:000][wifi]: 
[08:57:52]
[08:57:52][D][binary_sensor:036]: 'Moving Target': Sending state OFF
[08:57:52][D][sensor:094]: 'Moving Distance': Sending state 216.00000 cm with 0 decimals of accuracy
[08:57:52][D][sensor:094]: 'Moving Energy': Sending state 0.00000 % with 0 decimals of accuracy
[08:57:52][D][sensor:094]: 'Still Distance': Sending state 216.00000 cm with 0 decimals of accuracy
[08:57:52][D][sensor:094]: 'Detection Distance': Sending state 122.00000 cm with 0 decimals of accuracy
[08:57:52][D][esp-idf:000][wifi]: W (121149) wifi:
[08:57:52][D][esp-idf:000][wifi]: m f null
[08:57:52]
[08:57:52][D][esp-idf:000][wifi]: 
[08:57:52]
[08:57:53][D][esp-idf:000][wifi]: W (121251) wifi:
[08:57:53][D][esp-idf:000][wifi]: m f null
[08:57:53]
[08:57:53][D][esp-idf:000][wifi]: 
[08:57:53]
[08:57:53][D][esp-idf:000][wifi]: W (121354) wifi:
[08:57:53][D][esp-idf:000][wifi]: m f null
[08:57:53]
[08:57:53][D][esp-idf:000][wifi]: 
[08:57:53]
[08:57:53][D][esp-idf:000][wifi]: W (121456) wifi:
[08:57:53][D][esp-idf:000][wifi]: m f null
[08:57:53]
[08:57:53][D][esp-idf:000][wifi]: 
[08:57:53]
[08:57:53][D][esp-idf:000][wifi]: W (121558) wifi:
[08:57:53][D][esp-idf:000][wifi]: m f null
[08:57:53]
[08:57:53][D][esp-idf:000][wifi]: 
[08:57:53]
[08:57:53][D][esp-idf:000][wifi]: W (121661) wifi:
[08:57:53][D][esp-idf:000][wifi]: m f null
[08:57:53]
[08:57:53][D][esp-idf:000][wifi]: 
[08:57:53]
[08:57:53][D][esp-idf:000][wifi]: W (121763) wifi:
[08:57:53][D][esp-idf:000][wifi]: m f null
[08:57:53]
[08:57:53][D][esp-idf:000][wifi]: 
[08:57:53]
[08:57:53][D][esp-idf:000][wifi]: W (121865) wifi:
[08:57:53][D][esp-idf:000][wifi]: m f null
[08:57:53]
[08:57:53][D][esp-idf:000][wifi]: 
[08:57:53]
[08:57:53][D][esp-idf:000][wifi]: W (121969) wifi:
[08:57:53][D][esp-idf:000][wifi]: m f null
[08:57:53]
[08:57:53][D][esp-idf:000][wifi]: 
[08:57:53]
[08:57:53][D][esp-idf:000][wifi]: W (122070) wifi:
[08:57:53][D][esp-idf:000][wifi]: m f null
[08:57:53]
[08:57:53][D][esp-idf:000][wifi]: 
[08:57:53]
[08:57:53][D][binary_sensor:036]: 'Moving Target': Sending state ON
[08:57:53][D][sensor:094]: 'Moving Distance': Sending state 217.00000 cm with 0 decimals of accuracy
[08:57:53][D][sensor:094]: 'Moving Energy': Sending state 87.00000 % with 0 decimals of accuracy
[08:57:53][D][sensor:094]: 'Still Distance': Sending state 150.00000 cm with 0 decimals of accuracy
[08:57:53][D][sensor:094]: 'Detection Distance': Sending state 156.00000 cm with 0 decimals of accuracy
[08:57:53][D][esp-idf:000][wifi]: W (122172) wifi:
[08:57:53][D][esp-idf:000][wifi]: m f null
[08:57:53]
[08:57:53][D][esp-idf:000][wifi]: 
[08:57:53]
[08:57:54][D][esp-idf:000][wifi]: W (122275) wifi:
[08:57:54][D][esp-idf:000][wifi]: m f null
[08:57:54]
[08:57:54][D][esp-idf:000][wifi]: 
[08:57:54]
[08:57:54][D][esp-idf:000][wifi]: W (122386) wifi:
[08:57:54][D][esp-idf:000][wifi]: m f null
[08:57:54]
[08:57:54][D][esp-idf:000][wifi]: 
[08:57:54]
[08:57:54][D][esp-idf:000][wifi]: W (122479) wifi:
[08:57:54][D][esp-idf:000][wifi]: m f null
[08:57:54]
[08:57:54][D][esp-idf:000][wifi]: 
[08:57:54]
[08:57:54][D][esp-idf:000][wifi]: W (122582) wifi:
[08:57:54][D][esp-idf:000][wifi]: m f null
[08:57:54]
[08:57:54][D][esp-idf:000][wifi]: 
[08:57:54]
[08:57:54][W][api.connection:144]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 27 time(s), will retry in 1000 ms
[08:57:54][D][esp-idf:000][wifi]: W (122684) wifi:
[08:57:54][D][esp-idf:000][wifi]: m f null
[08:57:54]
[08:57:54][D][esp-idf:000][wifi]: 
[08:57:54]
[08:57:54][D][esp-idf:000][wifi]: W (122786) wifi:
[08:57:54][D][esp-idf:000][wifi]: m f null
[08:57:54]
[08:57:54][D][esp-idf:000][wifi]: 
[08:57:54]
[08:57:54][D][esp-idf:000][wifi]: W (122889) wifi:
[08:57:54][D][esp-idf:000][wifi]: m f null
[08:57:54]
[08:57:54][D][esp-idf:000][wifi]: 
[08:57:54]
[08:57:54][D][esp-idf:000][wifi]: W (122995) wifi:
[08:57:54][D][esp-idf:000][wifi]: m f null
[08:57:54]
[08:57:54][D][esp-idf:000][wifi]: 
[08:57:54]
[08:57:54][D][esp-idf:000][wifi]: W (123093) wifi:
[08:57:54][D][esp-idf:000][wifi]: m f null
[08:57:54]
[08:57:54][D][esp-idf:000][wifi]: 
[08:57:54]
[08:57:54][D][esp-idf:000][wifi]: W (123196) wifi:
[08:57:55][D][esp-idf:000][wifi]: m f null
[08:57:55]
[08:57:55][D][esp-idf:000][wifi]: 
[08:57:55]
[08:57:55][D][binary_sensor:036]: 'Moving Target': Sending state OFF
[08:57:55][D][sensor:094]: 'Moving Distance': Sending state 220.00000 cm with 0 decimals of accuracy
[08:57:55][D][sensor:094]: 'Moving Energy': Sending state 0.00000 % with 0 decimals of accuracy
[08:57:55][D][sensor:094]: 'Still Distance': Sending state 220.00000 cm with 0 decimals of accuracy
[08:57:55][D][sensor:094]: 'Detection Distance': Sending state 192.00000 cm with 0 decimals of accuracy
[08:57:55][D][esp-idf:000][wifi]: W (123298) wifi:
[08:57:55][D][esp-idf:000][wifi]: m f null
[08:57:55]
[08:57:55][D][esp-idf:000][wifi]: 
[08:57:55]
[08:57:55][D][sensor:094]: 'Heap Free': Sending state 1712.00000 B with 0 decimals of accuracy
[08:57:55][D][sensor:094]: 'Loop Time': Sending state 32.00000 ms with 0 decimals of accuracy
[08:57:55][D][sensor:094]: 'Heap Max Block': Sending state 1024.00000 B with 0 decimals of accuracy
[08:57:55][D][sensor:094]: 'Free PSRAM': Sending state 7857859.00000 B with 0 decimals of accuracy
[08:57:55][D][esp-idf:000][wifi]: W (123400) wifi:
[08:57:55][D][esp-idf:000][wifi]: m f null
[08:57:55]
[08:57:55][D][esp-idf:000][wifi]: 
[08:57:55]
[08:57:55][D][esp-idf:000][wifi]: W (123503) wifi:
[08:57:55][D][esp-idf:000][wifi]: m f null
[08:57:55]
[08:57:55][D][esp-idf:000][wifi]: 
[08:57:55]
[08:57:55][D][esp-idf:000][wifi]: W (123605) wifi:
[08:57:55][D][esp-idf:000][wifi]: m f null
[08:57:55]
[08:57:55][D][esp-idf:000][wifi]: 
[08:57:55]
[08:57:55][W][api.connection:144]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 28 time(s), will retry in 1000 ms
[08:57:55][D][esp-idf:000][wifi]: W (123707) wifi:
[08:57:55][D][esp-idf:000][wifi]: m f null
[08:57:55]
[08:57:55][D][esp-idf:000][wifi]: 
[08:57:55]
[08:57:55][D][esp-idf:000][wifi]: W (123810) wifi:
[08:57:55][D][esp-idf:000][wifi]: m f null
[08:57:55]
[08:57:55][D][esp-idf:000][wifi]: 
[08:57:55]
[08:57:55][D][esp-idf:000][wifi]: W (123912) wifi:
[08:57:55][D][esp-idf:000][wifi]: m f null
[08:57:55]
[08:57:55][D][esp-idf:000][wifi]: 
[08:57:55]
[08:57:55][D][esp-idf:000][wifi]: W (124014) wifi:
[08:57:55][D][esp-idf:000][wifi]: m f null
[08:57:55]
[08:57:55][D][esp-idf:000][wifi]: 
[08:57:55]
[08:57:55][D][esp-idf:000][wifi]: W (124117) wifi:
[08:57:55][D][esp-idf:000][wifi]: m f null
[08:57:55]
[08:57:55][D][esp-idf:000][wifi]: 
[08:57:55]
[08:57:56][D][esp-idf:000][wifi]: W (124219) wifi:
[08:57:56][D][esp-idf:000][wifi]: m f null
[08:57:56]
[08:57:56][D][esp-idf:000][wifi]: 
[08:57:56]
[08:57:56][D][binary_sensor:036]: 'Moving Target': Sending state ON
[08:57:56][D][sensor:094]: 'Moving Energy': Sending state 83.00000 % with 0 decimals of accuracy
[08:57:56][D][sensor:094]: 'Still Distance': Sending state 210.00000 cm with 0 decimals of accuracy
[08:57:56][D][sensor:094]: 'Detection Distance': Sending state 198.00000 cm with 0 decimals of accuracy
[08:57:56][D][esp-idf:000][wifi]: W (124321) wifi:
[08:57:56][D][esp-idf:000][wifi]: m f null
[08:57:56]
[08:57:56][D][esp-idf:000][wifi]: 
[08:57:56]
[08:57:56][D][esp-idf:000][wifi]: W (124424) wifi:
[08:57:56][D][esp-idf:000][wifi]: m f null
[08:57:56]
[08:57:56][D][esp-idf:000][wifi]: 
[08:57:56]
[08:57:56][D][esp-idf:000][wifi]: W (124526) wifi:
[08:57:56][D][esp-idf:000][wifi]: m f null
[08:57:56]
[08:57:56][D][esp-idf:000][wifi]: 
[08:57:56]
[08:57:56][D][esp-idf:000][wifi]: W (124628) wifi:
[08:57:56][D][esp-idf:000][wifi]: m f null
[08:57:56]
[08:57:56][D][esp-idf:000][wifi]: 
[08:57:56]
[08:57:56][W][api.connection:144]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 29 time(s), will retry in 1000 ms
[08:57:56][D][esp-idf:000][wifi]: W (124731) wifi:
[08:57:56][D][esp-idf:000][wifi]: m f null
[08:57:56]
[08:57:56][D][esp-idf:000][wifi]: 
[08:57:56]
[08:57:56][D][esp-idf:000][wifi]: W (124833) wifi:
[08:57:56][D][esp-idf:000][wifi]: m f null
[08:57:56]
[08:57:56][D][esp-idf:000][wifi]: 
[08:57:56]
[08:57:56][D][esp-idf:000][wifi]: W (124935) wifi:
[08:57:56][D][esp-idf:000][wifi]: m f null
[08:57:56]
[08:57:56][D][esp-idf:000][wifi]: 
[08:57:56]
[08:57:56][D][esp-idf:000][wifi]: W (125038) wifi:
[08:57:56][D][esp-idf:000][wifi]: m f null
[08:57:56]
[08:57:56][D][esp-idf:000][wifi]: 
[08:57:56]
[08:57:56][D][esp-idf:000][wifi]: W (125140) wifi:
[08:57:56][D][esp-idf:000][wifi]: m f null
[08:57:56]
[08:57:56][D][esp-idf:000][wifi]: 
[08:57:56]
[08:57:57][D][esp-idf:000][wifi]: W (125242) wifi:
[08:57:57][D][esp-idf:000][wifi]: m f null
[08:57:57]
[08:57:57][D][esp-idf:000][wifi]: 
[08:57:57]
[08:57:57][D][sensor:094]: 'Moving Distance': Sending state 222.00000 cm with 0 decimals of accuracy
[08:57:57][D][sensor:094]: 'Moving Energy': Sending state 89.00000 % with 0 decimals of accuracy
[08:57:57][D][sensor:094]: 'Still Distance': Sending state 212.00000 cm with 0 decimals of accuracy
[08:57:57][D][sensor:094]: 'Detection Distance': Sending state 156.00000 cm with 0 decimals of accuracy
[08:57:57][D][esp-idf:000][wifi]: W (125345) wifi:
[08:57:57][D][esp-idf:000][wifi]: m f null
[08:57:57]
[08:57:57][D][esp-idf:000][wifi]: 
[08:57:57]
[08:57:57][D][esp-idf:000][wifi]: W (125447) wifi:
[08:57:57][D][esp-idf:000][wifi]: m f null
[08:57:57]
[08:57:57][D][esp-idf:000][wifi]: 
[08:57:57]
[08:57:57][D][esp-idf:000][wifi]: W (125549) wifi:
[08:57:57][D][esp-idf:000][wifi]: m f null
[08:57:57]
[08:57:57][D][esp-idf:000][wifi]: 
[08:57:57]
[08:57:57][D][esp-idf:000][wifi]: W (125652) wifi:
[08:57:57][D][esp-idf:000][wifi]: m f null
[08:57:57]
[08:57:57][D][esp-idf:000][wifi]: 
[08:57:57]
[08:57:57][W][api.connection:144]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 30 time(s), will retry in 1000 ms
[08:57:57][D][esp-idf:000][wifi]: W (125754) wifi:
[08:57:57][D][esp-idf:000][wifi]: m f null
[08:57:57]
[08:57:57][D][esp-idf:000][wifi]: 
[08:57:57]
[08:57:57][D][esp-idf:000][wifi]: W (125856) wifi:
[08:57:57][D][esp-idf:000][wifi]: m f null
[08:57:57]
[08:57:57][D][esp-idf:000][wifi]: 
[08:57:57]
[08:57:57][D][esp-idf:000][wifi]: W (125959) wifi:
[08:57:57][D][esp-idf:000][wifi]: m f null
[08:57:57]
[08:57:57][D][esp-idf:000][wifi]: 
[08:57:57]
[08:57:57][D][esp-idf:000][wifi]: W (126061) wifi:
[08:57:57][D][esp-idf:000][wifi]: m f null
[08:57:57]
[08:57:57][D][esp-idf:000][wifi]: 
[08:57:57]
[08:57:57][D][esp-idf:000][wifi]: W (126163) wifi:
[08:57:57][D][esp-idf:000][wifi]: m f null
[08:57:57]
[08:57:57][D][esp-idf:000][wifi]: 
[08:57:57]
[08:57:58][D][esp-idf:000][wifi]: W (126266) wifi:
[08:57:58][D][esp-idf:000][wifi]: m f null
[08:57:58]
[08:57:58][D][esp-idf:000][wifi]: 
[08:57:58]
[08:57:58][D][sensor:094]: 'Moving Distance': Sending state 226.00000 cm with 0 decimals of accuracy
[08:57:58][D][esp-idf:000][wifi]: W (126368) wifi:
[08:57:58][D][esp-idf:000][wifi]: m f null
[08:57:58]
[08:57:58][D][esp-idf:000][wifi]: 
[08:57:58]
[08:57:58][D][esp-idf:000][wifi]: W (126475) wifi:
[08:57:58][D][esp-idf:000][wifi]: m f null
[08:57:58]
[08:57:58][D][esp-idf:000][wifi]: 
[08:57:58]
[08:57:58][D][esp-idf:000][wifi]: W (126573) wifi:
[08:57:58][D][esp-idf:000][wifi]: m f null
[08:57:58]
[08:57:58][D][esp-idf:000][wifi]: 
[08:57:58]
[08:57:58][D][esp-idf:000][wifi]: W (126675) wifi:
[08:57:58][D][esp-idf:000][wifi]: m f null
[08:57:58]
[08:57:58][D][esp-idf:000][wifi]: 
[08:57:58]
[08:57:58][W][api.connection:144]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 31 time(s), will retry in 1000 ms
[08:57:58][D][esp-idf:000][wifi]: W (126777) wifi:
[08:57:58][D][esp-idf:000][wifi]: m f null
[08:57:58]
[08:57:58][D][esp-idf:000][wifi]: 
[08:57:58]
[08:57:58][D][esp-idf:000][wifi]: W (126880) wifi:
[08:57:58][D][esp-idf:000][wifi]: m f null
[08:57:58]
[08:57:58][D][esp-idf:000][wifi]: 
[08:57:58]
[08:57:58][D][esp-idf:000][wifi]: W (126982) wifi:
[08:57:58][D][esp-idf:000][wifi]: m f null
[08:57:58]
[08:57:58][D][esp-idf:000][wifi]: 
[08:57:58]
[08:57:58][D][esp-idf:000][wifi]: W (127084) wifi:
[08:57:58][D][esp-idf:000][wifi]: m f null
[08:57:58]
[08:57:58][D][esp-idf:000][wifi]: 
[08:57:58]
[08:57:58][D][esp-idf:000][wifi]: W (127187) wifi:
[08:57:58][D][esp-idf:000][wifi]: m f null
[08:57:58]
[08:57:59][D][esp-idf:000][wifi]: 
[08:57:59]
[08:57:59][D][esp-idf:000][wifi]: W (127294) wifi:
[08:57:59][D][esp-idf:000][wifi]: m f null
[08:57:59]
[08:57:59][D][esp-idf:000][wifi]: 
[08:57:59]
[08:57:59][D][esp-idf:000][wifi]: W (127395) wifi:
[08:57:59][D][esp-idf:000][wifi]: m f null
[08:57:59]
[08:57:59][D][esp-idf:000][wifi]: 
[08:57:59]
[08:57:59][D][sensor:094]: 'Moving Distance': Sending state 218.00000 cm with 0 decimals of accuracy
[08:57:59][D][sensor:094]: 'Moving Energy': Sending state 100.00000 % with 0 decimals of accuracy
[08:57:59][D][sensor:094]: 'Still Distance': Sending state 194.00000 cm with 0 decimals of accuracy
[08:57:59][D][sensor:094]: 'Detection Distance': Sending state 185.00000 cm with 0 decimals of accuracy
[08:57:59][D][esp-idf:000][wifi]: W (127495) wifi:
[08:57:59][D][esp-idf:000][wifi]: m f null
[08:57:59]
[08:57:59][D][esp-idf:000][wifi]: 
[08:57:59]
[08:57:59][D][esp-idf:000][wifi]: W (127596) wifi:
[08:57:59][D][esp-idf:000][wifi]: m f null
[08:57:59]
[08:57:59][D][esp-idf:000][wifi]: 
[08:57:59]
[08:57:59][W][api.connection:144]: Home Assistant 2024.12.2 (192.168.1.173): Sending keepalive failed 32 time(s), will retry in 1000 ms
[08:57:59][D][esp-idf:000][wifi]: W (127801) wifi:
[08:57:59][D][esp-idf:000][wifi]: m f null
[08:57:59]
[08:57:59][D][esp-idf:000][wifi]: 
[08:57:59]
[08:57:59][D][esp-idf:000][wifi]: W (127903) wifi:
[08:57:59][D][esp-idf:000][wifi]: m f null
[08:57:59]
[08:57:59][D][esp-idf:000][wifi]: 
[08:57:59]
[08:57:59][D][esp-idf:000][wifi]: W (128005) wifi:
[08:57:59][D][esp-idf:000][wifi]: m f null
[08:57:59]
[08:57:59][D][esp-idf:000][wifi]: 
[08:57:59]
[08:57:59]
[08:57:59]abort() was called at PC 0x4214d726 on core 0
[08:57:59]
[08:57:59]
[08:57:59]Backtrace: 0x403783e2:0x3fccad50 0x40381ce5:0x3fccad70 0x403899aa:0x3fccad90 0x4214d726:0x3fccae00 0x4212f05f:0x3fccae20 0x4212efc6:0x3fccae40 0x4200fb91:0x3fccae60 0x4204c21d:0x3fccae80 0x4204d0dd:0x3fccaea0 0x42079d16:0x3fccaec0 0x42079cb3:0x3fccaee0
[08:57:59]
[08:57:59]
[08:57:59]
[08:57:59]
[08:57:59]ELF file SHA256: c2f0c5a7f997d7fc
[08:57:59]
[08:57:59]Rebooting...
[08:57:59]ESP-ROM:esp32s3-20210327
[08:57:59]Build:Mar 27 2021
[08:57:59]rst:0xc (RTC_SW_CPU_RST),boot:0xa (SPI_FAST_FLASH_BOOT)
[08:57:59]Saved PC:0x40377ff0
[08:57:59]SPIWP:0xee
[08:57:59]mode:DIO, clock div:1
[08:57:59]load:0x3fce3808,len:0x16c4
[08:57:59]load:0x403c9700,len:0xbc0
[08:57:59]load:0x403cc700,len:0x2e90
[08:57:59]entry 0x403c9950

@formatBCE
Copy link

Here's attempt to play music right after reboot:

[09:05:00][D][media_player:080]: 'Sat1 Media Player' - Setting
[09:05:00][D][media_player:087]:   Media URL: http://192.168.1.173:8123/api/esphome/ffmpeg_proxy/80df34575676a14bffc6c6ad1c644ddf/1D8hti63FufLDS6OiLgGVQ.flac
[09:05:00][D][ring_buffer:034]: Created ring buffer with size 48000
[09:05:00][D][ring_buffer:034]: Created ring buffer with size 48000
[09:05:00][D][ring_buffer:034]: Created ring buffer with size 65536
[09:05:00][D][ring_buffer:034]: Created ring buffer with size 65536
[09:05:00][D][esp-idf:000][wifi]: W (54339) wifi:
[09:05:00][D][esp-idf:000][wifi]: m f null
[09:05:00]
[09:05:00][D][esp-idf:000][wifi]: 
[09:05:00]
[09:05:00][D][esp-idf:000][wifi]: W (54385) wifi:
[09:05:00][D][esp-idf:000][wifi]: m f null
[09:05:00]
[09:05:00][D][esp-idf:000][wifi]: 
[09:05:00]
[09:05:00][D][sensor:094]: 'Moving Distance': Sending state 219.00000 cm with 0 decimals of accuracy
[09:05:00][D][sensor:094]: 'Still Distance': Sending state 219.00000 cm with 0 decimals of accuracy
[09:05:00][D][sensor:094]: 'Detection Distance': Sending state 164.00000 cm with 0 decimals of accuracy
[09:05:01][D][binary_sensor:036]: 'Moving Target': Sending state ON
[09:05:01][D][sensor:094]: 'Moving Distance': Sending state 0.00000 cm with 0 decimals of accuracy
[09:05:01][D][sensor:094]: 'Moving Energy': Sending state 46.00000 % with 0 decimals of accuracy
[09:05:01][D][sensor:094]: 'Detection Distance': Sending state 158.00000 cm with 0 decimals of accuracy
[09:05:02][D][binary_sensor:036]: 'Moving Target': Sending state OFF
[09:05:02][D][sensor:094]: 'Moving Distance': Sending state 220.00000 cm with 0 decimals of accuracy
[09:05:02][D][sensor:094]: 'Moving Energy': Sending state 0.00000 % with 0 decimals of accuracy
[09:05:02][D][sensor:094]: 'Still Distance': Sending state 220.00000 cm with 0 decimals of accuracy
[09:05:02][D][sensor:094]: 'Detection Distance': Sending state 147.00000 cm with 0 decimals of accuracy
[09:05:02]
[09:05:02]abort() was called at PC 0x4212ef3f on core 0
[09:05:02]
[09:05:02]
[09:05:02]Backtrace: 0x403783e2:0x3fccadd0 0x40381ce5:0x3fccadf0 0x403899aa:0x3fccae10 0x4212ef3f:0x3fccae80 0x4212ef86:0x3fccaea0 0x4213f519:0x3fccaec0 0x4212efb8:0x3fccaee0 0x4200fb91:0x3fccaf00 0x4204c21d:0x3fccaf20 0x4204d0dd:0x3fccaf40 0x42079d16:0x3fccaf60 0x42079cb3:0x3fccaf80
[09:05:02]
[09:05:02]
[09:05:02]
[09:05:02]
[09:05:02]ELF file SHA256: c2f0c5a7f997d7fc
[09:05:02]
[09:05:02]Rebooting...
[09:05:02]ESP-ROM:esp32s3-20210327
[09:05:02]Build:Mar 27 2021
[09:05:02]rst:0xc (RTC_SW_CPU_RST),boot:0xa (SPI_FAST_FLASH_BOOT)
[09:05:02]Saved PC:0x40377ff0
[09:05:02]SPIWP:0xee
[09:05:02]mode:DIO, clock div:1
[09:05:02]load:0x3fce3808,len:0x16c4
[09:05:02]load:0x403c9700,len:0xbc0
[09:05:02]load:0x403cc700,len:0x2e90
[09:05:02]entry 0x403c9950

@formatBCE
Copy link

In short @that1guy i don't think we have enough resources to run proxy in parallel with MWW/VA. PE guys didn't even try it AFAIK.
It runs smooth before attempt of any WiFi-extensive interaction.

Probably, PoE port will make the build compatible with bluetooth_proxy? When all the network job will be offloaded from WiFi...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants