├── .gitignore ├── LICENSE ├── MagLevSwitch_MX ├── Body │ ├── AXIS.3mf │ ├── AXIS.stl │ ├── BOTTOM.3mf │ ├── BOTTOM.stl │ ├── MagLev_Switch_MX.f3z │ ├── TOP.3mf │ └── TOP.stl ├── PCB │ ├── MagLev_Switch.kicad_pcb │ ├── MagLev_Switch.pretty │ │ ├── SW_MagLev_1.00u_PCB.kicad_mod │ │ ├── SW_MagLev_2.00u_PCB.kicad_mod │ │ ├── SW_MagLev_2.00u_Vertical_PCB.kicad_mod │ │ ├── body.iges │ │ ├── fp-info-cache │ │ └── fp-lib-table │ ├── MagLev_Switch.pro │ ├── MagLev_Switch.sch │ ├── MagLev_Switch.step │ ├── MagLev_Switch │ │ ├── Switch_MagLev.dcm │ │ └── Switch_MagLev.lib │ ├── fp-info-cache │ ├── fp-lib-table │ └── sym-lib-table └── SolderingJig │ ├── SOLDERING_JIG.3mf │ └── SOLDERING_JIG.stl ├── README.md ├── Sample_Numeric_Keypad ├── Case │ ├── Case_Bottom.3mf │ ├── Case_Plate.3mf │ ├── Case_Top.3mf │ └── Case_VolumeCap.3mf ├── Code │ ├── AVR_analog_indicator │ │ ├── .vs │ │ │ └── AVR_analog_indicator │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ ├── AVR_analog_indicator.atsln │ │ └── AVR_analog_indicator │ │ │ ├── AVR_analog_indicator.componentinfo.xml │ │ │ ├── AVR_analog_indicator.cppproj │ │ │ ├── Debug │ │ │ ├── AVR_analog_indicator.eep │ │ │ ├── AVR_analog_indicator.elf │ │ │ ├── AVR_analog_indicator.hex │ │ │ ├── AVR_analog_indicator.lss │ │ │ ├── AVR_analog_indicator.map │ │ │ ├── AVR_analog_indicator.srec │ │ │ ├── Makefile │ │ │ ├── main.d │ │ │ ├── main.o │ │ │ └── makedep.mk │ │ │ └── main.cpp │ └── XIAO_key_matrix_controller │ │ ├── .gitignore │ │ ├── .vscode │ │ └── extensions.json │ │ ├── include │ │ ├── README │ │ ├── fet.cpp │ │ ├── fet.h │ │ ├── key_board.cpp │ │ ├── key_board.h │ │ ├── key_switch.cpp │ │ └── key_switch.h │ │ ├── lib │ │ └── README │ │ ├── platformio.ini │ │ ├── src │ │ ├── main.cpp │ │ └── temp.cpp.old │ │ ├── test │ │ └── README │ │ └── xiao_key_matrix_controller.code-workspace └── PCB │ ├── MagLev_Switch.pretty │ ├── SW_MagLev_1.00u_PCB.kicad_mod │ ├── SW_MagLev_2.00u_PCB.kicad_mod │ ├── SW_MagLev_2.00u_Vertical_PCB.kicad_mod │ ├── body.iges │ ├── fp-info-cache │ └── fp-lib-table │ ├── MagLev_Switch │ ├── Switch_MagLev.dcm │ └── Switch_MagLev.lib │ ├── Sample_Numeric_Keyboard.kicad_pcb │ ├── Sample_Numeric_Keyboard.net │ ├── Sample_Numeric_Keyboard.pro │ ├── Sample_Numeric_Keyboard.sch │ ├── fp-lib-table │ └── sym-lib-table └── img ├── MagLevSwitch_MX.jpg ├── Sample_Numeric_Keypad.jpg ├── cross_section.drawio.png ├── printing.jpg └── soldering.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/LICENSE -------------------------------------------------------------------------------- /MagLevSwitch_MX/Body/AXIS.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/MagLevSwitch_MX/Body/AXIS.3mf -------------------------------------------------------------------------------- /MagLevSwitch_MX/Body/AXIS.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/MagLevSwitch_MX/Body/AXIS.stl -------------------------------------------------------------------------------- /MagLevSwitch_MX/Body/BOTTOM.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/MagLevSwitch_MX/Body/BOTTOM.3mf -------------------------------------------------------------------------------- /MagLevSwitch_MX/Body/BOTTOM.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/MagLevSwitch_MX/Body/BOTTOM.stl -------------------------------------------------------------------------------- /MagLevSwitch_MX/Body/MagLev_Switch_MX.f3z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/MagLevSwitch_MX/Body/MagLev_Switch_MX.f3z -------------------------------------------------------------------------------- /MagLevSwitch_MX/Body/TOP.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/MagLevSwitch_MX/Body/TOP.3mf -------------------------------------------------------------------------------- /MagLevSwitch_MX/Body/TOP.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/MagLevSwitch_MX/Body/TOP.stl -------------------------------------------------------------------------------- /MagLevSwitch_MX/PCB/MagLev_Switch.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/MagLevSwitch_MX/PCB/MagLev_Switch.kicad_pcb -------------------------------------------------------------------------------- /MagLevSwitch_MX/PCB/MagLev_Switch.pretty/SW_MagLev_1.00u_PCB.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/MagLevSwitch_MX/PCB/MagLev_Switch.pretty/SW_MagLev_1.00u_PCB.kicad_mod -------------------------------------------------------------------------------- /MagLevSwitch_MX/PCB/MagLev_Switch.pretty/SW_MagLev_2.00u_PCB.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/MagLevSwitch_MX/PCB/MagLev_Switch.pretty/SW_MagLev_2.00u_PCB.kicad_mod -------------------------------------------------------------------------------- /MagLevSwitch_MX/PCB/MagLev_Switch.pretty/SW_MagLev_2.00u_Vertical_PCB.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/MagLevSwitch_MX/PCB/MagLev_Switch.pretty/SW_MagLev_2.00u_Vertical_PCB.kicad_mod -------------------------------------------------------------------------------- /MagLevSwitch_MX/PCB/MagLev_Switch.pretty/body.iges: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/MagLevSwitch_MX/PCB/MagLev_Switch.pretty/body.iges -------------------------------------------------------------------------------- /MagLevSwitch_MX/PCB/MagLev_Switch.pretty/fp-info-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/MagLevSwitch_MX/PCB/MagLev_Switch.pretty/fp-info-cache -------------------------------------------------------------------------------- /MagLevSwitch_MX/PCB/MagLev_Switch.pretty/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/MagLevSwitch_MX/PCB/MagLev_Switch.pretty/fp-lib-table -------------------------------------------------------------------------------- /MagLevSwitch_MX/PCB/MagLev_Switch.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/MagLevSwitch_MX/PCB/MagLev_Switch.pro -------------------------------------------------------------------------------- /MagLevSwitch_MX/PCB/MagLev_Switch.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/MagLevSwitch_MX/PCB/MagLev_Switch.sch -------------------------------------------------------------------------------- /MagLevSwitch_MX/PCB/MagLev_Switch.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/MagLevSwitch_MX/PCB/MagLev_Switch.step -------------------------------------------------------------------------------- /MagLevSwitch_MX/PCB/MagLev_Switch/Switch_MagLev.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/MagLevSwitch_MX/PCB/MagLev_Switch/Switch_MagLev.dcm -------------------------------------------------------------------------------- /MagLevSwitch_MX/PCB/MagLev_Switch/Switch_MagLev.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/MagLevSwitch_MX/PCB/MagLev_Switch/Switch_MagLev.lib -------------------------------------------------------------------------------- /MagLevSwitch_MX/PCB/fp-info-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/MagLevSwitch_MX/PCB/fp-info-cache -------------------------------------------------------------------------------- /MagLevSwitch_MX/PCB/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/MagLevSwitch_MX/PCB/fp-lib-table -------------------------------------------------------------------------------- /MagLevSwitch_MX/PCB/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/MagLevSwitch_MX/PCB/sym-lib-table -------------------------------------------------------------------------------- /MagLevSwitch_MX/SolderingJig/SOLDERING_JIG.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/MagLevSwitch_MX/SolderingJig/SOLDERING_JIG.3mf -------------------------------------------------------------------------------- /MagLevSwitch_MX/SolderingJig/SOLDERING_JIG.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/MagLevSwitch_MX/SolderingJig/SOLDERING_JIG.stl -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/README.md -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Case/Case_Bottom.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Case/Case_Bottom.3mf -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Case/Case_Plate.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Case/Case_Plate.3mf -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Case/Case_Top.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Case/Case_Top.3mf -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Case/Case_VolumeCap.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Case/Case_VolumeCap.3mf -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Code/AVR_analog_indicator/.vs/AVR_analog_indicator/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Code/AVR_analog_indicator/.vs/AVR_analog_indicator/v14/.atsuo -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Code/AVR_analog_indicator/AVR_analog_indicator.atsln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Code/AVR_analog_indicator/AVR_analog_indicator.atsln -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Code/AVR_analog_indicator/AVR_analog_indicator/AVR_analog_indicator.componentinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Code/AVR_analog_indicator/AVR_analog_indicator/AVR_analog_indicator.componentinfo.xml -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Code/AVR_analog_indicator/AVR_analog_indicator/AVR_analog_indicator.cppproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Code/AVR_analog_indicator/AVR_analog_indicator/AVR_analog_indicator.cppproj -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Code/AVR_analog_indicator/AVR_analog_indicator/Debug/AVR_analog_indicator.eep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Code/AVR_analog_indicator/AVR_analog_indicator/Debug/AVR_analog_indicator.eep -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Code/AVR_analog_indicator/AVR_analog_indicator/Debug/AVR_analog_indicator.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Code/AVR_analog_indicator/AVR_analog_indicator/Debug/AVR_analog_indicator.elf -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Code/AVR_analog_indicator/AVR_analog_indicator/Debug/AVR_analog_indicator.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Code/AVR_analog_indicator/AVR_analog_indicator/Debug/AVR_analog_indicator.hex -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Code/AVR_analog_indicator/AVR_analog_indicator/Debug/AVR_analog_indicator.lss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Code/AVR_analog_indicator/AVR_analog_indicator/Debug/AVR_analog_indicator.lss -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Code/AVR_analog_indicator/AVR_analog_indicator/Debug/AVR_analog_indicator.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Code/AVR_analog_indicator/AVR_analog_indicator/Debug/AVR_analog_indicator.map -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Code/AVR_analog_indicator/AVR_analog_indicator/Debug/AVR_analog_indicator.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Code/AVR_analog_indicator/AVR_analog_indicator/Debug/AVR_analog_indicator.srec -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Code/AVR_analog_indicator/AVR_analog_indicator/Debug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Code/AVR_analog_indicator/AVR_analog_indicator/Debug/Makefile -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Code/AVR_analog_indicator/AVR_analog_indicator/Debug/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Code/AVR_analog_indicator/AVR_analog_indicator/Debug/main.d -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Code/AVR_analog_indicator/AVR_analog_indicator/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Code/AVR_analog_indicator/AVR_analog_indicator/Debug/main.o -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Code/AVR_analog_indicator/AVR_analog_indicator/Debug/makedep.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Code/AVR_analog_indicator/AVR_analog_indicator/Debug/makedep.mk -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Code/AVR_analog_indicator/AVR_analog_indicator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Code/AVR_analog_indicator/AVR_analog_indicator/main.cpp -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Code/XIAO_key_matrix_controller/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Code/XIAO_key_matrix_controller/.gitignore -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Code/XIAO_key_matrix_controller/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Code/XIAO_key_matrix_controller/.vscode/extensions.json -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Code/XIAO_key_matrix_controller/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Code/XIAO_key_matrix_controller/include/README -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Code/XIAO_key_matrix_controller/include/fet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Code/XIAO_key_matrix_controller/include/fet.cpp -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Code/XIAO_key_matrix_controller/include/fet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Code/XIAO_key_matrix_controller/include/fet.h -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Code/XIAO_key_matrix_controller/include/key_board.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Code/XIAO_key_matrix_controller/include/key_board.cpp -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Code/XIAO_key_matrix_controller/include/key_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Code/XIAO_key_matrix_controller/include/key_board.h -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Code/XIAO_key_matrix_controller/include/key_switch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Code/XIAO_key_matrix_controller/include/key_switch.cpp -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Code/XIAO_key_matrix_controller/include/key_switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Code/XIAO_key_matrix_controller/include/key_switch.h -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Code/XIAO_key_matrix_controller/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Code/XIAO_key_matrix_controller/lib/README -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Code/XIAO_key_matrix_controller/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Code/XIAO_key_matrix_controller/platformio.ini -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Code/XIAO_key_matrix_controller/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Code/XIAO_key_matrix_controller/src/main.cpp -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Code/XIAO_key_matrix_controller/src/temp.cpp.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Code/XIAO_key_matrix_controller/src/temp.cpp.old -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Code/XIAO_key_matrix_controller/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Code/XIAO_key_matrix_controller/test/README -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/Code/XIAO_key_matrix_controller/xiao_key_matrix_controller.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/Code/XIAO_key_matrix_controller/xiao_key_matrix_controller.code-workspace -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/PCB/MagLev_Switch.pretty/SW_MagLev_1.00u_PCB.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/PCB/MagLev_Switch.pretty/SW_MagLev_1.00u_PCB.kicad_mod -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/PCB/MagLev_Switch.pretty/SW_MagLev_2.00u_PCB.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/PCB/MagLev_Switch.pretty/SW_MagLev_2.00u_PCB.kicad_mod -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/PCB/MagLev_Switch.pretty/SW_MagLev_2.00u_Vertical_PCB.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/PCB/MagLev_Switch.pretty/SW_MagLev_2.00u_Vertical_PCB.kicad_mod -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/PCB/MagLev_Switch.pretty/body.iges: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/PCB/MagLev_Switch.pretty/body.iges -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/PCB/MagLev_Switch.pretty/fp-info-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/PCB/MagLev_Switch.pretty/fp-info-cache -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/PCB/MagLev_Switch.pretty/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/PCB/MagLev_Switch.pretty/fp-lib-table -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/PCB/MagLev_Switch/Switch_MagLev.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/PCB/MagLev_Switch/Switch_MagLev.dcm -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/PCB/MagLev_Switch/Switch_MagLev.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/PCB/MagLev_Switch/Switch_MagLev.lib -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/PCB/Sample_Numeric_Keyboard.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/PCB/Sample_Numeric_Keyboard.kicad_pcb -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/PCB/Sample_Numeric_Keyboard.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/PCB/Sample_Numeric_Keyboard.net -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/PCB/Sample_Numeric_Keyboard.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/PCB/Sample_Numeric_Keyboard.pro -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/PCB/Sample_Numeric_Keyboard.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/PCB/Sample_Numeric_Keyboard.sch -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/PCB/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/PCB/fp-lib-table -------------------------------------------------------------------------------- /Sample_Numeric_Keypad/PCB/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/Sample_Numeric_Keypad/PCB/sym-lib-table -------------------------------------------------------------------------------- /img/MagLevSwitch_MX.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/img/MagLevSwitch_MX.jpg -------------------------------------------------------------------------------- /img/Sample_Numeric_Keypad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/img/Sample_Numeric_Keypad.jpg -------------------------------------------------------------------------------- /img/cross_section.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/img/cross_section.drawio.png -------------------------------------------------------------------------------- /img/printing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/img/printing.jpg -------------------------------------------------------------------------------- /img/soldering.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famichu/MagLev_Switch_MX/HEAD/img/soldering.jpg --------------------------------------------------------------------------------