Skip to content

Files

Latest commit

6afb61d · Jan 26, 2025

History

History
41 lines (27 loc) · 1018 Bytes

File metadata and controls

41 lines (27 loc) · 1018 Bytes

Insight

Sensors which show some internal metrics from the running device. Mostly for debugging.

Config

Import the component(s).

external_components:
  - source: github://slimcdk/esphome-custom-components
    components: [ insight ]

Sensor

sensor
  - platform: insight
    type: esphome_loop
    name: Main loop frequency
    update_interval: 100ms
    filters:
      - sliding_window_moving_average:
          window_size: 10
          send_every: 1
  • type (Required):

    • esphome_loop Frequency of fastest actual main loop iterations per second.
  • All other from Sensor