├── LICENSE ├── Plate └── Slice36 Plate.dxf ├── README.md ├── Slice36 Gerbers ├── Slice36-B_Cu.gbr ├── Slice36-B_Mask.gbr ├── Slice36-B_Paste.gbr ├── Slice36-B_Silkscreen.gbr ├── Slice36-Edge_Cuts.gbr ├── Slice36-F_Cu.gbr ├── Slice36-F_Mask.gbr ├── Slice36-F_Paste.gbr ├── Slice36-F_Silkscreen.gbr ├── Slice36-NPTH.drl ├── Slice36-PTH.drl └── Slice36-job.gbrjob ├── Slice36 KMK ├── L 27-07-2022 │ ├── adafruit_pioasm.mpy │ ├── boot.py │ ├── code.py │ ├── kb.py │ └── kmk │ │ ├── __init__.py │ │ ├── consts.py │ │ ├── extensions │ │ ├── __init__.py │ │ ├── international.py │ │ ├── keymap_extras │ │ │ └── keymap_jp.py │ │ ├── led.py │ │ ├── lock_status.py │ │ ├── media_keys.py │ │ ├── rgb.py │ │ └── statusled.py │ │ ├── handlers │ │ ├── __init__.py │ │ ├── sequences.py │ │ └── stock.py │ │ ├── hid.py │ │ ├── key_validators.py │ │ ├── keys.py │ │ ├── kmk_keyboard.py │ │ ├── kmktime.py │ │ ├── matrix.py │ │ ├── modules │ │ ├── __init__.py │ │ ├── adns9800.py │ │ ├── cg_swap.py │ │ ├── combos.py │ │ ├── easypoint.py │ │ ├── encoder.py │ │ ├── holdtap.py │ │ ├── layers.py │ │ ├── midi.py │ │ ├── modtap.py │ │ ├── mouse_keys.py │ │ ├── oneshot.py │ │ ├── pimoroni_trackball.py │ │ ├── power.py │ │ ├── split.py │ │ └── tapdance.py │ │ ├── scanners │ │ ├── __init__.py │ │ └── native_keypad_scanner.py │ │ ├── transports │ │ ├── __init__.py │ │ └── pio_uart.py │ │ ├── types.py │ │ └── utils.py ├── R 27-07-2022 │ ├── adafruit_pioasm.mpy │ ├── adafruit_pixelbuf.mpy │ ├── boot.py │ ├── code.py │ ├── kb.py │ ├── kmk │ │ ├── __init__.py │ │ ├── consts.py │ │ ├── extensions │ │ │ ├── __init__.py │ │ │ ├── international.py │ │ │ ├── keymap_extras │ │ │ │ └── keymap_jp.py │ │ │ ├── led.py │ │ │ ├── lock_status.py │ │ │ ├── media_keys.py │ │ │ ├── rgb.py │ │ │ └── statusled.py │ │ ├── handlers │ │ │ ├── __init__.py │ │ │ ├── sequences.py │ │ │ └── stock.py │ │ ├── hid.py │ │ ├── key_validators.py │ │ ├── keys.py │ │ ├── kmk_keyboard.py │ │ ├── kmktime.py │ │ ├── matrix.py │ │ ├── modules │ │ │ ├── __init__.py │ │ │ ├── adns9800.py │ │ │ ├── cg_swap.py │ │ │ ├── combos.py │ │ │ ├── easypoint.py │ │ │ ├── encoder.py │ │ │ ├── holdtap.py │ │ │ ├── layers.py │ │ │ ├── midi.py │ │ │ ├── modtap.py │ │ │ ├── mouse_keys.py │ │ │ ├── oneshot.py │ │ │ ├── pimoroni_trackball.py │ │ │ ├── power.py │ │ │ ├── split.py │ │ │ └── tapdance.py │ │ ├── scanners │ │ │ ├── __init__.py │ │ │ └── native_keypad_scanner.py │ │ ├── transports │ │ │ ├── __init__.py │ │ │ └── pio_uart.py │ │ ├── types.py │ │ └── utils.py │ └── neopixel.mpy └── README.MD ├── Slice36 PCB ├── Slice36.kicad_pcb ├── Slice36.kicad_prl ├── Slice36.kicad_pro └── Slice36.kicad_sch ├── Slice36 Pictures ├── IMG_1011.JPG ├── IMG_1024.JPG ├── IMG_1027.JPG └── IMG_1029.JPG ├── Slice36.kicad_sch └── Xiao_THT.pretty └── Xiao THT V1.kicad_mod /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/LICENSE -------------------------------------------------------------------------------- /Plate/Slice36 Plate.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Plate/Slice36 Plate.dxf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/README.md -------------------------------------------------------------------------------- /Slice36 Gerbers/Slice36-B_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 Gerbers/Slice36-B_Cu.gbr -------------------------------------------------------------------------------- /Slice36 Gerbers/Slice36-B_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 Gerbers/Slice36-B_Mask.gbr -------------------------------------------------------------------------------- /Slice36 Gerbers/Slice36-B_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 Gerbers/Slice36-B_Paste.gbr -------------------------------------------------------------------------------- /Slice36 Gerbers/Slice36-B_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 Gerbers/Slice36-B_Silkscreen.gbr -------------------------------------------------------------------------------- /Slice36 Gerbers/Slice36-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 Gerbers/Slice36-Edge_Cuts.gbr -------------------------------------------------------------------------------- /Slice36 Gerbers/Slice36-F_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 Gerbers/Slice36-F_Cu.gbr -------------------------------------------------------------------------------- /Slice36 Gerbers/Slice36-F_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 Gerbers/Slice36-F_Mask.gbr -------------------------------------------------------------------------------- /Slice36 Gerbers/Slice36-F_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 Gerbers/Slice36-F_Paste.gbr -------------------------------------------------------------------------------- /Slice36 Gerbers/Slice36-F_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 Gerbers/Slice36-F_Silkscreen.gbr -------------------------------------------------------------------------------- /Slice36 Gerbers/Slice36-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 Gerbers/Slice36-NPTH.drl -------------------------------------------------------------------------------- /Slice36 Gerbers/Slice36-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 Gerbers/Slice36-PTH.drl -------------------------------------------------------------------------------- /Slice36 Gerbers/Slice36-job.gbrjob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 Gerbers/Slice36-job.gbrjob -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/adafruit_pioasm.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/adafruit_pioasm.mpy -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/boot.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/code.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kb.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/consts.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/extensions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/extensions/__init__.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/extensions/international.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/extensions/international.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/extensions/keymap_extras/keymap_jp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/extensions/keymap_extras/keymap_jp.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/extensions/led.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/extensions/led.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/extensions/lock_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/extensions/lock_status.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/extensions/media_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/extensions/media_keys.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/extensions/rgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/extensions/rgb.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/extensions/statusled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/extensions/statusled.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/handlers/sequences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/handlers/sequences.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/handlers/stock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/handlers/stock.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/hid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/hid.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/key_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/key_validators.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/keys.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/kmk_keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/kmk_keyboard.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/kmktime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/kmktime.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/matrix.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/modules/__init__.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/modules/adns9800.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/modules/adns9800.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/modules/cg_swap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/modules/cg_swap.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/modules/combos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/modules/combos.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/modules/easypoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/modules/easypoint.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/modules/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/modules/encoder.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/modules/holdtap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/modules/holdtap.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/modules/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/modules/layers.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/modules/midi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/modules/midi.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/modules/modtap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/modules/modtap.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/modules/mouse_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/modules/mouse_keys.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/modules/oneshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/modules/oneshot.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/modules/pimoroni_trackball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/modules/pimoroni_trackball.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/modules/power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/modules/power.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/modules/split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/modules/split.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/modules/tapdance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/modules/tapdance.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/scanners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/scanners/__init__.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/scanners/native_keypad_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/scanners/native_keypad_scanner.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/transports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/transports/pio_uart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/transports/pio_uart.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/types.py -------------------------------------------------------------------------------- /Slice36 KMK/L 27-07-2022/kmk/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/L 27-07-2022/kmk/utils.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/adafruit_pioasm.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/adafruit_pioasm.mpy -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/adafruit_pixelbuf.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/adafruit_pixelbuf.mpy -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/boot.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/code.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kb.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/consts.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/extensions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/extensions/__init__.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/extensions/international.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/extensions/international.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/extensions/keymap_extras/keymap_jp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/extensions/keymap_extras/keymap_jp.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/extensions/led.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/extensions/led.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/extensions/lock_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/extensions/lock_status.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/extensions/media_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/extensions/media_keys.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/extensions/rgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/extensions/rgb.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/extensions/statusled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/extensions/statusled.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/handlers/sequences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/handlers/sequences.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/handlers/stock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/handlers/stock.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/hid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/hid.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/key_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/key_validators.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/keys.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/kmk_keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/kmk_keyboard.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/kmktime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/kmktime.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/matrix.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/modules/__init__.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/modules/adns9800.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/modules/adns9800.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/modules/cg_swap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/modules/cg_swap.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/modules/combos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/modules/combos.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/modules/easypoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/modules/easypoint.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/modules/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/modules/encoder.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/modules/holdtap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/modules/holdtap.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/modules/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/modules/layers.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/modules/midi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/modules/midi.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/modules/modtap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/modules/modtap.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/modules/mouse_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/modules/mouse_keys.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/modules/oneshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/modules/oneshot.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/modules/pimoroni_trackball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/modules/pimoroni_trackball.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/modules/power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/modules/power.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/modules/split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/modules/split.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/modules/tapdance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/modules/tapdance.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/scanners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/scanners/__init__.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/scanners/native_keypad_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/scanners/native_keypad_scanner.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/transports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/transports/pio_uart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/transports/pio_uart.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/types.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/kmk/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/kmk/utils.py -------------------------------------------------------------------------------- /Slice36 KMK/R 27-07-2022/neopixel.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/R 27-07-2022/neopixel.mpy -------------------------------------------------------------------------------- /Slice36 KMK/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 KMK/README.MD -------------------------------------------------------------------------------- /Slice36 PCB/Slice36.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 PCB/Slice36.kicad_pcb -------------------------------------------------------------------------------- /Slice36 PCB/Slice36.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 PCB/Slice36.kicad_prl -------------------------------------------------------------------------------- /Slice36 PCB/Slice36.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 PCB/Slice36.kicad_pro -------------------------------------------------------------------------------- /Slice36 PCB/Slice36.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 PCB/Slice36.kicad_sch -------------------------------------------------------------------------------- /Slice36 Pictures/IMG_1011.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 Pictures/IMG_1011.JPG -------------------------------------------------------------------------------- /Slice36 Pictures/IMG_1024.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 Pictures/IMG_1024.JPG -------------------------------------------------------------------------------- /Slice36 Pictures/IMG_1027.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 Pictures/IMG_1027.JPG -------------------------------------------------------------------------------- /Slice36 Pictures/IMG_1029.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36 Pictures/IMG_1029.JPG -------------------------------------------------------------------------------- /Slice36.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Slice36.kicad_sch -------------------------------------------------------------------------------- /Xiao_THT.pretty/Xiao THT V1.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MReavley/Slice36/HEAD/Xiao_THT.pretty/Xiao THT V1.kicad_mod --------------------------------------------------------------------------------