Reaction to Living in Form

” When is the project working? What are its intentions? Who is the intended audience? When is an artist simply using ideas of social work in order to progress her career?” (I love how its HER career, Im going to assume the author meant to say “his or her career”) This I believe is the…

Project 3 Code

For the Proximity Sensor: #define trigPin 13 #define echoPin 12 #define led 11 #define led2 10 void setup() {   Serial.begin (9600);   pinMode(trigPin, OUTPUT);   pinMode(echoPin, INPUT);   pinMode(led, OUTPUT);   pinMode(led2, OUTPUT); } void loop() {   long duration, distance;   digitalWrite(trigPin, LOW);  // Added this line   delayMicroseconds(2); // Added this line…

Code for project

Here’s the code I found for the heart monitor aspect of my project:  // Based on examples from Arduino’s Graphing Tutorial and OscP5 documentation     import processing.serial.*;     Serial myPort; // The serial port     int xPos = 1; // horizontal position of the graph     float oldHeartrateHeight = 0; // for storing the previous reading     void setup ()…

Code for the drawing machine #include <Servo.h>  #include <SPI.h> #include <Ethernet.h> // Enter a MAC address for your controller below. // Newer Ethernet shields have a MAC address printed on a sticker on the shield byte mac[] = {  0x90, 0xA2, 0xBA, 0x0D, 0x2F, 0x19 }; IPAddress server(192,168,2,102); // Insert server address here EthernetClient client;…

Code in progress (Marcin Wieczorek)

int fsrAnalogPin = 0; // FSR is connected to analog 0   int fsrReading;      // the analog reading from the FSR resistor divider  void setup(void) {   Serial.begin(9600);   // We’ll send debugging information via the Serial monitor } void loop(void) {   fsrReading = analogRead(fsrAnalogPin);   Serial.print(“Analog reading = “);   Serial.println(fsrReading);…

Code & electronic components

This is the beginning of my code so far int sensorPin = A0;    // select the input pin for the electret mic int ledPin = 9;    // LED connected to digital pin 9 int volume = 0;  // variable to store the volume level value coming from the sensor int volume2 = 0;…

drawingByDistance code

/** drawingByDistance Author: Carlos Ortega This code is used to move two motors at the same time using the distance measured by the PING))) sensor We also have three butons that are used for calibration. */ #include <Servo.h> //the pins that correspond to the buttons const int leftButton = 2; const int rightButton = 3;…

Proj 3: Code

 /*********************************************************** Proj 3: Spirobot Beta (Hardware and GUI is done, animation is working progress)  By: Nestor Sotres  (felix) Here is the code for my project 3. It is not done, but it does compile and run. If youd like to run this, you must set up the Arduino to run with Processing. Then just cut…

Project materials 3 Servo motors – $8 each http://www.ebay.com/itm/like/390785141247?lpid=82 3 plastic wheels amplifier – Radioshack ($14.99) http://www.radioshack.com/product/index.jsp?productId=2062620 sheet of paper (free) headphones cord (free) pen (free)

Project Proposal

I decided on creating a terrarium for my final project that can be sustained with grow lights and temperature and humidity sensors. The idea behind it is to make a sustainable system and urban garden environment that is both pleasant to look at and useful.  Shopping List: Glass Dome Arduino Temperature and Humidity Sensor Some…

Interactive project supplies

My project is to make shoulder pads with sharp attachments that stick upwards when the wearer’s heart rate goes up. This will be a way of creating a visible defense mechanism like a porcupine bristling when threatened. For the heart rate moniter, I plan to follow the idea laid out in this video: (source)  For…

Parts*

Major Components* 6ft precision chain ($35.70)  http://www.servocity.com/html/plastic_chain__0_1227__.html#.Uyp0uvldX-t 4 servo sprockets ($16 – $24)  http://www.servocity.com/html/servo_sprockets___1227_.html#.Uypqg_ldX-t 2 continuous servo motors ($28) http://www.robotshop.com/en/parallax-futaba-continuous-rotation-servo.html 1 12in paper roll ($15)  http://www.amazon.com/50-lb-Bogus-Paper-Roll/dp/B004SIFT92/ref=sr_1_23?s=arts-crafts&ie=UTF8&qid=1395292920&sr=1-23 Microphone Sound detection sensor ($3)  http://dx.com/p/arduino-microphone-sound-detection-sensor-module-red-135533#.Uyp93PldX-s Ultra sonic sensor ($3)  http://dx.com/p/hc-sr04-ultrasonic-sensor-distance-measuring-module-133696#.Uyp-aPldX-s 2 markers ( < $5) *Right now these are the parts that I need and don’t have. I…