Tuesday, May 8, 2012

Update

Project Update
                In continuance, I’m constructing 3D models today because you have accidentally misplaced your keys and locked everyone out of the back room where their projects await them. Within that closet was the arduino board I have been using to attempt and figure out how programming works. For this reason, I continued designing 3D objects in Sketchup.
                The most recent creation was the small portion of the Great Wall of China I designed. Then, I figured it would be cool to move on to an object that wasn’t a piece of architecture; a civil war ship. After cruising through Google I found a 34’ model of the CSS Virginia. I have spent a few days working on the file within the dispersed time I have been allotted and have a result. Although not completely refined, it’s getting the job done. The only part I have become incredibly disappointed with is that the bottom of the ship isn’t designed correctly. The real ship curves inward as you look at the bottom. The way the file happened to end up being designed though would not allow me to do such a thing. With a flat bottom, it still retains the ship-like shape and identifiable structure.
                Hopefully tomorrow you will have found the keys and working on the Arduino will commence again. Without someone to guide me though, I’m finding it extremely difficult to just pick up and work with. The web hasn’t been a whole lot of help yet and just plugging LED’s in isn’t exactly ideal. Hopefully tomorrow I will have better luck.

Wednesday, May 2, 2012

Project Update 4
So as of today I got a step further with the arduino. Understanding the basics is a large part of thsi small project that I personally really have to grasp before starting more significant things. Understanding that linking wires to ground then from ground to halfway across the breadboard was something I never even began to think about. As Chris Hawes sat next to me waiting to print something out, he also began to plug in LED's. We found that the difference between the slots 13, 12, 11, and 10 werew all very different. The voltage or something is completely wacked out. Some of the inputs had pulse modifiers on them and therefore left a completely spin on things. The code I had written did not seem to work on all the LED'S, althoug hit workede for 13 and 12. Here's the code I wrote:
void setup() {
  // put your setup code here, to run once:
  pinMode(13, OUTPUT);
  pinMode(12, OUTPUT);
}
void loop() {
  // put your main code here, to run repeatedly:
  digitalWrite(13, HIGH);  // set the LED on
  delay(1500);            // wait betweeen blinks
  digitalWrite(12, HIGH);
  delay(1000);
  digitalWrite(13, LOW);  // Turn LED off
  delay(1000);
  digitalWrite(12, LOW);
  delay(1500);
  digitalWrite(11, HIGH);
  delay(1500);
  digitalWrite(10, HIGH);
  delay(1000);
  digitalWrite(11, LOW);
  delay(1000);
  digitalWrite(10, LOW);
  delay(1500);
}
Project Update 4/30/12
                I could not for the life of me either find the arduino I have been using or download it from offline. I used the search feature on the computer and the only result I got was for Arduino 17. You have UNO arduino boards and 17 does not support and or identify UNO boards. For this reason, I deviated from my main project today to fix and print off of the 3D printer.
                I had made a piece of the Great Wall of China and finally made the decision to make it happen. Starting off quite rough, the platform was uneven. This has been a reoccurring issue and for some reason I never thought of looking under the platform. The issue was that one of the allen screws was halfway unscrewed and had the platform at an angle. I screwed that back down, heated up the platform, and now have the opportunity to print my Great Wall piece.
                Gradually, I am still learning this machine even after 2 years like we always say. I’ve tried quite hard to stay away from the MakerBot because lately it just seems to waste my time, but I needed one last print before I left for college. I hope to take one of the opportunities you have granted me and intend to follow up on that fab lab place on Mass Ave. Hopefully, I’ll bee lucky enough to get my foot in the door and continue to build great things just like I have gotten the chance to in this class.