├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── firmware └── openkey-cps2 │ └── openkey-cps2.ino ├── hardware ├── fp-lib-table ├── openkey-cps2.kicad_pcb ├── openkey-cps2.kicad_pro ├── openkey-cps2.kicad_sch ├── panel │ └── openkey-cps2-panel.kicad_pcb └── sym-lib-table └── images ├── a_34_bottom.jpg ├── a_34_installed.jpg ├── a_34_top.jpg ├── arduino_ide_settings.jpg ├── b_34_install1.jpg ├── b_34_install2.jpg ├── b_34_top.jpg ├── b_5_installed.jpg ├── b_67_bottom.jpg ├── b_67_installed.jpg ├── b_67_top.jpg ├── board.jpg ├── board_panel.jpg ├── identify_board1.jpg ├── identify_board2.jpg ├── mangled_castellated_holes.jpg ├── programming_gear.jpg ├── test_cable_cn9.jpg ├── test_cable_side_a.jpg ├── test_cable_side_b.jpg ├── test_program_correct_key.jpg └── test_program_wrong_key.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/README.md -------------------------------------------------------------------------------- /firmware/openkey-cps2/openkey-cps2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/firmware/openkey-cps2/openkey-cps2.ino -------------------------------------------------------------------------------- /hardware/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/hardware/fp-lib-table -------------------------------------------------------------------------------- /hardware/openkey-cps2.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/hardware/openkey-cps2.kicad_pcb -------------------------------------------------------------------------------- /hardware/openkey-cps2.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/hardware/openkey-cps2.kicad_pro -------------------------------------------------------------------------------- /hardware/openkey-cps2.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/hardware/openkey-cps2.kicad_sch -------------------------------------------------------------------------------- /hardware/panel/openkey-cps2-panel.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/hardware/panel/openkey-cps2-panel.kicad_pcb -------------------------------------------------------------------------------- /hardware/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/hardware/sym-lib-table -------------------------------------------------------------------------------- /images/a_34_bottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/images/a_34_bottom.jpg -------------------------------------------------------------------------------- /images/a_34_installed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/images/a_34_installed.jpg -------------------------------------------------------------------------------- /images/a_34_top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/images/a_34_top.jpg -------------------------------------------------------------------------------- /images/arduino_ide_settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/images/arduino_ide_settings.jpg -------------------------------------------------------------------------------- /images/b_34_install1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/images/b_34_install1.jpg -------------------------------------------------------------------------------- /images/b_34_install2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/images/b_34_install2.jpg -------------------------------------------------------------------------------- /images/b_34_top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/images/b_34_top.jpg -------------------------------------------------------------------------------- /images/b_5_installed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/images/b_5_installed.jpg -------------------------------------------------------------------------------- /images/b_67_bottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/images/b_67_bottom.jpg -------------------------------------------------------------------------------- /images/b_67_installed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/images/b_67_installed.jpg -------------------------------------------------------------------------------- /images/b_67_top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/images/b_67_top.jpg -------------------------------------------------------------------------------- /images/board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/images/board.jpg -------------------------------------------------------------------------------- /images/board_panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/images/board_panel.jpg -------------------------------------------------------------------------------- /images/identify_board1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/images/identify_board1.jpg -------------------------------------------------------------------------------- /images/identify_board2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/images/identify_board2.jpg -------------------------------------------------------------------------------- /images/mangled_castellated_holes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/images/mangled_castellated_holes.jpg -------------------------------------------------------------------------------- /images/programming_gear.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/images/programming_gear.jpg -------------------------------------------------------------------------------- /images/test_cable_cn9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/images/test_cable_cn9.jpg -------------------------------------------------------------------------------- /images/test_cable_side_a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/images/test_cable_side_a.jpg -------------------------------------------------------------------------------- /images/test_cable_side_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/images/test_cable_side_b.jpg -------------------------------------------------------------------------------- /images/test_program_correct_key.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/images/test_program_correct_key.jpg -------------------------------------------------------------------------------- /images/test_program_wrong_key.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/openkey-cps2/HEAD/images/test_program_wrong_key.jpg --------------------------------------------------------------------------------