Jump to content
IGNORED

arduino


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
https://forum.watmm.com/topic/17191-arduino/
Share on other sites

  acid1 said:
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
https://forum.watmm.com/topic/17191-arduino/#findComment-354088
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
https://forum.watmm.com/topic/17191-arduino/#findComment-358689
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
https://forum.watmm.com/topic/17191-arduino/#findComment-359720
Share on other sites

Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   1 Member

×
×