It’s 2009. The new year has come in smoothly so far. Winter break has actually been restful yet productive. Christmas and New Year’s Eve were both relaxed and pleasant for the most part too. All of this is pretty surprising.
Lately, I’ve been spending a lot of time looking around the web for potential employers, designing and migrating things to yeeality.com, and thinking about ideas for the very near future (i.e. thesis, methods of motion class, and 4-in-4). It’s a little stressful, but in a good way. Running, lifting, swimming, sauna, and love have all helped to keep my body feeling right. TED.com and a couple books (Stumbling on Happinessby Daniel Gilbert and Flow: The Psychology of Optimal Experience (P.S.)by Mihaly Csikszent) have my mind feeling alive as well. O, and Latin America Spanish on Rosetta Stone is still fun. Overall, balance seems to be in hand. It’s real nice.
I recently decided to make the leap and upgrade yeeality.com from a measley pointer to an actual site with Bluehost. Two years with unlimited storage and bandwidth for something like 170 dollars seems like a fair enough price. The transfer went into effect today, so I created a database, transferred this blog, and decided to give it a slight facelift. I’ve given myself another day or two to rework the resume and think about the landing page design before I send my macbookpro in for repairs for a week (sigh). Then it’s down to business in terms of ideating, polishing, and finding that internship for my last semester at ITP. Keep it moving — steady.
The past week has left me feeling unmotivated and stalled. Maybe there’s more on my plate than I’m capable or driven enough to do. I’ve kept myself fairly content in terms of getting out, resting, and doing things I enjoy, like eating good meals, playing sports, and some time with good folks, but the projects at school are lacking overall, and it’s having an effect on me. It’s thinking about the next couple months and next year that is particularly daunting, and if I could magically absorb programming languages, things would be easier. I want to be producing more and designing more, but similar to the time when I held a fullt-time job, responsibilities are fighting each other for my attention, which doesn’t seem healthy. Anyway, some more solid hours in a quiet room with this machine might be what I need. I’ll try to make it happen this week.
On a more positive note, today was voting day. The wait at the polls was almost two hours, but it provided an interesting opportunity to observe my fellow residents and press a little input into the bigger picture. My fingers are crossed for change with Obama/Biden…
After another excellent game of intramural soccer today, I realized I’ve been documenting my projects and some random thoughts, but I haven’t noted other pieces of ITP / NYU that are treating me quite well (i.e. soccer, Coles Rec Center, foosball, TNO, floor conversations). I’m not sure how well I will remember all this later on, and I don’t always have the camera on hand, so I should do myself a favor and at least leave a partial log.
Today was another soccer victory for ITP’s Baked Potatoes (don’t know where the name came from or what it means). We play on Friday mornings at 10 am at the East River Park. It’s difficult to wake up sometimes, given the time and the Thursday Nights Out, but getting the blood flowing and having some athletic comradery during the week is great.
documentation to the last two entries, including pictures and videos. i suppose there is a lot more detail i could go into about the process of the project, but the heart of what happened is that we started with one concept. then, we continued to develop it over time based on problems we encountered and solutions that made the most sense. in the end, we got a big bird that moved in a way we’re quite satisfied with, and we know how it would be used and how we could make improvements. the box could be covered w a type of insulation to mask the sound, since the mechanism of the wire and pulleys is pretty silent already. we could place the structure in a public space for it to be self contained and the silhoutte could be really really nice. we had difficulty when presentation time came around, as the motion sensing, light emitting unit ceased functioning at go time. we believe the unit was short circuited (most likely when i was soddering extension wires). we were still fotunately able to see what might happen with a silhouette due to some improvising in class time. charley and i worked well together. i’m thinking of making a smaller model in the future for myself, and i think i’m going to continue with the idea of flight/freedom/birds/motion/dreaminess in future projects. documentation will probably become more methodological and good looking. we’ll see. for now, we’ve learned and have a lil something to show for it.
/* code modified by Ben and Charley
from James and Christian’s Balloon Tree
*/
int photoSwitch = 2;
int motorPin0 = 3; // pin in hbridge to arduino for motor
int motorPin1 = 4; // pin in hbridge to arduino for motor
int switchPin1 = 7; // pin for switch 1 to arduino
int switchPin2 = 8; // pin for switch 2 to arduino
int state1 = 0; // initial state of switch 1 is open
int state2 = 0; // initial state of switch 2 is open
int motorPinSwap = 0; //variable used to switch direction of motor
int motorPin0value = HIGH; // variable for motor direction
int motorPin1value = LOW; // variable for motor direction
boolean previouslyPressed1 = false; //BOOLEAN STATEMENT USED TO UNDERSTAND THE PREVIOUS STATE OF SWITCH1
boolean previouslyPressed2 = false; //BOOLEAN STATEMENT USED TO UNDERSTAND THE PREVIOUS STATE OF SWITCH2
void setup() {
Serial.begin(9600);
pinMode(motorPin0, OUTPUT);
pinMode(motorPin1, OUTPUT);
//the switch is an input
pinMode(photoSwitch, INPUT);
pinMode(switchPin1, INPUT);
pinMode(switchPin2, INPUT);
}
void loop() {
if (digitalRead(photoSwitch) == HIGH) {
digitalWrite(motorPin0,motorPin0value); //starts motor in one direction using variable motorPin0value
digitalWrite(motorPin1,motorPin1value); //starts motor in one direction using variable motorPin1value
//
state1 = digitalRead(switchPin1); //READING THE STATE SWITCH1
Serial.print(motorPin0value,DEC); //PRINT LINE
Serial.println(motorPin1value,DEC); //PRINT LINE
//********************************* IF STATEMENT FOR SWITCH1 ******************************
if(state1 == 1 && previouslyPressed1 == false) //IF STATEMENT IN ORDER TO CHANGE THE MOTORS DIRECTION
{ //IF SWITCH1 IS TURNED ON, AND IT WAS NOT PREVIOUSLY PRESSED
motorPinSwap = motorPin0value; //THEN SWITCH THE PIN AND REVERSE THE DIRECTION OF THE MOTOR
motorPin0value = motorPin1value; //WHICH IN RETURN MEANS THE SWITCH AS BEEN PREVIOUSLY PRESSED
motorPin1value = motorPinSwap; //WHICH IS WHY IT IS NOW “TRUE”
previouslyPressed1 = true;
}
else if(state1 == 0) //ELSE IF THE SWITCH IS NOT TURNED ON THAN IT HAS ALSO NOT
previouslyPressed1 = false; //BEEN PREVIOUSLY PRESSED
//
state2 = digitalRead(switchPin2); //READING A SECOND STATE USING SWITCH2
Serial.print(motorPin0value,DEC);
Serial.println (motorPin1value,DEC);
//******************************************* IF STATEMENT FOR SWITCH2 **************************************
if(state2 == 1 && previouslyPressed2 == false) //IF STATEMENT IN ORDER TO CHANGE THE MOTORS DIRECTION
{
motorPinSwap = motorPin0value;
motorPin0value = motorPin1value;
motorPin1value = motorPinSwap;
here’s a bunch of images taken over the course of the progress dating in the future even. smile.
our solar-powered-motion-sensor-triggered-super -bright-led unit arrived today. we were happy to find that it includes an auto/off switch and toggles for darkness, sensitivity, and time. also today charley further strengethened the mounting of the motor and added an antenna for the photocell.
though we took a late start to the project, our rapid action and hourly contributions have this “birds the word / light flight / qua quaalh qua quaaal” project near completion.
yay, this should work for real this time. (greg likes the look of our) bigger dc motor. we’re shooting for the windshieldwiper mechanism concept. if only this were my only project in life… it’s so nice outside. arg to time constraints. yay to may and june and more.
so we’re moving away from using the fan because we cannot get enough wind with our little radioshack motor. boo. so much for the h-bridge circuit and analog coding success and fan hacking i did yesterday. double boo.
howeeeever, charley found great material for the bird (no need to sew umbrellas together anymore), and we brainstormed more and more and have a new grand concept that should work like butter. no dc motor and fan, but instead a servo, pulleys, and levers. the bird will still be fairly free flowing, but more reliable under our control. we’ll be drilling holes and using the woodshop more too. fun stuff.
we also discussed ideas for presention:
lights off yes.
stillness then triggered by flapping motion.
video shoot on blue screen? sky video behind perhaps.
setup before or during break.
…
working the code out on our own was pretty darn satisfying today. h-bridge. analog. yes. we’ll need to tweak the speeds/values once we get the actual fan and bird setup, but this is functional. see the lil video here.
int sensorPin = 0; // analog input photocell
int potValue = 0; //value read from photocell
int motor1Pin = 3; // H-bridge leg 1
int motor2Pin = 4; // H-bridge leg 2
int speedPin = 9; // H-bridge enable pin
void setup() {
// set the PWM as an input:
pinMode(sensorPin, INPUT);
Serial.begin(9600);
// set other pins as outputs:
pinMode(motor1Pin, OUTPUT);
pinMode(motor2Pin, OUTPUT);
pinMode(speedPin, OUTPUT);
}
void loop() {
potValue = analogRead(sensorPin); // read the pot value
analogWrite(speedPin, potValue); // PWM the sensor value with the pot value
Serial.println(potValue); // print pot value back to the debugger pane
if (potValue >= 800) {
analogWrite(motor2Pin, potValue*4); // set leg 2 of the H-bridge “high”
}
else if (potValue >= 400 && potValue