├── .gitignore ├── LICENSE ├── README.md ├── clock-divider ├── 3d │ ├── plate.fcstd │ ├── plate.stl │ └── plate.svg ├── README.md ├── clock-divider-bom.csv ├── clock-divider.ino ├── lib │ ├── Button.cpp │ └── Led.cpp ├── pcb │ ├── board-easyeda.json │ ├── board-gerber.zip │ ├── panel-decor.svg │ ├── panel-easyeda.json │ ├── panel-font.ttf │ ├── panel-gerber.zip │ └── panel.svg ├── pictures │ ├── IMG_20190107_215258.jpg │ ├── IMG_20190112_155043.jpg │ ├── IMG_20190112_163027.jpg │ ├── IMG_20190112_224337.jpg │ ├── IMG_20190306_214855.jpg │ ├── IMG_20190307_225219.jpg │ ├── IMG_20210702_130542.jpg │ ├── IMG_20210702_130610.jpg │ ├── IMG_20210702_130733_M.jpg │ └── IMG_20210804_140742.jpg └── schematic.png ├── forks ├── 3d │ ├── plate.fcstd │ ├── plate.stl │ └── plate.svg ├── README.md ├── forks-bom.csv ├── forks.ino ├── lib │ ├── Button.cpp │ ├── CV.cpp │ └── Led.cpp ├── pcb │ ├── board-easyeda.json │ ├── board-gerber.zip │ ├── panel-decor.svg │ ├── panel-easyeda.json │ ├── panel-font.ttf │ ├── panel-gerber.zip │ └── panel.svg ├── pictures │ ├── IMG_20190120_210330.jpg │ ├── IMG_20190426_182714.jpg │ ├── IMG_20190427_112937.jpg │ ├── IMG_20190427_113603.jpg │ ├── IMG_20211223_133624.jpg │ ├── IMG_20211223_133624_T.jpg │ ├── IMG_20211223_135158_M.jpg │ ├── IMG_20211223_135315.jpg │ └── IMG_20211228_124830.jpg └── schematic.png ├── in-cv ├── 3d │ ├── plate.fcstd │ └── plate.stl ├── README.md ├── in-cv.ino ├── lib │ ├── Button.cpp │ ├── Led.cpp │ ├── MCP4728.cpp │ ├── MultiPointMap.cpp │ └── SR74HC595.cpp ├── patterns │ ├── .eslintrc.json │ ├── .gitignore │ ├── cli.js │ ├── cli.test.js │ ├── package.json │ ├── patterns.h │ └── patterns.txt ├── pcb │ ├── board-easyeda.json │ ├── board-gerber.zip │ ├── panel-art-copper.svg │ ├── panel-art-readme.txt │ ├── panel-art.svg │ ├── panel-easyeda.json │ ├── panel-font.ttf │ └── panel-gerber.zip ├── pictures │ ├── IMG_20190720_185259.jpg │ ├── IMG_20190726_192809.jpg │ ├── IMG_20190727_130919.jpg │ ├── IMG_20190727_131911.jpg │ ├── IMG_20210323_125702_M.png │ ├── IMG_20210323_125702_R.jpg │ ├── IMG_20210323_125702_S.jpg │ ├── IMG_20210323_125702_T.jpg │ ├── IMG_20210323_125946_R.jpg │ ├── IMG_20210323_125946_S.jpg │ └── IMG_20210328_141742.jpg └── schematic.png ├── lib ├── Button.cpp ├── CV.cpp ├── Led.cpp ├── MCP4728.cpp ├── MultiPointMap.cpp └── SR74HC595.cpp ├── midi4plus1 ├── 3d │ ├── plate.fcstd │ └── plate.stl ├── README.md ├── lib │ ├── Button.cpp │ ├── Led.cpp │ ├── MCP4728.cpp │ └── MultiPointMap.cpp ├── midi4plus1-bom.csv ├── midi4plus1.ino ├── mono.cpp ├── pcb │ ├── board-easyeda.json │ ├── board-gerber.zip │ ├── panel-easyeda.json │ ├── panel-font.ttf │ ├── panel-gerber.zip │ └── panel.svg ├── pictures │ ├── IMG_20200307_181436.jpg │ ├── IMG_20200413_181507.jpg │ ├── IMG_20210620_175313.jpg │ ├── IMG_20210620_175313_T.jpg │ ├── IMG_20210621_140800.jpg │ ├── IMG_20210621_140800_M.jpg │ ├── IMG_20210621_140800_T.jpg │ ├── IMG_20210621_140842.jpg │ ├── IMG_20210621_140903.jpg │ ├── IMG_20210621_140903_T.jpg │ └── IMG_20210901_124851.jpg ├── poly.cpp └── schematic.png └── tools └── mcp4728_addr ├── MCP4728.cpp ├── SoftI2cMaster.cpp ├── SoftI2cMaster.h ├── TwoWireBase.h └── mcp4728_addr.ino /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/README.md -------------------------------------------------------------------------------- /clock-divider/3d/plate.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/clock-divider/3d/plate.fcstd -------------------------------------------------------------------------------- /clock-divider/3d/plate.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/clock-divider/3d/plate.stl -------------------------------------------------------------------------------- /clock-divider/3d/plate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/clock-divider/3d/plate.svg -------------------------------------------------------------------------------- /clock-divider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/clock-divider/README.md -------------------------------------------------------------------------------- /clock-divider/clock-divider-bom.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/clock-divider/clock-divider-bom.csv -------------------------------------------------------------------------------- /clock-divider/clock-divider.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/clock-divider/clock-divider.ino -------------------------------------------------------------------------------- /clock-divider/lib/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/clock-divider/lib/Button.cpp -------------------------------------------------------------------------------- /clock-divider/lib/Led.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/clock-divider/lib/Led.cpp -------------------------------------------------------------------------------- /clock-divider/pcb/board-easyeda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/clock-divider/pcb/board-easyeda.json -------------------------------------------------------------------------------- /clock-divider/pcb/board-gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/clock-divider/pcb/board-gerber.zip -------------------------------------------------------------------------------- /clock-divider/pcb/panel-decor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/clock-divider/pcb/panel-decor.svg -------------------------------------------------------------------------------- /clock-divider/pcb/panel-easyeda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/clock-divider/pcb/panel-easyeda.json -------------------------------------------------------------------------------- /clock-divider/pcb/panel-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/clock-divider/pcb/panel-font.ttf -------------------------------------------------------------------------------- /clock-divider/pcb/panel-gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/clock-divider/pcb/panel-gerber.zip -------------------------------------------------------------------------------- /clock-divider/pcb/panel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/clock-divider/pcb/panel.svg -------------------------------------------------------------------------------- /clock-divider/pictures/IMG_20190107_215258.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/clock-divider/pictures/IMG_20190107_215258.jpg -------------------------------------------------------------------------------- /clock-divider/pictures/IMG_20190112_155043.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/clock-divider/pictures/IMG_20190112_155043.jpg -------------------------------------------------------------------------------- /clock-divider/pictures/IMG_20190112_163027.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/clock-divider/pictures/IMG_20190112_163027.jpg -------------------------------------------------------------------------------- /clock-divider/pictures/IMG_20190112_224337.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/clock-divider/pictures/IMG_20190112_224337.jpg -------------------------------------------------------------------------------- /clock-divider/pictures/IMG_20190306_214855.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/clock-divider/pictures/IMG_20190306_214855.jpg -------------------------------------------------------------------------------- /clock-divider/pictures/IMG_20190307_225219.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/clock-divider/pictures/IMG_20190307_225219.jpg -------------------------------------------------------------------------------- /clock-divider/pictures/IMG_20210702_130542.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/clock-divider/pictures/IMG_20210702_130542.jpg -------------------------------------------------------------------------------- /clock-divider/pictures/IMG_20210702_130610.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/clock-divider/pictures/IMG_20210702_130610.jpg -------------------------------------------------------------------------------- /clock-divider/pictures/IMG_20210702_130733_M.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/clock-divider/pictures/IMG_20210702_130733_M.jpg -------------------------------------------------------------------------------- /clock-divider/pictures/IMG_20210804_140742.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/clock-divider/pictures/IMG_20210804_140742.jpg -------------------------------------------------------------------------------- /clock-divider/schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/clock-divider/schematic.png -------------------------------------------------------------------------------- /forks/3d/plate.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/forks/3d/plate.fcstd -------------------------------------------------------------------------------- /forks/3d/plate.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/forks/3d/plate.stl -------------------------------------------------------------------------------- /forks/3d/plate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/forks/3d/plate.svg -------------------------------------------------------------------------------- /forks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/forks/README.md -------------------------------------------------------------------------------- /forks/forks-bom.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/forks/forks-bom.csv -------------------------------------------------------------------------------- /forks/forks.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/forks/forks.ino -------------------------------------------------------------------------------- /forks/lib/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/forks/lib/Button.cpp -------------------------------------------------------------------------------- /forks/lib/CV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/forks/lib/CV.cpp -------------------------------------------------------------------------------- /forks/lib/Led.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/forks/lib/Led.cpp -------------------------------------------------------------------------------- /forks/pcb/board-easyeda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/forks/pcb/board-easyeda.json -------------------------------------------------------------------------------- /forks/pcb/board-gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/forks/pcb/board-gerber.zip -------------------------------------------------------------------------------- /forks/pcb/panel-decor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/forks/pcb/panel-decor.svg -------------------------------------------------------------------------------- /forks/pcb/panel-easyeda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/forks/pcb/panel-easyeda.json -------------------------------------------------------------------------------- /forks/pcb/panel-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/forks/pcb/panel-font.ttf -------------------------------------------------------------------------------- /forks/pcb/panel-gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/forks/pcb/panel-gerber.zip -------------------------------------------------------------------------------- /forks/pcb/panel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/forks/pcb/panel.svg -------------------------------------------------------------------------------- /forks/pictures/IMG_20190120_210330.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/forks/pictures/IMG_20190120_210330.jpg -------------------------------------------------------------------------------- /forks/pictures/IMG_20190426_182714.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/forks/pictures/IMG_20190426_182714.jpg -------------------------------------------------------------------------------- /forks/pictures/IMG_20190427_112937.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/forks/pictures/IMG_20190427_112937.jpg -------------------------------------------------------------------------------- /forks/pictures/IMG_20190427_113603.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/forks/pictures/IMG_20190427_113603.jpg -------------------------------------------------------------------------------- /forks/pictures/IMG_20211223_133624.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/forks/pictures/IMG_20211223_133624.jpg -------------------------------------------------------------------------------- /forks/pictures/IMG_20211223_133624_T.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/forks/pictures/IMG_20211223_133624_T.jpg -------------------------------------------------------------------------------- /forks/pictures/IMG_20211223_135158_M.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/forks/pictures/IMG_20211223_135158_M.jpg -------------------------------------------------------------------------------- /forks/pictures/IMG_20211223_135315.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/forks/pictures/IMG_20211223_135315.jpg -------------------------------------------------------------------------------- /forks/pictures/IMG_20211228_124830.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/forks/pictures/IMG_20211228_124830.jpg -------------------------------------------------------------------------------- /forks/schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/forks/schematic.png -------------------------------------------------------------------------------- /in-cv/3d/plate.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/3d/plate.fcstd -------------------------------------------------------------------------------- /in-cv/3d/plate.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/3d/plate.stl -------------------------------------------------------------------------------- /in-cv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/README.md -------------------------------------------------------------------------------- /in-cv/in-cv.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/in-cv.ino -------------------------------------------------------------------------------- /in-cv/lib/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/lib/Button.cpp -------------------------------------------------------------------------------- /in-cv/lib/Led.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/lib/Led.cpp -------------------------------------------------------------------------------- /in-cv/lib/MCP4728.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/lib/MCP4728.cpp -------------------------------------------------------------------------------- /in-cv/lib/MultiPointMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/lib/MultiPointMap.cpp -------------------------------------------------------------------------------- /in-cv/lib/SR74HC595.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/lib/SR74HC595.cpp -------------------------------------------------------------------------------- /in-cv/patterns/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/patterns/.eslintrc.json -------------------------------------------------------------------------------- /in-cv/patterns/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/patterns/.gitignore -------------------------------------------------------------------------------- /in-cv/patterns/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/patterns/cli.js -------------------------------------------------------------------------------- /in-cv/patterns/cli.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/patterns/cli.test.js -------------------------------------------------------------------------------- /in-cv/patterns/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/patterns/package.json -------------------------------------------------------------------------------- /in-cv/patterns/patterns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/patterns/patterns.h -------------------------------------------------------------------------------- /in-cv/patterns/patterns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/patterns/patterns.txt -------------------------------------------------------------------------------- /in-cv/pcb/board-easyeda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/pcb/board-easyeda.json -------------------------------------------------------------------------------- /in-cv/pcb/board-gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/pcb/board-gerber.zip -------------------------------------------------------------------------------- /in-cv/pcb/panel-art-copper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/pcb/panel-art-copper.svg -------------------------------------------------------------------------------- /in-cv/pcb/panel-art-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/pcb/panel-art-readme.txt -------------------------------------------------------------------------------- /in-cv/pcb/panel-art.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/pcb/panel-art.svg -------------------------------------------------------------------------------- /in-cv/pcb/panel-easyeda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/pcb/panel-easyeda.json -------------------------------------------------------------------------------- /in-cv/pcb/panel-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/pcb/panel-font.ttf -------------------------------------------------------------------------------- /in-cv/pcb/panel-gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/pcb/panel-gerber.zip -------------------------------------------------------------------------------- /in-cv/pictures/IMG_20190720_185259.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/pictures/IMG_20190720_185259.jpg -------------------------------------------------------------------------------- /in-cv/pictures/IMG_20190726_192809.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/pictures/IMG_20190726_192809.jpg -------------------------------------------------------------------------------- /in-cv/pictures/IMG_20190727_130919.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/pictures/IMG_20190727_130919.jpg -------------------------------------------------------------------------------- /in-cv/pictures/IMG_20190727_131911.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/pictures/IMG_20190727_131911.jpg -------------------------------------------------------------------------------- /in-cv/pictures/IMG_20210323_125702_M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/pictures/IMG_20210323_125702_M.png -------------------------------------------------------------------------------- /in-cv/pictures/IMG_20210323_125702_R.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/pictures/IMG_20210323_125702_R.jpg -------------------------------------------------------------------------------- /in-cv/pictures/IMG_20210323_125702_S.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/pictures/IMG_20210323_125702_S.jpg -------------------------------------------------------------------------------- /in-cv/pictures/IMG_20210323_125702_T.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/pictures/IMG_20210323_125702_T.jpg -------------------------------------------------------------------------------- /in-cv/pictures/IMG_20210323_125946_R.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/pictures/IMG_20210323_125946_R.jpg -------------------------------------------------------------------------------- /in-cv/pictures/IMG_20210323_125946_S.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/pictures/IMG_20210323_125946_S.jpg -------------------------------------------------------------------------------- /in-cv/pictures/IMG_20210328_141742.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/pictures/IMG_20210328_141742.jpg -------------------------------------------------------------------------------- /in-cv/schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/in-cv/schematic.png -------------------------------------------------------------------------------- /lib/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/lib/Button.cpp -------------------------------------------------------------------------------- /lib/CV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/lib/CV.cpp -------------------------------------------------------------------------------- /lib/Led.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/lib/Led.cpp -------------------------------------------------------------------------------- /lib/MCP4728.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/lib/MCP4728.cpp -------------------------------------------------------------------------------- /lib/MultiPointMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/lib/MultiPointMap.cpp -------------------------------------------------------------------------------- /lib/SR74HC595.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/lib/SR74HC595.cpp -------------------------------------------------------------------------------- /midi4plus1/3d/plate.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/midi4plus1/3d/plate.fcstd -------------------------------------------------------------------------------- /midi4plus1/3d/plate.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/midi4plus1/3d/plate.stl -------------------------------------------------------------------------------- /midi4plus1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/midi4plus1/README.md -------------------------------------------------------------------------------- /midi4plus1/lib/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/midi4plus1/lib/Button.cpp -------------------------------------------------------------------------------- /midi4plus1/lib/Led.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/midi4plus1/lib/Led.cpp -------------------------------------------------------------------------------- /midi4plus1/lib/MCP4728.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/midi4plus1/lib/MCP4728.cpp -------------------------------------------------------------------------------- /midi4plus1/lib/MultiPointMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/midi4plus1/lib/MultiPointMap.cpp -------------------------------------------------------------------------------- /midi4plus1/midi4plus1-bom.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/midi4plus1/midi4plus1-bom.csv -------------------------------------------------------------------------------- /midi4plus1/midi4plus1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/midi4plus1/midi4plus1.ino -------------------------------------------------------------------------------- /midi4plus1/mono.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/midi4plus1/mono.cpp -------------------------------------------------------------------------------- /midi4plus1/pcb/board-easyeda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/midi4plus1/pcb/board-easyeda.json -------------------------------------------------------------------------------- /midi4plus1/pcb/board-gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/midi4plus1/pcb/board-gerber.zip -------------------------------------------------------------------------------- /midi4plus1/pcb/panel-easyeda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/midi4plus1/pcb/panel-easyeda.json -------------------------------------------------------------------------------- /midi4plus1/pcb/panel-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/midi4plus1/pcb/panel-font.ttf -------------------------------------------------------------------------------- /midi4plus1/pcb/panel-gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/midi4plus1/pcb/panel-gerber.zip -------------------------------------------------------------------------------- /midi4plus1/pcb/panel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/midi4plus1/pcb/panel.svg -------------------------------------------------------------------------------- /midi4plus1/pictures/IMG_20200307_181436.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/midi4plus1/pictures/IMG_20200307_181436.jpg -------------------------------------------------------------------------------- /midi4plus1/pictures/IMG_20200413_181507.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/midi4plus1/pictures/IMG_20200413_181507.jpg -------------------------------------------------------------------------------- /midi4plus1/pictures/IMG_20210620_175313.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/midi4plus1/pictures/IMG_20210620_175313.jpg -------------------------------------------------------------------------------- /midi4plus1/pictures/IMG_20210620_175313_T.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/midi4plus1/pictures/IMG_20210620_175313_T.jpg -------------------------------------------------------------------------------- /midi4plus1/pictures/IMG_20210621_140800.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/midi4plus1/pictures/IMG_20210621_140800.jpg -------------------------------------------------------------------------------- /midi4plus1/pictures/IMG_20210621_140800_M.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/midi4plus1/pictures/IMG_20210621_140800_M.jpg -------------------------------------------------------------------------------- /midi4plus1/pictures/IMG_20210621_140800_T.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/midi4plus1/pictures/IMG_20210621_140800_T.jpg -------------------------------------------------------------------------------- /midi4plus1/pictures/IMG_20210621_140842.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/midi4plus1/pictures/IMG_20210621_140842.jpg -------------------------------------------------------------------------------- /midi4plus1/pictures/IMG_20210621_140903.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/midi4plus1/pictures/IMG_20210621_140903.jpg -------------------------------------------------------------------------------- /midi4plus1/pictures/IMG_20210621_140903_T.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/midi4plus1/pictures/IMG_20210621_140903_T.jpg -------------------------------------------------------------------------------- /midi4plus1/pictures/IMG_20210901_124851.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/midi4plus1/pictures/IMG_20210901_124851.jpg -------------------------------------------------------------------------------- /midi4plus1/poly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/midi4plus1/poly.cpp -------------------------------------------------------------------------------- /midi4plus1/schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/midi4plus1/schematic.png -------------------------------------------------------------------------------- /tools/mcp4728_addr/MCP4728.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/tools/mcp4728_addr/MCP4728.cpp -------------------------------------------------------------------------------- /tools/mcp4728_addr/SoftI2cMaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/tools/mcp4728_addr/SoftI2cMaster.cpp -------------------------------------------------------------------------------- /tools/mcp4728_addr/SoftI2cMaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/tools/mcp4728_addr/SoftI2cMaster.h -------------------------------------------------------------------------------- /tools/mcp4728_addr/TwoWireBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/tools/mcp4728_addr/TwoWireBase.h -------------------------------------------------------------------------------- /tools/mcp4728_addr/mcp4728_addr.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeSeggiola/arduino-eurorack-projects/HEAD/tools/mcp4728_addr/mcp4728_addr.ino --------------------------------------------------------------------------------