├── config.h ├── info.json ├── keymaps └── via │ ├── bongocat.c │ ├── config.h │ ├── encoder.c │ ├── keymap.c │ ├── luna.c │ ├── oled.c │ ├── rules.mk │ └── snakey.c ├── readme.md ├── rules.mk ├── sofle VIA keymap.json ├── sofle VIA layout.json ├── sofle.c ├── sofle.h └── solartempest_sofle_via.hex /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solartempest/sofle/HEAD/config.h -------------------------------------------------------------------------------- /info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solartempest/sofle/HEAD/info.json -------------------------------------------------------------------------------- /keymaps/via/bongocat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solartempest/sofle/HEAD/keymaps/via/bongocat.c -------------------------------------------------------------------------------- /keymaps/via/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solartempest/sofle/HEAD/keymaps/via/config.h -------------------------------------------------------------------------------- /keymaps/via/encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solartempest/sofle/HEAD/keymaps/via/encoder.c -------------------------------------------------------------------------------- /keymaps/via/keymap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solartempest/sofle/HEAD/keymaps/via/keymap.c -------------------------------------------------------------------------------- /keymaps/via/luna.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solartempest/sofle/HEAD/keymaps/via/luna.c -------------------------------------------------------------------------------- /keymaps/via/oled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solartempest/sofle/HEAD/keymaps/via/oled.c -------------------------------------------------------------------------------- /keymaps/via/rules.mk: -------------------------------------------------------------------------------- 1 | VIA_ENABLE = yes 2 | -------------------------------------------------------------------------------- /keymaps/via/snakey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solartempest/sofle/HEAD/keymaps/via/snakey.c -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solartempest/sofle/HEAD/readme.md -------------------------------------------------------------------------------- /rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solartempest/sofle/HEAD/rules.mk -------------------------------------------------------------------------------- /sofle VIA keymap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solartempest/sofle/HEAD/sofle VIA keymap.json -------------------------------------------------------------------------------- /sofle VIA layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solartempest/sofle/HEAD/sofle VIA layout.json -------------------------------------------------------------------------------- /sofle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solartempest/sofle/HEAD/sofle.c -------------------------------------------------------------------------------- /sofle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solartempest/sofle/HEAD/sofle.h -------------------------------------------------------------------------------- /solartempest_sofle_via.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solartempest/sofle/HEAD/solartempest_sofle_via.hex --------------------------------------------------------------------------------