Saturday, November 29, 2014
Are We There Yet?
Progress: This is the SolidWorks sketch for the laser cut part. It will be the base in which the motor and the stand will be placed in. Today we as well drew up the final sketch for how the cannon will be attached and moved. The programming is still a work in progress. We have attempted to interface multiple codes with our board and Wii Nunchuck. None of them have worked. We will continue to search for codes that work and try to make progress on a possible Nunchuck - Arduino interaction.
Wednesday, November 19, 2014
Incorporating Arduino
The following code was used to create the launch using a push button and a relay:
"
int relay = 8;
int button = 2;
void setup(){
pinMode(led,OUTPUT);
pinMode(relay,OUTPUT);
pinMode(button, INPUT_PULLUP);
digitalWrite(relay, LOW);
}
void loop(){
boolean buttonState = digitalRead(button);
if(buttonState == 0){
digitalWrite(relay, HIGH);
delay(100);
digitalWrite(relay, LOW);
}
if(buttonState == 1){
digitalWrite(relay, LOW);
}
}
"
Sunday, November 16, 2014
First Launch!
Progress
![]() |
Design sketch |
Our cannon! |
Monday, November 10, 2014
Shopping Excursion
Yesterday the group went on an excursion to Home Depot and the ever exciting Walmart. At Home Depot we encountered an employee named Dave, who throughout his adolescence tinkered with various schematics of potato guns and the sort. He was able to give us some helpful advice so to what sorts of parts that we need. One of the most important pieces of the design, a sprinkler head, was not able to be procured, which will delay the production of our project. We were able to find various pieces of PVC piping that will be used to create the air pressure tank as well as the barrel of the cannon. We made a quick stop at Walmart to acquire a few cartons of Whopper Candies. These seem more likely to create an effective launch rather than the previously thought of M&M's. Following this post is a picture of Andrew and Kevin thoroughly enjoying shopping in Home Depot expertly taken by the group photographer Jackie.
Thursday, November 6, 2014
The Popinator!
Here is a much more complicated, slightly saltier version of what we hope to accomplish!
Change of Plans!
Due to the complexity of both building and programming a coil gun, we have decided to rethink our overall design, shifting our focus away from using electromagnetism to launch our projectiles to using air pressure. By creating a pressure tank and controlling the release of air using a sprinkler valve connected to an Arduino board, we hope to be able to successfully send our sweets flying.
Below is a rough sketch of what our pneumatic cannon will look like:
Below is a rough sketch of what our pneumatic cannon will look like:
We hope to have all the supplies purchased and the cannon built by Tuesday, November 11 so we can start working on the remote controlled pan and tilt function on the cannon!
Subscribe to:
Posts (Atom)