├── .gitignore ├── 3360_Mouse_pico.ino ├── APACHE LICENSE-2.0.txt ├── Case Model ├── mouse shell progress pico 2 bottom.stl ├── mouse shell progress pico 2 thumb a.stl ├── mouse shell progress pico 2 thumb b.stl ├── mouse shell progress pico 2 top.stl ├── mouse shell progress pico 2 wheel brace.stl ├── mouse shell progress pico 2 wheel.stl └── mouse shell progress pico 2.blend ├── KiCad schematic + PCB ├── KiCad.gitignore ├── jlcpcb │ └── project.db ├── mouse_pic.kicad_pcb ├── mouse_pic.kicad_prl ├── mouse_pic.kicad_pro ├── mouse_pic.kicad_sch ├── rendered │ ├── mouse_pic-brd.svg │ └── mouse_pic.svg └── sym-lib-table ├── Readme.md ├── SOLDERPAD LICENSE-2.1.txt ├── relmouse_16.h └── srom_dummy_blank.h /.gitignore: -------------------------------------------------------------------------------- 1 | # proprietary code 2 | srom_3360* 3 | # ??? 4 | .theia 5 | # backups 6 | *.blend1 7 | -------------------------------------------------------------------------------- /3360_Mouse_pico.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wareya/DIY-Gaming-Mouse/HEAD/3360_Mouse_pico.ino -------------------------------------------------------------------------------- /APACHE LICENSE-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wareya/DIY-Gaming-Mouse/HEAD/APACHE LICENSE-2.0.txt -------------------------------------------------------------------------------- /Case Model/mouse shell progress pico 2 bottom.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wareya/DIY-Gaming-Mouse/HEAD/Case Model/mouse shell progress pico 2 bottom.stl -------------------------------------------------------------------------------- /Case Model/mouse shell progress pico 2 thumb a.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wareya/DIY-Gaming-Mouse/HEAD/Case Model/mouse shell progress pico 2 thumb a.stl -------------------------------------------------------------------------------- /Case Model/mouse shell progress pico 2 thumb b.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wareya/DIY-Gaming-Mouse/HEAD/Case Model/mouse shell progress pico 2 thumb b.stl -------------------------------------------------------------------------------- /Case Model/mouse shell progress pico 2 top.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wareya/DIY-Gaming-Mouse/HEAD/Case Model/mouse shell progress pico 2 top.stl -------------------------------------------------------------------------------- /Case Model/mouse shell progress pico 2 wheel brace.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wareya/DIY-Gaming-Mouse/HEAD/Case Model/mouse shell progress pico 2 wheel brace.stl -------------------------------------------------------------------------------- /Case Model/mouse shell progress pico 2 wheel.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wareya/DIY-Gaming-Mouse/HEAD/Case Model/mouse shell progress pico 2 wheel.stl -------------------------------------------------------------------------------- /Case Model/mouse shell progress pico 2.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wareya/DIY-Gaming-Mouse/HEAD/Case Model/mouse shell progress pico 2.blend -------------------------------------------------------------------------------- /KiCad schematic + PCB/KiCad.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wareya/DIY-Gaming-Mouse/HEAD/KiCad schematic + PCB/KiCad.gitignore -------------------------------------------------------------------------------- /KiCad schematic + PCB/jlcpcb/project.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wareya/DIY-Gaming-Mouse/HEAD/KiCad schematic + PCB/jlcpcb/project.db -------------------------------------------------------------------------------- /KiCad schematic + PCB/mouse_pic.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wareya/DIY-Gaming-Mouse/HEAD/KiCad schematic + PCB/mouse_pic.kicad_pcb -------------------------------------------------------------------------------- /KiCad schematic + PCB/mouse_pic.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wareya/DIY-Gaming-Mouse/HEAD/KiCad schematic + PCB/mouse_pic.kicad_prl -------------------------------------------------------------------------------- /KiCad schematic + PCB/mouse_pic.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wareya/DIY-Gaming-Mouse/HEAD/KiCad schematic + PCB/mouse_pic.kicad_pro -------------------------------------------------------------------------------- /KiCad schematic + PCB/mouse_pic.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wareya/DIY-Gaming-Mouse/HEAD/KiCad schematic + PCB/mouse_pic.kicad_sch -------------------------------------------------------------------------------- /KiCad schematic + PCB/rendered/mouse_pic-brd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wareya/DIY-Gaming-Mouse/HEAD/KiCad schematic + PCB/rendered/mouse_pic-brd.svg -------------------------------------------------------------------------------- /KiCad schematic + PCB/rendered/mouse_pic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wareya/DIY-Gaming-Mouse/HEAD/KiCad schematic + PCB/rendered/mouse_pic.svg -------------------------------------------------------------------------------- /KiCad schematic + PCB/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wareya/DIY-Gaming-Mouse/HEAD/KiCad schematic + PCB/sym-lib-table -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wareya/DIY-Gaming-Mouse/HEAD/Readme.md -------------------------------------------------------------------------------- /SOLDERPAD LICENSE-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wareya/DIY-Gaming-Mouse/HEAD/SOLDERPAD LICENSE-2.1.txt -------------------------------------------------------------------------------- /relmouse_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wareya/DIY-Gaming-Mouse/HEAD/relmouse_16.h -------------------------------------------------------------------------------- /srom_dummy_blank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wareya/DIY-Gaming-Mouse/HEAD/srom_dummy_blank.h --------------------------------------------------------------------------------