summaryrefslogtreecommitdiff
path: root/app/src/rgb_underglow.c
AgeCommit message (Collapse)Author
2021-02-09feat(underglow): Convert HSB changes to absolute.Pete Johanson
* Public type for HSB led color. * New API for calculating "next" HSB based on current state. * Update behavior to convert the increment/decrement commands to absolute command as well.
2021-02-09refactor(rgb): Expose explicit on/off command/API.Pete Johanson
2021-01-08Remove setting the animation/effect when setting hsv ; some of the effects ↵KemoNine
like glowing will use the hsv color specified
2021-01-08(feat) Allow setting underglow color by key pressKemoNine
2020-12-14fix(settings): Add missing err handlers on settings_registerNick
2020-12-14refactor(settings): Only load used subtreesNick Winans
2020-12-14refactor(app): replace `struct device *` with `const struct device *`innovaker
Replaced with RegExp: /(?<!const )(struct device \*)/g See: https://docs.zephyrproject.org/latest/releases/release-notes-2.4.html PR: #467
2020-12-14refactor(app): replace Zephyr integer types with C99 integer typesinnovaker
u8_t → uint8_t u16_t → uint16_t u32_t → uint32_t u64_t → uint64_t s8_t → int8_t s16_t → int16_t s32_t → int32_t s64_t → int64_t Prerequisite for #223 See: https://github.com/zephyrproject-rtos/zephyr/releases/tag/zephyr-v2.4.0 PR: #467
2020-12-02refactor(settings): Add Kconfig option for settings debounceNick
2020-11-23fix(ug): Start tick without settings state availableNick
2020-11-22feat(underglow): RGB toggle controls ext_powerNick
fix(ug): Don't return if finding ext power fails fix(ug): Move ext_power to a static variable Add #if defs
2020-11-03feat(underglow): Debounce state settings saveNick
2020-09-15fix lint with clang-formatNick
2020-09-15Merge remote-tracking branch 'upstream/main' into underglow/state-persistenceNick
2020-09-14chore: clang-format the codebase.Pete Johanson
* Use the LLVM style * Override indent width (8) and column limit (100) * Fixes #142.
2020-09-10fix: Switch to single AUTHORS file.* Closes #164Pete Johanson
2020-08-23fix(rgb): check if settings enabledNick
2020-08-23Move settings loadNick
2020-08-20fix(rgb): fix underglow settings locationNick
2020-08-20feat(rgb): underglow state Kconfig and settingsNick
2020-07-26If LED strip can't be found, behaviors return errNick
2020-07-25Add suggested changesNick
2020-07-24Initial RGB Underglow implementationNick
2020-07-24Add base files and configuration for RGB underglowNick