This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \documentclass{standalone} | |
| \usepackage{tikz} | |
| \begin{document} | |
| \tikzstyle{block} = [rectangle, draw, | |
| text width=8em, text centered, rounded corners, minimum height=4em] | |
| \tikzstyle{line} = [draw, -latex] | |
| \begin{tikzpicture}[node distance = 6em, auto, thick] | |
| \node [block] (Agent) {Agent}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # MIDI to CV converter for Raspberry Pi Pico and MCP4725 DAC by @AxWax | |
| # | |
| # Demo: https://www.youtube.com/watch?v=aGfQHL1jU4I | |
| # | |
| # This is heavily based on and requires | |
| # the SimpleMIDIDecoder library by @diyelectromusic, which can be found at | |
| # https://diyelectromusic.wordpress.com/2021/06/13/raspberry-pi-pico-midi-channel-router/ | |
| # | |
| # | |
| # Wiring: |



