ueforth icon indicating copy to clipboard operation
ueforth copied to clipboard

Should add support to control clock speed

Open flagxor opened this issue 3 years ago • 1 comments

Currently this is hard coded in Arduino UI. Can it be dynamic?

Potential interface to use: https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/system/power_management.html

flagxor avatar Apr 09 '22 16:04 flagxor

Ref: https://github.com/silverchris/esphome/tree/auto-sleep/esphome/components/pm

esphome:
  name: $devicename
  platform: ESP32

# Enable logging
logger:

# Enable Home Assistant API
api:

pm:
  min_freq_mhz: 40
  max_freq_mhz: 80
  tickless: True

snowyu avatar Feb 21 '23 02:02 snowyu