Difference between revisions of "Arduino Basic Tutorial"

From MOD Wiki
Jump to navigation Jump to search
(creating page)
 
m
 
Line 1: Line 1:
 +
[[Category:Arduino Shield Tutorials]]
 +
 
[[File:intro-1.jpg|thumb|400px|Analog expression pedal to Control Chain converter]]This tutorial will show you how to build a very basic Control Chain device with expression pedal inputs.
 
[[File:intro-1.jpg|thumb|400px|Analog expression pedal to Control Chain converter]]This tutorial will show you how to build a very basic Control Chain device with expression pedal inputs.
  

Latest revision as of 23:27, 10 November 2018


Analog expression pedal to Control Chain converter

This tutorial will show you how to build a very basic Control Chain device with expression pedal inputs.

This will allow you to use an expression pedal with a regular stereo TRS jack with your MOD Duo!

By doing this, you will get the basics of how to build an Control Chain device using the MOD Arduino Shield.

What do I need?

  1. One Arduino Uno or Due
  2. One Arduino Control Chain shield
  3. One stereo (TRS) jack for every expression pedal input that you want (Max: 4 (Uno), 8(Due))
  4. A soldering iron, some wire and some soldering tin
  5. (Optional) Something to put your final build in

The schematic

Because the Arduino has very high impedance analog inputs, there is no need for any current limiting resistor. We can simply hook up the TRS jacks as follows: (Tip to 5V, ring to signal and sleeve to ground)*

Intro-2.png

(*) not all expression pedals are made equal, some manufacturers use a different mapping than the one described above. Another common mapping is: Tip to signal, ring to 5V, sleeve to ground. (For example on the Roland EV-5)

The code

The Arduino code is quite simple, it reads the ADC values using the analogRead() function, and stores it into a variable. The Control Chain library takes care of the rest.

The code is written in such a way that you can change the define at the top of the code to the amount of ports that you want, and not have to rewrite any code. Do you want 3 expression pedal ports?

#define amountOfPorts 3

The maximum amount of ports for an Arduino Uno is 4. The Arduino Due can provide a maximum of 8 ports.

The build

  1. Solder wires to your TRS jack inputs
  2. Twist the wires together
  3. Solder the sleeves to the ground strip on the CC shield
  4. Solder the tips to the 5v strip on the CC shield
  5. Solder the rings to the corresponding analog inputs on the CC shield

Intro-3.jpg

Attach the CC shield to the Arduino, now your device should look a little like this:

Intro-4.jpg

  1. Follow the instructions on our Github Page and install the dependencies
  2. Change the define in the code to the amount of ports connected
  3. Upload the code to your Arduino

Time for a test drive!

Connect the MOD Duo to the “main” Control Chain port on your new device

Intro-4.png

Intro-5.png

Connect your expression pedals and try them out with your MOD Duo!

Intro-6.png

(Optional) Create an enclosure for (semi-)permanent installation, I used an old smartphone-box that I had laying around somewhere :)

Intro-7.jpg

The end result

You just built your own Control Chain device, and we hope with many more to come. We are looking forward to seeing what all you wonderful people come up with! Don’t hesitate to come and talk to us on the forums if you have any questions about Control Chain devices, the Arduino shield or our favourite musicians.

Intro-8.jpg

Note: This tutorial was originally published by Jesse Verhage at the Mod Devices blog