Abstract to emily: Monday august 23 (combo research abstract and artists statement)
Abstract due to maureen: Thursday, August 26th
Sho exhibition opening: Monday. August 30th 12:00-3:00
Show dates August 30th-sept 6th
Document work from august 30th-sept 2nd- send off book to publisher by august 3rd.
De-install september 6th-10th- make powerpoint presentation for september 17th.
sho card:
title of sho,
artist,
dates of opening and length of show,
location,
and acknowledgement for sure grant/mentor
Monday, August 2, 2010
Friday, July 9, 2010
grants
https://www.infoed.org/new_spin/spinmain.asp
http://www.asianculturalcouncil.org/?page_id=20
write a 300 word project description and send to me by aug. 1st.
http://www.asianculturalcouncil.org/?page_id=20
write a 300 word project description and send to me by aug. 1st.
Homework- next meeting
Aug. 2nd - 12:00pm
relay thing
bluetooth thing
make final piece....
bowling for dollars- funding streams
relay thing
bluetooth thing
make final piece....
bowling for dollars- funding streams
Friday, July 2, 2010
Homework week 6
1) relay research for your project (be really careful with electricity!!!)
2) arduino (daisy-chain) research for your project
3) write up comprehensive budget for both methods of completing project
4) using this program http://www.windmeadow.com/node/42 with wii numchuck, hack to then use data from wii to do something- that something is up to you. write up a tutorial.
emily homework- play around with touch osc iphone app and max/msp
2) arduino (daisy-chain) research for your project
3) write up comprehensive budget for both methods of completing project
4) using this program http://www.windmeadow.com/node/42 with wii numchuck, hack to then use data from wii to do something- that something is up to you. write up a tutorial.
emily homework- play around with touch osc iphone app and max/msp
Thursday, July 1, 2010
relay -push button on arduino switches on 120V (light) for 20 seconds
/*
relay on for 20 seconds
Turns on and off a relay connected to digital
pin 12, when pressing a push-button attached to pin 7.
The circuit:
* relay (ctrl) attached from pin 12 to ground
* pushbutton attached to pin 2 from +5V
* 10K resistor attached to pin 2 from ground
* Note: on most Arduinos there is already an LED on the board
attached to pin 13.
created 2005
by DojoDave
modified 17 Jun 2009
by Tom Igoe
http://www.arduino.cc/en/Tutorial/Button
*/
// constants won't change. They're used here to
// set pin numbers:
const int buttonPin = 2; // the number of the pushbutton pin
const int pinout = 12; // the number of the relay pin
// variables will change:
int buttonState = 0; // variable for reading the pushbutton status
void setup() {
// initialize the relay pin as an output:
pinMode(pinout, OUTPUT);
// initialize the pushbutton pin as an input:
pinMode(buttonPin, INPUT);
}
void loop(){
// read the state of the pushbutton value:
buttonState = digitalRead(buttonPin);
// check if the pushbutton is pressed.
// if it is, the buttonState is HIGH:
if (buttonState == HIGH) {
// turn relay on:
digitalWrite(pinout, HIGH);
delay(20000);
}
else {
// turn LED off:
digitalWrite(pinout, LOW);
}
}
Temp/Humidity SHT 15 Sensor Test
I found this handy tutorial online by Maurice Ribble.
http://www.glacialwanderer.com/hobbyrobotics/?p=5
Setup arduino board and upload code. Set baud rate to 9600. The only trick is to remember to send a 't' or 'h' to the sensor via the serial port terminal to get your data back.
http://www.glacialwanderer.com/hobbyrobotics/?p=5
Setup arduino board and upload code. Set baud rate to 9600. The only trick is to remember to send a 't' or 'h' to the sensor via the serial port terminal to get your data back.
Tuesday, June 29, 2010
Friday, June 25, 2010
Homework | week 5
1) create a comprehensive tutorial with schematics and pictures in .pdf format: using accelerometer and lilypad, control the dots size of a video in isadora
2) create a comprehensive tutorial with schematics and pictures in .pdf format: using a gyro and arduino, change the size of a 3d object and play sound also.
3) continue work on seven segment leds and ic research
4) test infared sensor and compass
5) purchase ic chip, wii numchuck, and heart sensor
6) send me the draft abstract, ethernet program
7) artsits to look up: gary hill, ilya and emilia kabakov, vito acconci-very early video works on the web, jim campbell, more bill viola, pippilotti rist, alfredo jarr,
+++ emily's homework- get xbee working on the mac, temp/humidity sensor. bring in blue tooth thing. load junxion on mac at school. mit world website
2) create a comprehensive tutorial with schematics and pictures in .pdf format: using a gyro and arduino, change the size of a 3d object and play sound also.
3) continue work on seven segment leds and ic research
4) test infared sensor and compass
5) purchase ic chip, wii numchuck, and heart sensor
6) send me the draft abstract, ethernet program
7) artsits to look up: gary hill, ilya and emilia kabakov, vito acconci-very early video works on the web, jim campbell, more bill viola, pippilotti rist, alfredo jarr,
+++ emily's homework- get xbee working on the mac, temp/humidity sensor. bring in blue tooth thing. load junxion on mac at school. mit world website
Sunday, June 20, 2010
lilypad_forcesensor_led
/* this program will light up an led attached to pin 13
of the lilypad when the force sensor is depressed.
modified from this excellent resource:
http://web.media.mit.edu/~leah/LilyPad/05_switches.html
Prof. Emily Puthoff | 2010
*/
int ledPin = 13; // LED is connected to digital pin 13. Pin 13 on lilypad has a built-in resistor for led, so no need to build into the circuit
int switchPin = 2; // switch connected to digital pin 2
int switchValue; // a variable to keep track of when switch is pressed
void setup()
{
pinMode(ledPin, OUTPUT); // sets the ledPin to be an output
pinMode(switchPin, INPUT); // sets the switchPin to be an input
digitalWrite(switchPin, HIGH); // sets the default (unpressed) state of switchPin to HIGH
}
void loop() // run over and over again
{
switchValue = digitalRead(switchPin); // check to see if the switch is pressed
if (switchValue == LOW) { // if the switch is pressed then,
digitalWrite(ledPin, HIGH); // turn the LED on
}
else { // otherwise,
digitalWrite(ledPin, LOW); // turn the LED off
}
}
Friday, June 18, 2010
Homework-week4
solder together the screw shield
http://www.sparkfun.com/commerce/product_info.php?products_id=9282
solder the xbee to the breakout board
http://www.sparkfun.com/commerce/product_info.php?products_id=8276
play around with xbee
solder headers to arduino sensors and test rest of sensors
play with ethernet shield
go to abstract workshop
http://www.sparkfun.com/commerce/product_info.php?products_id=9282
solder the xbee to the breakout board
http://www.sparkfun.com/commerce/product_info.php?products_id=8276
play around with xbee
solder headers to arduino sensors and test rest of sensors
play with ethernet shield
go to abstract workshop
Tuesday, June 15, 2010
Monday, June 14, 2010
Wednesday, June 9, 2010
Homework- week 3 | Lilypad
Read this guide to arduino lilypad
http://arduino.cc/en/Guide/ArduinoLilyPad
Do these handy lilypad tutorials by leah at MIT
http://web.media.mit.edu/~leah/LilyPad/01_computer_attach.html
on #9 -build something- make something totally new, then blog it.
Also check out these very interesting projects:
http://hlt.media.mit.edu/?cat=5
How to read a voltage meter (multimeter)
http://www.wikihow.com/Use-a-Multimeter
Work on idea sketches | 3 sketches of 3 ideas
Try out different sensors in lilypad sensor kit deluxe. Blog your discoveries.
Do force/flex sensor, blog it.
http://arduino.cc/en/Guide/ArduinoLilyPad
Do these handy lilypad tutorials by leah at MIT
http://web.media.mit.edu/~leah/LilyPad/01_computer_attach.html
on #9 -build something- make something totally new, then blog it.
Also check out these very interesting projects:
http://hlt.media.mit.edu/?cat=5
How to read a voltage meter (multimeter)
http://www.wikihow.com/Use-a-Multimeter
Work on idea sketches | 3 sketches of 3 ideas
Try out different sensors in lilypad sensor kit deluxe. Blog your discoveries.
Do force/flex sensor, blog it.
Tuesday, June 8, 2010
Monday, June 7, 2010
Friday, June 4, 2010
homework
1) Research CC: http://creativecommons.org and GPL: http://www.gnu.org/licenses/gpl.html
2) sho- type out step by step tutorial on how to control a video in isadora with a potentiometer connected to arduino via serial port
3) read arduino-notebook available: http://www.lulu.com/product/download/arduino-programming-notebook/3524028
4) Play with sensors
see different sensors in kit here: http://www.sparkfun.com/commerce/product_info.php?products_id=9383
sensor tutorials:
knock: http://arduino.cc/en/Tutorial/Knock
ping: http://arduino.cc/en/Tutorial/Ping
photocell: http://www.ladyada.net/learn/sensors/cds.html
PIR:http://www.ladyada.net/learn/sensors/pir.html
2) sho- type out step by step tutorial on how to control a video in isadora with a potentiometer connected to arduino via serial port
3) read arduino-notebook available: http://www.lulu.com/product/download/arduino-programming-notebook/3524028
4) Play with sensors
see different sensors in kit here: http://www.sparkfun.com/commerce/product_info.php?products_id=9383
sensor tutorials:
knock: http://arduino.cc/en/Tutorial/Knock
ping: http://arduino.cc/en/Tutorial/Ping
photocell: http://www.ladyada.net/learn/sensors/cds.html
PIR:http://www.ladyada.net/learn/sensors/pir.html
freeduino- arduino programming notebook
Arduino PROGRAMMING NOTEBOOK: an excellent intro to Arduino programming by Brian Evans, available printed-on-demand from Lulu for a paltry $5.33, or as a PDF for free. Another
example of the amazing things the Freeduino/Arduino community makes possible..
freeduino.org
example of the amazing things the Freeduino/Arduino community makes possible..
freeduino.org
Thursday, June 3, 2010
Hello World!
First programming exercises with arduino- blinking lights, color mixer, and color led sequencer.
Handy tutorials from http://www.ladyada.net/learn/arduino/index.html
Handy tutorials from http://www.ladyada.net/learn/arduino/index.html
Wednesday, June 2, 2010
Summer Research
Mentoring sculpture BFA, Shotaro Nakano, on a summer undergraduate research project. All things Arduino- here we go....
Saturday, May 29, 2010
Wednesday, May 26, 2010
Tuesday, May 25, 2010
Monday, May 24, 2010
Sunday, May 16, 2010
Wednesday, May 12, 2010
Thursday, May 6, 2010
Steim @ Harvestworks
Frank Balde of Steim is demonstrating using the wii numchuck with junxion and quartz composer.
Transdisciplinary = Art/Engineering/Technology Links
Schools
AME | ASU | Tempe, AZ
http://ame.asu.edu/
@Lab | Aesthetic Technology Lab | Ohio University, Athens, OH
http://www.faculty-commons.org/atlab/
Non-Profits
Harvestworks Digital Media Center | NYC
http://www.harvestworks.org
Eyebeam | NYC
http://eyebeam.org/
Steim | Amsterdam
http://www.steim.org/steim/
ZKM | Center for Art and Media | Karlsruhe, Germany
http://on1.zkm.de/zkm/e/
AME | ASU | Tempe, AZ
http://ame.asu.edu/
@Lab | Aesthetic Technology Lab | Ohio University, Athens, OH
http://www.faculty-commons.org/atlab/
Non-Profits
Harvestworks Digital Media Center | NYC
http://www.harvestworks.org
Eyebeam | NYC
http://eyebeam.org/
Steim | Amsterdam
http://www.steim.org/steim/
ZKM | Center for Art and Media | Karlsruhe, Germany
http://on1.zkm.de/zkm/e/
Saturday, March 27, 2010
Subscribe to:
Posts (Atom)