Jump to content
IGNORED

arduino


Guest iep

Recommended Posts

ATMEL ATmega8 based chips, programmable over usb, it costs about 25 euros (!)

 

arduino.jpg

 

has 8 digital ins and 4 analog ins so you can hook up all kinds of potentiometers, sensors,LCD screens etc

 

it has a very sleek programming enviroment,really fancy stuff , and you can interface it with maxmsp/puredata and even with flash or director

 

Screenshot0003.png

 

you can fit 'shields' on top - seperate pcbs that extend the ins and outs of the main arduino board, like this 6 fader board for example

 

6p13.jpg

 

i'm thinking of hooking up a few contact microphones to the arduino and using the contact mics as triggers for maxmsp, maybe adding some cheap

pressure sensitive sensors or motion sensor stuff, making a strange& powerful controller interface

Link to comment
Share on other sites

Wouldn't you rather just use knobs?

 

the whole idea of this thing is that you can hook up whatever controller you want to use, so if you want to use a knob then sure hook it up:

 

potentiometer.jpg

 

you gotta tell the atmega chip how to handle to the knob:

 

int potPin = 2;    // select the input pin for the potentiometer
int ledPin = 13;   // select the pin for the LED
int val = 0;       // variable to store the value coming from the sensor

void setup() {
  pinMode(ledPin, OUTPUT);  // declare the ledPin as an OUTPUT
}

void loop() {
  val = analogRead(potPin);    // read the value from the sensor
  digitalWrite(ledPin, HIGH);  // turn the ledPin on
  delay(val);                  // stop the program for some time
  digitalWrite(ledPin, LOW);   // turn the ledPin off
  delay(val);                  // stop the program for some time
}

 

or you can use accelerometers:

 

65458902_f4f2898ed9_b.jpg

 

contact mics as triggers:

 

53535494_73f63436cb.jpg

 

ultrasound/sonar-style range detectors:

 

65531405_fa57b9ff66_b.jpg

 

& pressure sensitive stuff, pushbuttons, light-sensors, etc...

Link to comment
Share on other sites

Guest dugbert

amazing.

and cheap too

 

i wonder if you can use this programming environment to manipulate the data coming in from the potentiometers, and then have the result appear as a MIDI device in any music app, or if the data has to go directly into one of those specific programs you mentioned

Link to comment
Share on other sites

i built an automated xylophone using one of these for an art installation

 

hooked it up to max/msp which outputed two set of dna sequences one for human and one for dog, two xylophone would then play themselves using the protein information outputed via this board to solenoids.

 

really cheap and the coding on it is a piece of piss.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.