├── .gitignore ├── LICENSE ├── README.md ├── arduino └── touchwheel0_test0 │ └── touchwheel0_test0.ino ├── circuitpython ├── buttons4x0_demo0 │ └── code.py ├── touchwheel0_demo0 │ └── code.py ├── touchwheel0_demo_dual │ ├── code.py │ └── touchslider.py └── touchwheel_badgedemo │ └── code.py ├── docs ├── buttons4x0_render_back.jpg ├── buttons4x0_render_front.jpg └── touchwheel0_photo1.jpg └── hardware ├── buttons4x0 ├── buttons4x0.kicad_pcb ├── buttons4x0.kicad_pro ├── buttons4x0.kicad_sch └── buttons4x0_sch.pdf └── touchwheel0 ├── touchwheel0.brd ├── touchwheel0.sch ├── touchwheel0_pcb.png └── touchwheel0_sch.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/touchpads/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/touchpads/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/touchpads/HEAD/README.md -------------------------------------------------------------------------------- /arduino/touchwheel0_test0/touchwheel0_test0.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/touchpads/HEAD/arduino/touchwheel0_test0/touchwheel0_test0.ino -------------------------------------------------------------------------------- /circuitpython/buttons4x0_demo0/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/touchpads/HEAD/circuitpython/buttons4x0_demo0/code.py -------------------------------------------------------------------------------- /circuitpython/touchwheel0_demo0/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/touchpads/HEAD/circuitpython/touchwheel0_demo0/code.py -------------------------------------------------------------------------------- /circuitpython/touchwheel0_demo_dual/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/touchpads/HEAD/circuitpython/touchwheel0_demo_dual/code.py -------------------------------------------------------------------------------- /circuitpython/touchwheel0_demo_dual/touchslider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/touchpads/HEAD/circuitpython/touchwheel0_demo_dual/touchslider.py -------------------------------------------------------------------------------- /circuitpython/touchwheel_badgedemo/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/touchpads/HEAD/circuitpython/touchwheel_badgedemo/code.py -------------------------------------------------------------------------------- /docs/buttons4x0_render_back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/touchpads/HEAD/docs/buttons4x0_render_back.jpg -------------------------------------------------------------------------------- /docs/buttons4x0_render_front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/touchpads/HEAD/docs/buttons4x0_render_front.jpg -------------------------------------------------------------------------------- /docs/touchwheel0_photo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/touchpads/HEAD/docs/touchwheel0_photo1.jpg -------------------------------------------------------------------------------- /hardware/buttons4x0/buttons4x0.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/touchpads/HEAD/hardware/buttons4x0/buttons4x0.kicad_pcb -------------------------------------------------------------------------------- /hardware/buttons4x0/buttons4x0.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/touchpads/HEAD/hardware/buttons4x0/buttons4x0.kicad_pro -------------------------------------------------------------------------------- /hardware/buttons4x0/buttons4x0.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/touchpads/HEAD/hardware/buttons4x0/buttons4x0.kicad_sch -------------------------------------------------------------------------------- /hardware/buttons4x0/buttons4x0_sch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/touchpads/HEAD/hardware/buttons4x0/buttons4x0_sch.pdf -------------------------------------------------------------------------------- /hardware/touchwheel0/touchwheel0.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/touchpads/HEAD/hardware/touchwheel0/touchwheel0.brd -------------------------------------------------------------------------------- /hardware/touchwheel0/touchwheel0.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/touchpads/HEAD/hardware/touchwheel0/touchwheel0.sch -------------------------------------------------------------------------------- /hardware/touchwheel0/touchwheel0_pcb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/touchpads/HEAD/hardware/touchwheel0/touchwheel0_pcb.png -------------------------------------------------------------------------------- /hardware/touchwheel0/touchwheel0_sch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/touchpads/HEAD/hardware/touchwheel0/touchwheel0_sch.pdf --------------------------------------------------------------------------------