├── .gitignore ├── LICENSE ├── README.md ├── boot.py ├── case ├── 10_SW_Case_Bottom.3mf ├── 10_SW_Case_Bottom.stl ├── 10_SW_Case_Top.3mf ├── 10_SW_Case_Top.stl ├── 7_SW_Case_Bottom.3mf ├── 7_SW_Case_Bottom.stl ├── 7_SW_Case_Top.3mf ├── 7_SW_Case_Top.stl └── Tiny 2040 │ ├── 10_SW_Case_Tiny_2040_Bottom.3mf │ ├── 10_SW_Case_Tiny_2040_Bottom.stl │ ├── 10_SW_Case_Tiny_2040_Top.3mf │ ├── 10_SW_Case_Tiny_2040_Top.stl │ └── Tiny 2040 PCB Dimensions.pdf ├── code.py ├── config.py ├── keycaps └── Keycap-Legend.svg └── tiny2040 ├── code.py └── config.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camerahacks/lightroom-macro-pad/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camerahacks/lightroom-macro-pad/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camerahacks/lightroom-macro-pad/HEAD/README.md -------------------------------------------------------------------------------- /boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camerahacks/lightroom-macro-pad/HEAD/boot.py -------------------------------------------------------------------------------- /case/10_SW_Case_Bottom.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camerahacks/lightroom-macro-pad/HEAD/case/10_SW_Case_Bottom.3mf -------------------------------------------------------------------------------- /case/10_SW_Case_Bottom.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camerahacks/lightroom-macro-pad/HEAD/case/10_SW_Case_Bottom.stl -------------------------------------------------------------------------------- /case/10_SW_Case_Top.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camerahacks/lightroom-macro-pad/HEAD/case/10_SW_Case_Top.3mf -------------------------------------------------------------------------------- /case/10_SW_Case_Top.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camerahacks/lightroom-macro-pad/HEAD/case/10_SW_Case_Top.stl -------------------------------------------------------------------------------- /case/7_SW_Case_Bottom.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camerahacks/lightroom-macro-pad/HEAD/case/7_SW_Case_Bottom.3mf -------------------------------------------------------------------------------- /case/7_SW_Case_Bottom.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camerahacks/lightroom-macro-pad/HEAD/case/7_SW_Case_Bottom.stl -------------------------------------------------------------------------------- /case/7_SW_Case_Top.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camerahacks/lightroom-macro-pad/HEAD/case/7_SW_Case_Top.3mf -------------------------------------------------------------------------------- /case/7_SW_Case_Top.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camerahacks/lightroom-macro-pad/HEAD/case/7_SW_Case_Top.stl -------------------------------------------------------------------------------- /case/Tiny 2040/10_SW_Case_Tiny_2040_Bottom.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camerahacks/lightroom-macro-pad/HEAD/case/Tiny 2040/10_SW_Case_Tiny_2040_Bottom.3mf -------------------------------------------------------------------------------- /case/Tiny 2040/10_SW_Case_Tiny_2040_Bottom.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camerahacks/lightroom-macro-pad/HEAD/case/Tiny 2040/10_SW_Case_Tiny_2040_Bottom.stl -------------------------------------------------------------------------------- /case/Tiny 2040/10_SW_Case_Tiny_2040_Top.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camerahacks/lightroom-macro-pad/HEAD/case/Tiny 2040/10_SW_Case_Tiny_2040_Top.3mf -------------------------------------------------------------------------------- /case/Tiny 2040/10_SW_Case_Tiny_2040_Top.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camerahacks/lightroom-macro-pad/HEAD/case/Tiny 2040/10_SW_Case_Tiny_2040_Top.stl -------------------------------------------------------------------------------- /case/Tiny 2040/Tiny 2040 PCB Dimensions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camerahacks/lightroom-macro-pad/HEAD/case/Tiny 2040/Tiny 2040 PCB Dimensions.pdf -------------------------------------------------------------------------------- /code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camerahacks/lightroom-macro-pad/HEAD/code.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camerahacks/lightroom-macro-pad/HEAD/config.py -------------------------------------------------------------------------------- /keycaps/Keycap-Legend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camerahacks/lightroom-macro-pad/HEAD/keycaps/Keycap-Legend.svg -------------------------------------------------------------------------------- /tiny2040/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camerahacks/lightroom-macro-pad/HEAD/tiny2040/code.py -------------------------------------------------------------------------------- /tiny2040/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camerahacks/lightroom-macro-pad/HEAD/tiny2040/config.py --------------------------------------------------------------------------------