Files
lwbtn/CHANGELOG.md
2025-09-19 12:22:58 +02:00

2.0 KiB

Changelog

Develop

v1.2.1

  • Fix the bug with LWBTN_CFG_TYPE_VARTYPE being wrongly named and replaced with LWBTN_CFG_TIME_VARTYPE

v1.2.0

  • Add detection of the first button state to be inactive before debouncing can even start
  • Add macro LWBTN_CFG_USE_CLICK with default value to keep click event enabled (backward compatibility) and an option to disable click events
  • Rework library CMake with removed INTERFACE type
  • Add LWBTN_CFG_TYPE_VARTYPE config type to allow user to select time variable type (typically uint32_t or uint16_t)
  • Add lwbtn_reset to manually reset the button state
  • Fix the platformio library package description

v1.1.0

  • Add lwbtn_keepalive_get_period function
  • Add lwbtn_keepalive_get_count function to get keepalive count
  • Add lwbtn_click_get_count function to get consecutive clicks
  • Add lwbtn_keepalive_get_count_for_time function to calculate number of required keep alive tick
  • Improve configuration documentation text
  • Add LWBTN_CFG_CLICK_CONSECUTIVE_KEEP_AFTER_SHORT_PRESS option to report previous clicks, even if last sequence of onpress and onrelease is too short for valid click event.

v1.0.0

  • Send CLICK event if there is an overlap between max time between clicks and new click arrives
  • Do not send CLICK event if there was previously detected long hold press (hold time exceeded max allowed click time)

v0.0.2

  • Add LWBTN_CFG_GET_STATE_MODE to control get state mode
  • Add option to check if button is currently active (after debounce period has elapsed)
  • Add option to set time/click parameters at run time for each button specifically
  • Rename _RUNTIME configuration with _DYNAMIC
  • Change LWBTC_CFG_TIME_DEBOUNCE to LWBTC_CFG_TIME_DEBOUNCE_PRESS and LWBTC_CFG_TIME_DEBOUNCE_RUNTIME to LWBTC_CFG_TIME_DEBOUNCE_PRESS_DYNAMIC respectively
  • Add option release debounce with LWBTC_CFG_TIME_DEBOUNCE_RELEASE and LWBTC_CFG_TIME_DEBOUNCE_RELEASE_DYNAMIC options

v0.0.1

  • First commit