Arduino Magix

Grab an Arduino Uno, an LED, a 220Ω resistor, and two jumper wires.

void setup() 
  pinMode(13, OUTPUT);

void loop() digitalWrite(13, HIGH); delay(500); digitalWrite(13, LOW); delay(500);

Upload it. Watch the LED blink.

Now change 500 to 100. Faster. Change it to 2000. Slower. Change HIGH to LOW and vice versa.

Congratulations. You’re not following a tutorial anymore. You’re experimenting.

That’s Arduino Magix.


Would you like: a parts list with links, example Arduino code (USB MIDI + LEDs), or a wiring diagram?

(invoking RelatedSearchTerms)

Here’s a helpful guide to getting started with Arduino and Max/MSP (often called “Max”) — since “Magic” might be a typo or shorthand for the creative, “magical” things you can do when you connect them. arduino magix


It’s not a product. It’s not a library. It’s that feeling when:

Arduino Magix is the intersection of curiosity, a $25 microcontroller, and the sudden realization: “I can control the physical world with code.”