├── .gitignore ├── MIDI_x0x ├── AH_MCP4922 │ ├── AH_MCP4922.cpp │ ├── AH_MCP4922.h │ └── examples │ │ └── DAC_MCP4922_H │ │ └── DAC_MCP4922_H.pde ├── DS1267 │ ├── DS1267.cpp │ └── DS1267.h └── MIDI_x0x.ino ├── README.md ├── atmega_x0x_midi_layout.png ├── eagle ├── atmega_midi_x0x_heart.bot.drill.nc ├── atmega_midi_x0x_heart.bot.etch.nc ├── atmega_midi_x0x_heart.bot.mill.nc ├── atmega_midi_x0x_heart.brd ├── atmega_midi_x0x_heart.sch └── atmega_midi_x0x_heart.top.mill.nc └── x0x_heart_midi_device_panel.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbeuckm/atmega_midi_x0x_heart/HEAD/.gitignore -------------------------------------------------------------------------------- /MIDI_x0x/AH_MCP4922/AH_MCP4922.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbeuckm/atmega_midi_x0x_heart/HEAD/MIDI_x0x/AH_MCP4922/AH_MCP4922.cpp -------------------------------------------------------------------------------- /MIDI_x0x/AH_MCP4922/AH_MCP4922.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbeuckm/atmega_midi_x0x_heart/HEAD/MIDI_x0x/AH_MCP4922/AH_MCP4922.h -------------------------------------------------------------------------------- /MIDI_x0x/AH_MCP4922/examples/DAC_MCP4922_H/DAC_MCP4922_H.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbeuckm/atmega_midi_x0x_heart/HEAD/MIDI_x0x/AH_MCP4922/examples/DAC_MCP4922_H/DAC_MCP4922_H.pde -------------------------------------------------------------------------------- /MIDI_x0x/DS1267/DS1267.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbeuckm/atmega_midi_x0x_heart/HEAD/MIDI_x0x/DS1267/DS1267.cpp -------------------------------------------------------------------------------- /MIDI_x0x/DS1267/DS1267.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbeuckm/atmega_midi_x0x_heart/HEAD/MIDI_x0x/DS1267/DS1267.h -------------------------------------------------------------------------------- /MIDI_x0x/MIDI_x0x.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbeuckm/atmega_midi_x0x_heart/HEAD/MIDI_x0x/MIDI_x0x.ino -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbeuckm/atmega_midi_x0x_heart/HEAD/README.md -------------------------------------------------------------------------------- /atmega_x0x_midi_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbeuckm/atmega_midi_x0x_heart/HEAD/atmega_x0x_midi_layout.png -------------------------------------------------------------------------------- /eagle/atmega_midi_x0x_heart.bot.drill.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbeuckm/atmega_midi_x0x_heart/HEAD/eagle/atmega_midi_x0x_heart.bot.drill.nc -------------------------------------------------------------------------------- /eagle/atmega_midi_x0x_heart.bot.etch.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbeuckm/atmega_midi_x0x_heart/HEAD/eagle/atmega_midi_x0x_heart.bot.etch.nc -------------------------------------------------------------------------------- /eagle/atmega_midi_x0x_heart.bot.mill.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbeuckm/atmega_midi_x0x_heart/HEAD/eagle/atmega_midi_x0x_heart.bot.mill.nc -------------------------------------------------------------------------------- /eagle/atmega_midi_x0x_heart.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbeuckm/atmega_midi_x0x_heart/HEAD/eagle/atmega_midi_x0x_heart.brd -------------------------------------------------------------------------------- /eagle/atmega_midi_x0x_heart.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbeuckm/atmega_midi_x0x_heart/HEAD/eagle/atmega_midi_x0x_heart.sch -------------------------------------------------------------------------------- /eagle/atmega_midi_x0x_heart.top.mill.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbeuckm/atmega_midi_x0x_heart/HEAD/eagle/atmega_midi_x0x_heart.top.mill.nc -------------------------------------------------------------------------------- /x0x_heart_midi_device_panel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbeuckm/atmega_midi_x0x_heart/HEAD/x0x_heart_midi_device_panel.xml --------------------------------------------------------------------------------