├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── Arduino └── package_nts1_custom_panels_index.json ├── Custom_Panel_RevC ├── Arduino │ ├── libraries │ │ └── NTS-1 │ │ │ ├── README.md │ │ │ ├── examples │ │ │ ├── Blank_Template │ │ │ │ ├── Blank_Template.ino │ │ │ │ └── README.md │ │ │ └── Sequencer_Template │ │ │ │ ├── README.md │ │ │ │ └── Sequencer_Template.ino │ │ │ ├── keywords.txt │ │ │ ├── library.properties │ │ │ └── src │ │ │ ├── nts-1.cpp │ │ │ └── nts-1.h │ └── variants │ │ └── NTS1_REF_CP_REVC │ │ ├── nts1_iface.c │ │ └── nts1_iface.h ├── BOM-mouser.pdf ├── BOM-mouser.xls ├── Gerber │ ├── NTS-1_CustomPanel.gbl │ ├── NTS-1_CustomPanel.gbo │ ├── NTS-1_CustomPanel.gbs │ ├── NTS-1_CustomPanel.gm1 │ ├── NTS-1_CustomPanel.gtl │ ├── NTS-1_CustomPanel.gto │ ├── NTS-1_CustomPanel.gts │ └── NTS-1_CustomPanel.txt ├── KiCAD │ ├── CustomPanel.pretty │ │ ├── MountingHole_3mm_3.65mm.kicad_mod │ │ ├── NTS-1_Custom_Silk.kicad_mod │ │ ├── NTS-1_Custom_Silk2.kicad_mod │ │ ├── NTS-1_Custom_Silk3.kicad_mod │ │ ├── NTS-1_Custom_Silk4.kicad_mod │ │ └── SW_Tactile_SKRH.kicad_mod │ ├── GerberOutput │ │ ├── NTS-1_CustomPanel.gbl │ │ ├── NTS-1_CustomPanel.gbo │ │ ├── NTS-1_CustomPanel.gbs │ │ ├── NTS-1_CustomPanel.gm1 │ │ ├── NTS-1_CustomPanel.gtl │ │ ├── NTS-1_CustomPanel.gto │ │ ├── NTS-1_CustomPanel.gts │ │ └── NTS-1_CustomPanel.txt │ ├── NTS-1_CustomPanel.dcm │ ├── NTS-1_CustomPanel.kicad_pcb │ ├── NTS-1_CustomPanel.net │ ├── NTS-1_CustomPanel.pro │ ├── NTS-1_CustomPanel.sch │ ├── document_outline_korg.kicad_wks │ ├── fp-lib-table │ └── sym-lib-table ├── gerber_reference.pdf ├── mount_diagram.pdf ├── pinmap.pdf └── schematic.pdf ├── LICENSE └── README.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/.gitignore -------------------------------------------------------------------------------- /Arduino/package_nts1_custom_panels_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Arduino/package_nts1_custom_panels_index.json -------------------------------------------------------------------------------- /Custom_Panel_RevC/Arduino/libraries/NTS-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/Arduino/libraries/NTS-1/README.md -------------------------------------------------------------------------------- /Custom_Panel_RevC/Arduino/libraries/NTS-1/examples/Blank_Template/Blank_Template.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/Arduino/libraries/NTS-1/examples/Blank_Template/Blank_Template.ino -------------------------------------------------------------------------------- /Custom_Panel_RevC/Arduino/libraries/NTS-1/examples/Blank_Template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/Arduino/libraries/NTS-1/examples/Blank_Template/README.md -------------------------------------------------------------------------------- /Custom_Panel_RevC/Arduino/libraries/NTS-1/examples/Sequencer_Template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/Arduino/libraries/NTS-1/examples/Sequencer_Template/README.md -------------------------------------------------------------------------------- /Custom_Panel_RevC/Arduino/libraries/NTS-1/examples/Sequencer_Template/Sequencer_Template.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/Arduino/libraries/NTS-1/examples/Sequencer_Template/Sequencer_Template.ino -------------------------------------------------------------------------------- /Custom_Panel_RevC/Arduino/libraries/NTS-1/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/Arduino/libraries/NTS-1/keywords.txt -------------------------------------------------------------------------------- /Custom_Panel_RevC/Arduino/libraries/NTS-1/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/Arduino/libraries/NTS-1/library.properties -------------------------------------------------------------------------------- /Custom_Panel_RevC/Arduino/libraries/NTS-1/src/nts-1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/Arduino/libraries/NTS-1/src/nts-1.cpp -------------------------------------------------------------------------------- /Custom_Panel_RevC/Arduino/libraries/NTS-1/src/nts-1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/Arduino/libraries/NTS-1/src/nts-1.h -------------------------------------------------------------------------------- /Custom_Panel_RevC/Arduino/variants/NTS1_REF_CP_REVC/nts1_iface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/Arduino/variants/NTS1_REF_CP_REVC/nts1_iface.c -------------------------------------------------------------------------------- /Custom_Panel_RevC/Arduino/variants/NTS1_REF_CP_REVC/nts1_iface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/Arduino/variants/NTS1_REF_CP_REVC/nts1_iface.h -------------------------------------------------------------------------------- /Custom_Panel_RevC/BOM-mouser.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/BOM-mouser.pdf -------------------------------------------------------------------------------- /Custom_Panel_RevC/BOM-mouser.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/BOM-mouser.xls -------------------------------------------------------------------------------- /Custom_Panel_RevC/Gerber/NTS-1_CustomPanel.gbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/Gerber/NTS-1_CustomPanel.gbl -------------------------------------------------------------------------------- /Custom_Panel_RevC/Gerber/NTS-1_CustomPanel.gbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/Gerber/NTS-1_CustomPanel.gbo -------------------------------------------------------------------------------- /Custom_Panel_RevC/Gerber/NTS-1_CustomPanel.gbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/Gerber/NTS-1_CustomPanel.gbs -------------------------------------------------------------------------------- /Custom_Panel_RevC/Gerber/NTS-1_CustomPanel.gm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/Gerber/NTS-1_CustomPanel.gm1 -------------------------------------------------------------------------------- /Custom_Panel_RevC/Gerber/NTS-1_CustomPanel.gtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/Gerber/NTS-1_CustomPanel.gtl -------------------------------------------------------------------------------- /Custom_Panel_RevC/Gerber/NTS-1_CustomPanel.gto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/Gerber/NTS-1_CustomPanel.gto -------------------------------------------------------------------------------- /Custom_Panel_RevC/Gerber/NTS-1_CustomPanel.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/Gerber/NTS-1_CustomPanel.gts -------------------------------------------------------------------------------- /Custom_Panel_RevC/Gerber/NTS-1_CustomPanel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/Gerber/NTS-1_CustomPanel.txt -------------------------------------------------------------------------------- /Custom_Panel_RevC/KiCAD/CustomPanel.pretty/MountingHole_3mm_3.65mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/KiCAD/CustomPanel.pretty/MountingHole_3mm_3.65mm.kicad_mod -------------------------------------------------------------------------------- /Custom_Panel_RevC/KiCAD/CustomPanel.pretty/NTS-1_Custom_Silk.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/KiCAD/CustomPanel.pretty/NTS-1_Custom_Silk.kicad_mod -------------------------------------------------------------------------------- /Custom_Panel_RevC/KiCAD/CustomPanel.pretty/NTS-1_Custom_Silk2.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/KiCAD/CustomPanel.pretty/NTS-1_Custom_Silk2.kicad_mod -------------------------------------------------------------------------------- /Custom_Panel_RevC/KiCAD/CustomPanel.pretty/NTS-1_Custom_Silk3.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/KiCAD/CustomPanel.pretty/NTS-1_Custom_Silk3.kicad_mod -------------------------------------------------------------------------------- /Custom_Panel_RevC/KiCAD/CustomPanel.pretty/NTS-1_Custom_Silk4.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/KiCAD/CustomPanel.pretty/NTS-1_Custom_Silk4.kicad_mod -------------------------------------------------------------------------------- /Custom_Panel_RevC/KiCAD/CustomPanel.pretty/SW_Tactile_SKRH.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/KiCAD/CustomPanel.pretty/SW_Tactile_SKRH.kicad_mod -------------------------------------------------------------------------------- /Custom_Panel_RevC/KiCAD/GerberOutput/NTS-1_CustomPanel.gbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/KiCAD/GerberOutput/NTS-1_CustomPanel.gbl -------------------------------------------------------------------------------- /Custom_Panel_RevC/KiCAD/GerberOutput/NTS-1_CustomPanel.gbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/KiCAD/GerberOutput/NTS-1_CustomPanel.gbo -------------------------------------------------------------------------------- /Custom_Panel_RevC/KiCAD/GerberOutput/NTS-1_CustomPanel.gbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/KiCAD/GerberOutput/NTS-1_CustomPanel.gbs -------------------------------------------------------------------------------- /Custom_Panel_RevC/KiCAD/GerberOutput/NTS-1_CustomPanel.gm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/KiCAD/GerberOutput/NTS-1_CustomPanel.gm1 -------------------------------------------------------------------------------- /Custom_Panel_RevC/KiCAD/GerberOutput/NTS-1_CustomPanel.gtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/KiCAD/GerberOutput/NTS-1_CustomPanel.gtl -------------------------------------------------------------------------------- /Custom_Panel_RevC/KiCAD/GerberOutput/NTS-1_CustomPanel.gto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/KiCAD/GerberOutput/NTS-1_CustomPanel.gto -------------------------------------------------------------------------------- /Custom_Panel_RevC/KiCAD/GerberOutput/NTS-1_CustomPanel.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/KiCAD/GerberOutput/NTS-1_CustomPanel.gts -------------------------------------------------------------------------------- /Custom_Panel_RevC/KiCAD/GerberOutput/NTS-1_CustomPanel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/KiCAD/GerberOutput/NTS-1_CustomPanel.txt -------------------------------------------------------------------------------- /Custom_Panel_RevC/KiCAD/NTS-1_CustomPanel.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/KiCAD/NTS-1_CustomPanel.dcm -------------------------------------------------------------------------------- /Custom_Panel_RevC/KiCAD/NTS-1_CustomPanel.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/KiCAD/NTS-1_CustomPanel.kicad_pcb -------------------------------------------------------------------------------- /Custom_Panel_RevC/KiCAD/NTS-1_CustomPanel.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/KiCAD/NTS-1_CustomPanel.net -------------------------------------------------------------------------------- /Custom_Panel_RevC/KiCAD/NTS-1_CustomPanel.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/KiCAD/NTS-1_CustomPanel.pro -------------------------------------------------------------------------------- /Custom_Panel_RevC/KiCAD/NTS-1_CustomPanel.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/KiCAD/NTS-1_CustomPanel.sch -------------------------------------------------------------------------------- /Custom_Panel_RevC/KiCAD/document_outline_korg.kicad_wks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/KiCAD/document_outline_korg.kicad_wks -------------------------------------------------------------------------------- /Custom_Panel_RevC/KiCAD/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/KiCAD/fp-lib-table -------------------------------------------------------------------------------- /Custom_Panel_RevC/KiCAD/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/KiCAD/sym-lib-table -------------------------------------------------------------------------------- /Custom_Panel_RevC/gerber_reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/gerber_reference.pdf -------------------------------------------------------------------------------- /Custom_Panel_RevC/mount_diagram.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/mount_diagram.pdf -------------------------------------------------------------------------------- /Custom_Panel_RevC/pinmap.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/pinmap.pdf -------------------------------------------------------------------------------- /Custom_Panel_RevC/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/Custom_Panel_RevC/schematic.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korginc/nts-1-customizations/HEAD/README.md --------------------------------------------------------------------------------