You've seen it run with 5 synthesizer knobs, but now the stakes are higher! I'm going to daisy-chain three of my circuit boards together. Then I'm going to run them at top speed.
And if that wasn't enough, I've been preparing a special treat, so watch through the second half of the video :)
I'm a Researcher, Designer and Developer in the areas of Musical Instruments and Medical Devices. I'm intensely curious about the nature of media, perception, communication and reality.
Tuesday, July 30, 2019
Tuesday, July 16, 2019
All Things Bright And Beautiful Video-Multitracked on 3 Electric Eels
I recorded the gorgeous, classic hymn "All Things Bright and Beautiful" on three different Electric
Eels! Lowest two parts are played on Bowed Eel. Violin 2 is played on
Blue Guitar Eel. Violin 1 is played on Red Saxophone Eel.
I really enjoy the sounds of harmony and I'm looking for more players to make these recordings with on Electric Eels or other DIY/DSP instruments.
Electric Eels return the nuance of movement to electronic instruments. I free synthesizers from the desktop/laptop paradigm. I make them more like acoustic instruments. They use no batteries, only the energy generated by player movement backdriving stepper motors. So you can take them anywhere and play all night. You don't have to recharge them or wait for their software to upgrade. They do not connect to a cell phone :) I developed them while at the MIT Media Lab in the Computing Culture research group.
First part was recorded into my phone and an iPad. Subsequent parts
recorded into phone while listening on iPad through headphones. Four
parts were synced up with an inexpensive, buggy video editor. Recording
took place over a six hour period on Saturday, July 13th. Cathartic
language has been deleted.
My inspiration was that I loved the sounds of electronic timbres, but hated standing still at a laptop or MIDI sequencer. So I made instruments that require you to move to make electronic sound, just like acoustic ones... but I didn't "fake" it with sensors. The Electric Eels have small electrical generators in them that require you to move to generate that electricity to run the synthesizer and CPU in short bursts.
Friday, June 28, 2019
New Synth Knob Multiplexer - 64 Analogs in one! Part 1
New! Fresh in the mail. A circuit board I designed. Check out the edgy and powerful design!
It muxes 64 analog signals, especially synthesizer knobs, into 1. It lets you read a wholllle lot of knobs with just a few pins.
You can use three pins from an Arduino or other microcontroller and read all 64 daisy-chain knobs!
You need this board to make professional synthesizers with lots of knobs.
Tuesday, January 29, 2019
Digital Music Culture
I know it's been a while, but I want to share influences on my design practice:
Harpejjis
https://i.ytimg.com/vi/Wr87Z7rZiWE/maxresdefault.jpg
https://i.ytimg.com/vi/pv0q6oBmZxo/maxresdefault.jpg
https://www.marcodi.com/collections/standard-series
https://www.brainpickings.org/2019/01/24/nick-cave-music-ai/?fbclid=IwAR2HG-qRYRW1Ocj_CpoP_ifJredDTQYTh_wIzctdIVBd_FmuHZHkV500pC8
https://makezine.com/2019/01/21/patent-pandas-how-one-maker-is-turning-her-horrible-experience-into-a-force-for-good/
Tommy Guerrero
https://www.youtube.com/watch?v=N0LZ20ppkNo
Bobby Lane
https://www.youtube.com/watch?v=ukHvn7pLYjk
https://www.keyboardmag.com/miscellaneous/marcodi-harpejji-g16
IMGUI!!!
https://github.com/germangb/imgui-ext
https://www.amazon.com/Glass-Gem-Corn-Heirloom-PowerGrow/dp/B00SCFOJ2K
Harpejjis
https://i.ytimg.com/vi/Wr87Z7rZiWE/maxresdefault.jpg
https://i.ytimg.com/vi/pv0q6oBmZxo/maxresdefault.jpg
https://www.marcodi.com/collections/standard-series
https://www.brainpickings.org/2019/01/24/nick-cave-music-ai/?fbclid=IwAR2HG-qRYRW1Ocj_CpoP_ifJredDTQYTh_wIzctdIVBd_FmuHZHkV500pC8
https://makezine.com/2019/01/21/patent-pandas-how-one-maker-is-turning-her-horrible-experience-into-a-force-for-good/
Tommy Guerrero
https://www.youtube.com/watch?v=N0LZ20ppkNo
Bobby Lane
https://www.youtube.com/watch?v=ukHvn7pLYjk
https://www.keyboardmag.com/miscellaneous/marcodi-harpejji-g16
IMGUI!!!
https://github.com/germangb/imgui-ext
https://www.amazon.com/Glass-Gem-Corn-Heirloom-PowerGrow/dp/B00SCFOJ2K
Tuesday, September 27, 2016
Building compling installing linuxcnc on Ubuntu Studio 16
I want to share with you how to build linuxcnc on Ubuntu Studio 16.
Why is this so important?
I want an open toolchain, so I'm working with linuxcnc and freecad.
It's tough to install both on the same machine at that bleeding intersection since 1. linuxcnc lags Debian releases somewhat and 2. linuxcnc requires realtime kernel, while 3. freecad is a new project in explosive development (with no expectation of supporting older Debian releases presumeably?). At the moment, freecad-daily is non-trivial to run on the current 2.7-linuxcnc install iso. They're off by one Debian release.
Here are my steps to compile linuxcnc on Ubuntu16 Studio. Linuxcnc runs all 100+ unit tests with no warnings or errors and 'linuxcnc' from the command line starts the program. I have not (yet!) configured a machine or calibrated the servo threads.
Future attempts to run freecad-daily there may be made.
1162 git clone git://git.linuxcnc.org/git/linuxcnc.git linuxcnc-dev
1164 cd linuxcnc-dev/
1166 cd src
1174 sudo apt install libmodbus-dev
1176 sudo apt install libusb-1.0-0-dev
1182 sudo apt install libglib2.0-dev
1184 sudo apt install libgtk2.0-dev
1186 sudo apt install bwidget
1188 sudo apt install libtk-img
1190 sudo apt install tclx
1196 sudo apt install libreadline-dev
1199 sudo apt install tcl8.6-dev
1201 sudo apt install tk8.6-dev
1204 sudo apt install libboost-python-dev
1208 sudo apt install libxmu-dev
1209 ./configure --with-realtime=uspace --enable-non-distributable=yes
1210 make
1211 sudo make setuid
1212 source ../scripts/rip-environment
1213 runtests
1214 linuxcnc
* http://linuxcnc.org/
* http://wiki.linuxcnc.org/cgi-bin/wiki.pl?LinuxCNCKnowledgeBase
* http://noahvawter.blogspot.com/2016/09/building-compling-installing-linuxcnc.html
* https://github.com/LinuxCNC/linuxcnc
* http://wiki.linuxcnc.org/cgi-bin/wiki.pl?Installing_EMC2
* http://linuxcnc.org/docs/devel/html/code/building-linuxcnc.html
Why is this so important?
I want an open toolchain, so I'm working with linuxcnc and freecad.
It's tough to install both on the same machine at that bleeding intersection since 1. linuxcnc lags Debian releases somewhat and 2. linuxcnc requires realtime kernel, while 3. freecad is a new project in explosive development (with no expectation of supporting older Debian releases presumeably?). At the moment, freecad-daily is non-trivial to run on the current 2.7-linuxcnc install iso. They're off by one Debian release.
Hypthesis: Ubuntu 16 Studio to the rescue!
My hypothesis is to run freecad and linuxcnc under Ubuntu 16 Studio to leverage the realtime kernel. Anyone out there doing this btw?Here are my steps to compile linuxcnc on Ubuntu16 Studio. Linuxcnc runs all 100+ unit tests with no warnings or errors and 'linuxcnc' from the command line starts the program. I have not (yet!) configured a machine or calibrated the servo threads.
Future attempts to run freecad-daily there may be made.
1162 git clone git://git.linuxcnc.org/git/linuxcnc.git linuxcnc-dev
1164 cd linuxcnc-dev/
1166 cd src
1174 sudo apt install libmodbus-dev
1176 sudo apt install libusb-1.0-0-dev
1182 sudo apt install libglib2.0-dev
1184 sudo apt install libgtk2.0-dev
1186 sudo apt install bwidget
1188 sudo apt install libtk-img
1190 sudo apt install tclx
1196 sudo apt install libreadline-dev
1199 sudo apt install tcl8.6-dev
1201 sudo apt install tk8.6-dev
1204 sudo apt install libboost-python-dev
1208 sudo apt install libxmu-dev
1209 ./configure --with-realtime=uspace --enable-non-distributable=yes
1210 make
1211 sudo make setuid
1212 source ../scripts/rip-environment
1213 runtests
1214 linuxcnc
Links
* http://linuxcnc.org/
* http://wiki.linuxcnc.org/cgi-bin/wiki.pl?LinuxCNCKnowledgeBase
* http://noahvawter.blogspot.com/2016/09/building-compling-installing-linuxcnc.html
* https://github.com/LinuxCNC/linuxcnc
* http://wiki.linuxcnc.org/cgi-bin/wiki.pl?Installing_EMC2
* http://linuxcnc.org/docs/devel/html/code/building-linuxcnc.html
Wednesday, June 10, 2015
Findings
FSLPs are amazing, but not very available:
Gratitude Journal: http://www.diydsp.com/index.php?title=Inspiration/Motivation
Here is that delicious coffee: https://nmpinoncoffee.com/product/12-oz-pinon-coffee-4/
Now that I know where to get more, I can open my last bag! MMmmm
My airport express will likely not work with the iPad Air, cranky: http://forums.macrumors.com/threads/1st-gen-airport-express-trouble.1553619/
I can potentially sell my airport express for $10-20: http://www.ebay.com/sch/i.html?_from=R40&_trksid=p2050601.m570.l1313.TR11.TRC1.A0.H0.XA1084.TRS0&_nkw=A1084&_sacat=0
- http://sensitronics.com/products-force-sensing-linear-potentiometers.php
- http://www.interlinkelectronics.com/FSLPSensor.php
Gratitude Journal: http://www.diydsp.com/index.php?title=Inspiration/Motivation
Here is that delicious coffee: https://nmpinoncoffee.com/product/12-oz-pinon-coffee-4/
Now that I know where to get more, I can open my last bag! MMmmm
My airport express will likely not work with the iPad Air, cranky: http://forums.macrumors.com/threads/1st-gen-airport-express-trouble.1553619/
I can potentially sell my airport express for $10-20: http://www.ebay.com/sch/i.html?_from=R40&_trksid=p2050601.m570.l1313.TR11.TRC1.A0.H0.XA1084.TRS0&_nkw=A1084&_sacat=0
Wednesday, February 18, 2015
Subscribe to:
Posts (Atom)