├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── LightingDemo.gif ├── NOTICE.md ├── README.md ├── SECURITY.md ├── SUPPORT.md └── src ├── .gitignore ├── CMakeLists.txt ├── Encoder ├── Encoder.c └── Encoder.h ├── Keys ├── Keys.c ├── Keys.h └── keymap.h ├── Lighting ├── LampArray.c ├── LampArray.h ├── LampArrayHidStructs.h ├── Neopixel.c ├── Neopixel.h └── neopixel.pio ├── macropad.c ├── pico_sdk_import.cmake ├── tusb_config.h ├── usb_descriptors.c ├── usb_descriptors.h └── util.h /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/RP2040MacropadHidSample/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/RP2040MacropadHidSample/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/RP2040MacropadHidSample/HEAD/LICENSE -------------------------------------------------------------------------------- /LightingDemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/RP2040MacropadHidSample/HEAD/LightingDemo.gif -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/RP2040MacropadHidSample/HEAD/NOTICE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/RP2040MacropadHidSample/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/RP2040MacropadHidSample/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/RP2040MacropadHidSample/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/RP2040MacropadHidSample/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Encoder/Encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/RP2040MacropadHidSample/HEAD/src/Encoder/Encoder.c -------------------------------------------------------------------------------- /src/Encoder/Encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/RP2040MacropadHidSample/HEAD/src/Encoder/Encoder.h -------------------------------------------------------------------------------- /src/Keys/Keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/RP2040MacropadHidSample/HEAD/src/Keys/Keys.c -------------------------------------------------------------------------------- /src/Keys/Keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/RP2040MacropadHidSample/HEAD/src/Keys/Keys.h -------------------------------------------------------------------------------- /src/Keys/keymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/RP2040MacropadHidSample/HEAD/src/Keys/keymap.h -------------------------------------------------------------------------------- /src/Lighting/LampArray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/RP2040MacropadHidSample/HEAD/src/Lighting/LampArray.c -------------------------------------------------------------------------------- /src/Lighting/LampArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/RP2040MacropadHidSample/HEAD/src/Lighting/LampArray.h -------------------------------------------------------------------------------- /src/Lighting/LampArrayHidStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/RP2040MacropadHidSample/HEAD/src/Lighting/LampArrayHidStructs.h -------------------------------------------------------------------------------- /src/Lighting/Neopixel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/RP2040MacropadHidSample/HEAD/src/Lighting/Neopixel.c -------------------------------------------------------------------------------- /src/Lighting/Neopixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/RP2040MacropadHidSample/HEAD/src/Lighting/Neopixel.h -------------------------------------------------------------------------------- /src/Lighting/neopixel.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/RP2040MacropadHidSample/HEAD/src/Lighting/neopixel.pio -------------------------------------------------------------------------------- /src/macropad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/RP2040MacropadHidSample/HEAD/src/macropad.c -------------------------------------------------------------------------------- /src/pico_sdk_import.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/RP2040MacropadHidSample/HEAD/src/pico_sdk_import.cmake -------------------------------------------------------------------------------- /src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/RP2040MacropadHidSample/HEAD/src/tusb_config.h -------------------------------------------------------------------------------- /src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/RP2040MacropadHidSample/HEAD/src/usb_descriptors.c -------------------------------------------------------------------------------- /src/usb_descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/RP2040MacropadHidSample/HEAD/src/usb_descriptors.h -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/RP2040MacropadHidSample/HEAD/src/util.h --------------------------------------------------------------------------------