File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 11# ChangeLog
22
3+ ## v1.0.1 - 2025-10-10
4+
5+ * Fixed requires in CMake for IDF6.
6+
37## v1.0.0 - 2024-9-26
48
59* Add ext1_wakeup mode for Knob when define CONFIG_PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP=y
Original file line number Diff line number Diff line change 1+ if ("${IDF_VERSION_MAJOR} .${IDF_VERSION_MINOR} " VERSION_GREATER_EQUAL "5.3" )
2+ set (REQ esp_driver_gpio)
3+ else ()
4+ set (REQ driver)
5+ endif ()
6+
17idf_component_register(SRCS "iot_knob.c" "knob_gpio.c"
28 INCLUDE_DIRS "include"
3- REQUIRES driver
9+ REQUIRES ${REQ}
410 PRIV_REQUIRES esp_timer)
511
612include (package_manager)
Original file line number Diff line number Diff line change 1- version : " 1.0.0 "
1+ version : " 1.0.1 "
22description : Knob driver implemented through software pcnt
33url : https://github.com/espressif/esp-iot-solution/tree/master/components/knob
44documentation : https://docs.espressif.com/projects/esp-iot-solution/en/latest/input_device/knob.html
You can’t perform that action at this time.
0 commit comments