├── .gitignore ├── .gitmodules ├── BUGS ├── LICENSE ├── Makefile ├── README ├── firmware-pcb ├── Makefile ├── README ├── config.h ├── keymap_common.c ├── keymap_common.h ├── keymap_iso50.c ├── led.c ├── matrix.c └── tmk_keyboard ├── firmware ├── Makefile ├── README ├── config.h ├── keymap_common.c ├── keymap_common.h ├── keymap_iso50.c ├── led.c └── matrix.c └── hardware ├── Makefile ├── README ├── bottom-label-de.svg ├── bottom-label-pcb-de.svg ├── bottom-plate-pcb.dxf ├── bottom-plate.dxf ├── foot-template-pcb.dxf ├── foot-template.dxf ├── frame-pcb.dxf ├── frame-pcb.scad ├── frame.dxf ├── frame.scad ├── pcb-bottom-plate ├── footprints.pretty │ ├── Clearing.kicad_mod │ ├── Connector_B_5x10mm.kicad_mod │ ├── MountingHole_2.2mm_M2_Pad.kicad_mod │ ├── MountingHole_2.2mm_M2_Pad_Via.kicad_mod │ ├── MountingHole_3mm.kicad_mod │ └── SolderWirePad_single_SMD_5x10mm.kicad_mod ├── fp-lib-table ├── pcb-bottom-plate-cache.lib ├── pcb-bottom-plate.kicad_pcb ├── pcb-bottom-plate.pro └── pcb-bottom-plate.sch ├── pcb-main ├── footprints.pretty │ ├── C_1206_HandSoldering.kicad_mod │ ├── Crystal_HC49-U_Vertical.kicad_mod │ ├── LED-3MM.kicad_mod │ ├── MLF-44_Atmel.kicad_mod │ ├── MXDIODE.kicad_mod │ ├── MountingHole_4mm.kicad_mod │ ├── MountingHole_5mm.kicad_mod │ ├── OSHW-Logo_7.5x8mm_Copper.kicad_mod │ ├── OSHW-Logo_7.5x8mm_SilkScreen.kicad_mod │ ├── Resistor_Horizontal_RM7mm.kicad_mod │ ├── SW_PUSH_SMALL.kicad_mod │ ├── Spring-Contact_SMD.kicad_mod │ └── USB_Micro-207A-BBA0-R.kicad_mod ├── fp-lib-table ├── led.sch ├── lib │ ├── aker.lib │ ├── atmega32u4.lib │ ├── conn.lib │ ├── device.lib │ ├── dtsjw.lib │ ├── mx1a-simple.lib │ ├── oupiin_usb.lib │ └── power.lib ├── matrix.sch ├── pcb-cache.dcm ├── pcb-cache.lib ├── pcb.dcm ├── pcb.kicad_pcb ├── pcb.lib ├── pcb.pro └── pcb.sch ├── pcb-top-plate ├── footprints.pretty │ ├── Connector_B_5x10mm.kicad_mod │ ├── MountingHole_2.2mm_M2_Pad.kicad_mod │ ├── MountingHole_2.2mm_M2_Pad_Via.kicad_mod │ ├── MountingHole_3mm.kicad_mod │ └── SolderWirePad_single_SMD_5x10mm.kicad_mod ├── fp-lib-table ├── pcb-top-plate-cache.lib ├── pcb-top-plate.kicad_pcb ├── pcb-top-plate.pro └── pcb-top-plate.sch ├── top-plate-pcb-pcb.dxf ├── top-plate-pcb.dxf └── top-plate.dxf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/.gitmodules -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/BUGS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/README -------------------------------------------------------------------------------- /firmware-pcb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/firmware-pcb/Makefile -------------------------------------------------------------------------------- /firmware-pcb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/firmware-pcb/README -------------------------------------------------------------------------------- /firmware-pcb/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/firmware-pcb/config.h -------------------------------------------------------------------------------- /firmware-pcb/keymap_common.c: -------------------------------------------------------------------------------- 1 | ../firmware/keymap_common.c -------------------------------------------------------------------------------- /firmware-pcb/keymap_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/firmware-pcb/keymap_common.h -------------------------------------------------------------------------------- /firmware-pcb/keymap_iso50.c: -------------------------------------------------------------------------------- 1 | ../firmware/keymap_iso50.c -------------------------------------------------------------------------------- /firmware-pcb/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/firmware-pcb/led.c -------------------------------------------------------------------------------- /firmware-pcb/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/firmware-pcb/matrix.c -------------------------------------------------------------------------------- /firmware-pcb/tmk_keyboard: -------------------------------------------------------------------------------- 1 | ../firmware/tmk_keyboard -------------------------------------------------------------------------------- /firmware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/firmware/Makefile -------------------------------------------------------------------------------- /firmware/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/firmware/README -------------------------------------------------------------------------------- /firmware/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/firmware/config.h -------------------------------------------------------------------------------- /firmware/keymap_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/firmware/keymap_common.c -------------------------------------------------------------------------------- /firmware/keymap_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/firmware/keymap_common.h -------------------------------------------------------------------------------- /firmware/keymap_iso50.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/firmware/keymap_iso50.c -------------------------------------------------------------------------------- /firmware/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/firmware/led.c -------------------------------------------------------------------------------- /firmware/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/firmware/matrix.c -------------------------------------------------------------------------------- /hardware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/Makefile -------------------------------------------------------------------------------- /hardware/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/README -------------------------------------------------------------------------------- /hardware/bottom-label-de.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/bottom-label-de.svg -------------------------------------------------------------------------------- /hardware/bottom-label-pcb-de.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/bottom-label-pcb-de.svg -------------------------------------------------------------------------------- /hardware/bottom-plate-pcb.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/bottom-plate-pcb.dxf -------------------------------------------------------------------------------- /hardware/bottom-plate.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/bottom-plate.dxf -------------------------------------------------------------------------------- /hardware/foot-template-pcb.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/foot-template-pcb.dxf -------------------------------------------------------------------------------- /hardware/foot-template.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/foot-template.dxf -------------------------------------------------------------------------------- /hardware/frame-pcb.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/frame-pcb.dxf -------------------------------------------------------------------------------- /hardware/frame-pcb.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/frame-pcb.scad -------------------------------------------------------------------------------- /hardware/frame.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/frame.dxf -------------------------------------------------------------------------------- /hardware/frame.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/frame.scad -------------------------------------------------------------------------------- /hardware/pcb-bottom-plate/footprints.pretty/Clearing.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-bottom-plate/footprints.pretty/Clearing.kicad_mod -------------------------------------------------------------------------------- /hardware/pcb-bottom-plate/footprints.pretty/Connector_B_5x10mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-bottom-plate/footprints.pretty/Connector_B_5x10mm.kicad_mod -------------------------------------------------------------------------------- /hardware/pcb-bottom-plate/footprints.pretty/MountingHole_2.2mm_M2_Pad.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-bottom-plate/footprints.pretty/MountingHole_2.2mm_M2_Pad.kicad_mod -------------------------------------------------------------------------------- /hardware/pcb-bottom-plate/footprints.pretty/MountingHole_2.2mm_M2_Pad_Via.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-bottom-plate/footprints.pretty/MountingHole_2.2mm_M2_Pad_Via.kicad_mod -------------------------------------------------------------------------------- /hardware/pcb-bottom-plate/footprints.pretty/MountingHole_3mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-bottom-plate/footprints.pretty/MountingHole_3mm.kicad_mod -------------------------------------------------------------------------------- /hardware/pcb-bottom-plate/footprints.pretty/SolderWirePad_single_SMD_5x10mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-bottom-plate/footprints.pretty/SolderWirePad_single_SMD_5x10mm.kicad_mod -------------------------------------------------------------------------------- /hardware/pcb-bottom-plate/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-bottom-plate/fp-lib-table -------------------------------------------------------------------------------- /hardware/pcb-bottom-plate/pcb-bottom-plate-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-bottom-plate/pcb-bottom-plate-cache.lib -------------------------------------------------------------------------------- /hardware/pcb-bottom-plate/pcb-bottom-plate.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-bottom-plate/pcb-bottom-plate.kicad_pcb -------------------------------------------------------------------------------- /hardware/pcb-bottom-plate/pcb-bottom-plate.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-bottom-plate/pcb-bottom-plate.pro -------------------------------------------------------------------------------- /hardware/pcb-bottom-plate/pcb-bottom-plate.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-bottom-plate/pcb-bottom-plate.sch -------------------------------------------------------------------------------- /hardware/pcb-main/footprints.pretty/C_1206_HandSoldering.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-main/footprints.pretty/C_1206_HandSoldering.kicad_mod -------------------------------------------------------------------------------- /hardware/pcb-main/footprints.pretty/Crystal_HC49-U_Vertical.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-main/footprints.pretty/Crystal_HC49-U_Vertical.kicad_mod -------------------------------------------------------------------------------- /hardware/pcb-main/footprints.pretty/LED-3MM.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-main/footprints.pretty/LED-3MM.kicad_mod -------------------------------------------------------------------------------- /hardware/pcb-main/footprints.pretty/MLF-44_Atmel.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-main/footprints.pretty/MLF-44_Atmel.kicad_mod -------------------------------------------------------------------------------- /hardware/pcb-main/footprints.pretty/MXDIODE.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-main/footprints.pretty/MXDIODE.kicad_mod -------------------------------------------------------------------------------- /hardware/pcb-main/footprints.pretty/MountingHole_4mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-main/footprints.pretty/MountingHole_4mm.kicad_mod -------------------------------------------------------------------------------- /hardware/pcb-main/footprints.pretty/MountingHole_5mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-main/footprints.pretty/MountingHole_5mm.kicad_mod -------------------------------------------------------------------------------- /hardware/pcb-main/footprints.pretty/OSHW-Logo_7.5x8mm_Copper.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-main/footprints.pretty/OSHW-Logo_7.5x8mm_Copper.kicad_mod -------------------------------------------------------------------------------- /hardware/pcb-main/footprints.pretty/OSHW-Logo_7.5x8mm_SilkScreen.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-main/footprints.pretty/OSHW-Logo_7.5x8mm_SilkScreen.kicad_mod -------------------------------------------------------------------------------- /hardware/pcb-main/footprints.pretty/Resistor_Horizontal_RM7mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-main/footprints.pretty/Resistor_Horizontal_RM7mm.kicad_mod -------------------------------------------------------------------------------- /hardware/pcb-main/footprints.pretty/SW_PUSH_SMALL.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-main/footprints.pretty/SW_PUSH_SMALL.kicad_mod -------------------------------------------------------------------------------- /hardware/pcb-main/footprints.pretty/Spring-Contact_SMD.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-main/footprints.pretty/Spring-Contact_SMD.kicad_mod -------------------------------------------------------------------------------- /hardware/pcb-main/footprints.pretty/USB_Micro-207A-BBA0-R.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-main/footprints.pretty/USB_Micro-207A-BBA0-R.kicad_mod -------------------------------------------------------------------------------- /hardware/pcb-main/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-main/fp-lib-table -------------------------------------------------------------------------------- /hardware/pcb-main/led.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-main/led.sch -------------------------------------------------------------------------------- /hardware/pcb-main/lib/aker.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-main/lib/aker.lib -------------------------------------------------------------------------------- /hardware/pcb-main/lib/atmega32u4.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-main/lib/atmega32u4.lib -------------------------------------------------------------------------------- /hardware/pcb-main/lib/conn.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-main/lib/conn.lib -------------------------------------------------------------------------------- /hardware/pcb-main/lib/device.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-main/lib/device.lib -------------------------------------------------------------------------------- /hardware/pcb-main/lib/dtsjw.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-main/lib/dtsjw.lib -------------------------------------------------------------------------------- /hardware/pcb-main/lib/mx1a-simple.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-main/lib/mx1a-simple.lib -------------------------------------------------------------------------------- /hardware/pcb-main/lib/oupiin_usb.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-main/lib/oupiin_usb.lib -------------------------------------------------------------------------------- /hardware/pcb-main/lib/power.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-main/lib/power.lib -------------------------------------------------------------------------------- /hardware/pcb-main/matrix.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-main/matrix.sch -------------------------------------------------------------------------------- /hardware/pcb-main/pcb-cache.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /hardware/pcb-main/pcb-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-main/pcb-cache.lib -------------------------------------------------------------------------------- /hardware/pcb-main/pcb.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /hardware/pcb-main/pcb.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-main/pcb.kicad_pcb -------------------------------------------------------------------------------- /hardware/pcb-main/pcb.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-main/pcb.lib -------------------------------------------------------------------------------- /hardware/pcb-main/pcb.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-main/pcb.pro -------------------------------------------------------------------------------- /hardware/pcb-main/pcb.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-main/pcb.sch -------------------------------------------------------------------------------- /hardware/pcb-top-plate/footprints.pretty/Connector_B_5x10mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-top-plate/footprints.pretty/Connector_B_5x10mm.kicad_mod -------------------------------------------------------------------------------- /hardware/pcb-top-plate/footprints.pretty/MountingHole_2.2mm_M2_Pad.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-top-plate/footprints.pretty/MountingHole_2.2mm_M2_Pad.kicad_mod -------------------------------------------------------------------------------- /hardware/pcb-top-plate/footprints.pretty/MountingHole_2.2mm_M2_Pad_Via.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-top-plate/footprints.pretty/MountingHole_2.2mm_M2_Pad_Via.kicad_mod -------------------------------------------------------------------------------- /hardware/pcb-top-plate/footprints.pretty/MountingHole_3mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-top-plate/footprints.pretty/MountingHole_3mm.kicad_mod -------------------------------------------------------------------------------- /hardware/pcb-top-plate/footprints.pretty/SolderWirePad_single_SMD_5x10mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-top-plate/footprints.pretty/SolderWirePad_single_SMD_5x10mm.kicad_mod -------------------------------------------------------------------------------- /hardware/pcb-top-plate/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-top-plate/fp-lib-table -------------------------------------------------------------------------------- /hardware/pcb-top-plate/pcb-top-plate-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-top-plate/pcb-top-plate-cache.lib -------------------------------------------------------------------------------- /hardware/pcb-top-plate/pcb-top-plate.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-top-plate/pcb-top-plate.kicad_pcb -------------------------------------------------------------------------------- /hardware/pcb-top-plate/pcb-top-plate.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-top-plate/pcb-top-plate.pro -------------------------------------------------------------------------------- /hardware/pcb-top-plate/pcb-top-plate.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/pcb-top-plate/pcb-top-plate.sch -------------------------------------------------------------------------------- /hardware/top-plate-pcb-pcb.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/top-plate-pcb-pcb.dxf -------------------------------------------------------------------------------- /hardware/top-plate-pcb.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/top-plate-pcb.dxf -------------------------------------------------------------------------------- /hardware/top-plate.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebb/iso50/HEAD/hardware/top-plate.dxf --------------------------------------------------------------------------------