03-25-2009, 02:11 PM
|
#1 (permalink)
|
EcoModding Lurker
Join Date: Mar 2009
Location: DOWNTOWN LAUDERDALE
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
|
WAY off topic. Arduino info needed
I was speaking with my friend Ivan and he said some of the members here might be able to help me learn about using Arduino and programming same. I am VERY new to electronics but not to customizing. I own the custom body shop that helped him redesign and modify the front of his Pontiac. I want to work with Arduino and similar microcontrollers to use in some of the custom cars I build and work on. I already make LED kits and custom lighting but feel this would be a very useful tool. If anyone is in or near Ft. Lauderdale that might want to tudor me in this area, I would be very gratefull. I have ordered an Arduino but don't know "C" or any other computer language. I am trying to learn but with no hands on experience, it is a difficult road for me. Please contact me at steelbreeeeze@aol.com and let me know if you can be of assistance. or if I can be of assistance in helping make aero parts for your own projects. I have no limits to the custom car field and fabfication. I have been customizing cars for almost thirty years. Both body wise and custom painting.
Mark
|
|
|
Today
|
|
|
Other popular topics in this forum...
|
|
|
03-26-2009, 08:32 AM
|
#2 (permalink)
|
needs more cowbell
Join Date: Feb 2008
Location: ÿ
Posts: 5,038
Thanks: 158
Thanked 269 Times in 212 Posts
|
LOL, Welcome to ecomodder
__________________
WINDMILLS DO NOT WORK THAT WAY!!!
Last edited by dcb; 03-26-2009 at 10:29 AM..
|
|
|
03-26-2009, 10:22 AM
|
#3 (permalink)
|
EcoModding Lurker
Join Date: Mar 2009
Location: DOWNTOWN LAUDERDALE
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
|
Quote:
Originally Posted by dcb
LOL, Welcome to ecomodder
|
Thanx
|
|
|
03-26-2009, 06:27 PM
|
#5 (permalink)
|
EcoModding Lurker
Join Date: Mar 2009
Location: DOWNTOWN LAUDERDALE
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
|
Thanx for the info. I already have the Arduino starter kit on it's way. As well as one from Seeeduino. I also have been studying the reference page but until I get some hands on practice, I have no idea what it all means. As far as servos, I have many of them as I am an avid remote control drifter and rock crawler. I did order the book 'Getting Started With Arduino" and it should be arriving very soon. I appreciate you guiding me in the correct direction and confirming that I have started in that direction. Any help and advice is kewl. ivan said there might be some people here that would be into this. I did the front bumper on his Vibe when he was trying to make it more aero. Too bad he sold it. It not only helped his mileage but looked good in the process.
|
|
|
03-26-2009, 11:07 PM
|
#6 (permalink)
|
Coasting Down the Peak
Join Date: Jun 2008
Location: M I C H I G A N
Posts: 514
Thanks: 27
Thanked 42 Times in 35 Posts
|
So what kind of things do you want to do with the arduino?
|
|
|
03-27-2009, 01:57 AM
|
#7 (permalink)
|
EcoModding Lurker
Join Date: Mar 2009
Location: DOWNTOWN LAUDERDALE
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
|
Quote:
Originally Posted by skyl4rk
So what kind of things do you want to do with the arduino?
|
I have made some LED systems in the cars I have customized including interior and tail lights. Stuff like that. So now I want to make programable systems. Seems the Arduino would be good for doing just that. My only experience with electronics is in remote control cars and with LEDs so learning C++ and about the Arduino is way outta my league, but I am trying. I spent all night tonight in a tutorial about C++ and haven't gotten anywhere. LOL All in time I guess. I've been customizing cars, trucks, motorcycles and imports for about thirty years and wanna get into something a lil different. I figure I'll start with LED and go from there.
|
|
|
03-27-2009, 07:56 AM
|
#8 (permalink)
|
needs more cowbell
Join Date: Feb 2008
Location: ÿ
Posts: 5,038
Thanks: 158
Thanked 269 Times in 212 Posts
|
here is the basic arduino blink-the-led program, everyone starts by getting this working, so try and understand what each line is doing. There is a built in LED on pin 13, you have up to 20 pins to play with (I use php tags cuz it looks pretty, but it is C).
PHP Code:
int ledPin = 13; // LED connected to digital pin 13
void setup() { pinMode(ledPin, OUTPUT); // sets the digital pin as output }
void loop() { digitalWrite(ledPin, HIGH); // sets the LED on delay(1000); // waits for a second digitalWrite(ledPin, LOW); // sets the LED off delay(1000); // waits for a second }
borrowed from:
http://www.arduino.cc/en/Tutorial/Blink
Have you considered posting on the arduino.cc forum? This learning stuff is right up their alley, though I'm sure more than a few ecomodders don't mind the exposure either. It is a very enabling technology.
__________________
WINDMILLS DO NOT WORK THAT WAY!!!
Last edited by dcb; 03-27-2009 at 10:35 AM..
|
|
|
03-27-2009, 02:01 PM
|
#9 (permalink)
|
Coasting Down the Peak
Join Date: Jun 2008
Location: M I C H I G A N
Posts: 514
Thanks: 27
Thanked 42 Times in 35 Posts
|
When you say programmable systems, do you mean LED's flashing in unison or a flash of light that runs up and down a row of LED's? That kind of thing?
I personally would not spend too much time on learning C, because if you go through the tutorials and write a few simple scripts based on the tutorials, you will learn how to write the code. End with a ; , make sure you declare your variables. Go to the reference book or the arduino forum when things are not working.
I can tell you this: with some effort, you will be able to create and control electronic devices that you never thought you would be able to.
|
|
|
03-27-2009, 06:48 PM
|
#10 (permalink)
|
EcoModding Lurker
Join Date: Mar 2009
Location: DOWNTOWN LAUDERDALE
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
|
Quote:
Originally Posted by skyl4rk
do you mean LED's flashing in unison or a flash of light that runs up and down a row of LED's? That kind of thing?
I can tell you this: with some effort, you will be able to create and control electronic devices that you never thought you would be able to.
|
That is kinda the idea in a simplistic fashion. I will although be going a little more elaborate with the controlled LEDs. I do hope to go further with more things once I get comfortable. is "C" or "C++" not needed? I had the understanding it was needed to write and understand script commands. Even tho I have been reading and studying a lot, I still don't get it. I guess once I get my Arduino in hand and follow some of the tutorials, it will come together. I have already done some stunning effects inside a few cars with simple wiring. About a year ago I converted a set of tail lights for a 47 Chevy to an LED arrangement that looked awesome when it was done. It had working tail and brake lights. but that was pretty simple to do in an array. Thanx again for all the info. keep it coming. I am using all the info so far. And if I can be of service for anything, feel free. I don't know if Ivan ever posted any pix of the bumper we made for his Pontiac Vibe but it looked like it was made from the factory once we finished it. I have a vast knowledge of fabricating both steel and plastics. I have been customizing cars for more than twenty five years. My last paintjob just won "Best paint" in Scion sponsored car show.
|
|
|
|