old prototypes
drawings
inspiration
Before I even began to think about how my final chassis was going to look like I became obsessed with the idea of eliminating all of the useless space that plagued my previous designs. I wanted to reduced the car to its most essential components. So I began with what I knew I absolutely couldn't live without
1 arduino
1 adafruit nRF8001 Bluefruit LE
1 proto shield
1 9v battery
4 AA batteries
1 l298n h-bridge
I spend many hours thinking about the many possible ways that I could arrange these components together trying to optimize for the least amount of empty space. Ultimately I opted for a vertical arrangement and made a box to house all of the components with the h bridge connected from the outside, again to have as little empty space as possible.
I named this box "the heart".
The idea behind "the heart" was that by having a clear understanding of the space I needed to house all of the electrical components of the car. I simultaneously gave myself the most amount of freedom to design the rest of the car.
Now the only constraint I had was that whatever I ended up settling on had to have a 8 x 6.5 cm carriage to house "the heart", with the added benefit that I could take "the heart" on and off for testing, or that i could have multiple chassis iteration that use the same "heart"
After making the heart and testing that it functioned properly I moved on to designing the main carriage that would hold the car. Again placing a great deal of emphasis on making something that didn't have have anything extra.
what I came up with was basically two walls, a floor that only covered half of the space created by the walls and three columns to keep the two walls at equal distances from each other.
this can be best understood in the drawing underneath.
after creating the heart and the carriage next I begun working on the caster wheel which would be located in between the two walls of the carriage. though it's design was rather straightforward getting the suspension to work properly required a great deal of rubber bands which in turn required many hours of testing what worked and what didn't.
after making the caster wheel I set off to create the two arms that would carry the the two motors. again being obsessed with this idea of utilizing the least amount of material possible. I decided to make the arms out of a single sheet of plywood. In addition to this I wanted to laser cut a bending pattern in one section of the arm and use rubber bands to shape the arm into a specific form.
I was very exited about this idea because I thought that bent wood and tension forces could work really well together.
Though the wood came out much better than I anticipated and worked in conjunction with the rubber bands just I had imagined I soon realized that bend wood wasn't going to work for this project, as it created another degree of freedom that I had not accounted for since the beginning of the design.
given that the suspension was going to be so central to the design of the car I had to make sure that the parts that were supposed to be solid (the wood) was indeed solid, and didn't move in unexpected ways.
Looking forward I have to say that if i had 2 more weeks to work on this I am confident that I could have created a vehicle from a single piece of plywood that was bend into shape by way of rubber bands. But given that this wasn't the case and I didn't have 2 more weeks. I became growingly concerned with the functionality of my vehicle, so I scraped the bend wood plan all together and opted for creating solid arms.
when thinking about the shape of these arms I was inspired by the work of Frank Stella.
originally my idea was to only have a set of arms that would be connected to the main carriage by way rubber bands, but I ran into some problems given that the arms tilted toward the carriage from the force of the rubber bands and didn't stay perpendicular to the ground. This in turn forced me to increase the length of the stick running through the carriage and to added a second set of walls to pull the arms from the side opposite to the carriage so as to keep the arms perpendicular to the ground.
Because the second set of wall were only kept up by the stick running through the carriage they had a tendency to spin out of position. to fix this i connected the walls of the carriage to the second set of walls via rubber bands.
Even after all this the car still performed rather poorly as the components were far too loose. this forced me to add a two columns connecting the two arms caring the motors, so as to assure that they always remained equidistantly from one another.
towards the end I let go of my resolution to make the most basic car ever and steered instead to making something that worked properly first and foremost. I am certain that if i'd followed through with my initial rigor all the way till the end the results would have been much better but given the time constraints I am satisfied with what I was able to accomplish.
finally I should note that another of the main ideas behind this chassis design was to design vehicle that was held entirely by rubber bands, which I'm happy to say i achieved. NO glue was used in the creation of this vehicle
CODE
my original code was malfunctioning in the sense that it only registered when a button was pressed and not when it was released so whenever I pressed a button the car just kept going on forever, and the only way to stop it was to power it off.
To fix this I looked at the Adafruit website as well as my classmates code to see how they'd gotten it to work. apparently each time a button is released a package of 4 bytes is send which contains data for identifying the type button and whether the button is being pressed or released, using this information it is possible to use if / else statements to define the behavior of the car using the up down left right arrows in such a way that when no buttons are pressed the car stops.
iI got the idea to use if / else statements from Matt's and Sahil's code.
Comments