summaryrefslogtreecommitdiff
path: root/app/src/rgb_underglow.c
AgeCommit message (Collapse)Author
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