Page 1 of 2 12 LastLast
Results 1 to 10 of 13

Thread: Arduino controlled car led system.

  1. #1
    ATX Mental Case Crimson13's Avatar
    Join Date
    Nov 2005
    Location
    Northern, IL, USA
    Posts
    137

    Cool CARduino led system.

    My newest project: Arduino controlled led system.

    I'm cross posting this on a few sites so please let me know if something doesn't make sense.


    What I am hoping to accomplish is a multi “zoned” led system for my car.
    I participate in various things that allow me to use warning lights on my vehicle, some things are for a local government agency and some is for other things that involve police escorts. Currently I have a cheap led flasher from China that I bought off of ebay before the foreign sellers started jacking their shipping charges. The flasher came with 2 sets of lights with each set having 3 pods of 3 leds. The flasher has 3 patterns, mode A is side 1 flashes 4x then side 2 flashes 4x, mode B is alternating flash (1,2,1,2,1,2,1,2,1,2,1,2…..), mode C is both sides at the same time. These leds are amber and are mounted in the rear window. Since getting the flasher I have added some white led strips in the grill and tied them into the wires for the other lights.
    So I don’t have many lights and would like to add more. But real warning leds are expensive and I don’t have a few hundred to drop into that. What I would like to do is have an arduino control all the leds around the car independently. Attached is a map of the different “zones” that I would like to control. The front and rear have two zones so the leds can have alternating flash patterns.
    There are a few goals I have for this project to be able to do.
    1. Individual zone control. (on, off, strobe, etc…)
    2. Preset patterns or modes. (zones 11+12 alternate, zones 21,22,23,24 on, etc…)
    3. Use a LCD display to scroll through the zones and modes.
    Bonus Goals!!
    4. Use RGB leds and control each color channel in the zones.
    5. Have an additional zone for a traffic advisor (arrow stick).

    Light zone map. Zone 24 would be the cargo area.


    Possible RGB Leds to use. Each led has a chip which makes each led individually addressable with only using 2 pins from the arduino for the whole strand.
    http://www.adafruit.com/index.php?ma...roducts_id=307

    I was going to use a playstation controller joystick for navigation of the menu, but I recently saw that someone has figured out a library for a wii nun-chuck so I can use the joystick, button, and accelerometers with only 2 pins and power.

    Whooops looks like I put this in the wrong section! If someone could move this to microcenter that would be great!
    Last edited by Crimson13; 01-06-2011 at 05:17 PM. Reason: Posted in wrong section.

  2. #2
    Why must hard drives fail together? TheMainMan's Avatar
    Join Date
    May 2008
    Location
    Canada
    Posts
    804

    Default Re: Arduino controlled car led system.

    Wow, wish I could help but this isn't in my repetoire. Definitely subscribed to see what people say.
    TheMainMan

  3. #3
    Fox Furry crenn's Avatar
    Join Date
    Apr 2005
    Location
    In the shadows behind you
    Posts
    4,067

    Default Re: Arduino controlled car led system.

    The problem you might have is interference from other electrical devices. It may not, but since these are warning lights, they might trigger by accident, you need to be careful in your design. Using a CAN or LIN is possibly an option, but these are not going to be supported by the arduino and will need a knowledge of these networks. There are other options, but they're going to need better understanding of how data is transmitted.
    Antec Sonata II | Pioneer DVR-212
    Good news! You can follow my website or follow me on twitter!

  4. #4
    ATX Mental Case Crimson13's Avatar
    Join Date
    Nov 2005
    Location
    Northern, IL, USA
    Posts
    137

    Default Re: Arduino controlled car led system.

    I've kinda thought of that, and if it becomes an issue I'll just have the 12v going to the leds switched and then there would be no way for them to turn on. And I would think that if the arduino was off and they somehow turned on they would just be "on" not flashing which would just look like a lot of amber markers around the car.

  5. #5
    ATX Mental Case Crimson13's Avatar
    Join Date
    Nov 2005
    Location
    Northern, IL, USA
    Posts
    137

    Default Re: Arduino controlled car led system.

    Well not too much progress has been made on this.

    Still working on most of the code, the biggest part would be the menu system that the user would navigate on the lcd.

    I'm also waiting for some my shipment of products from sparkfun that I was able to buy from their free day promotion. Some of the things are a wiichuck adapter, a screwshield, and 6 mosfets.

    AND I'm also working on a ATX to bench powersupply mod that I'm going to use to test my led system.

    If anyone has experience with a menu hierarchy system for the arduino and could help me, that would be great. I'm really new to arduino stuff, and just as new with coding in c/c++. I have some example code for menus but I've not been able to pick it apart yet.

    Link to an example of the menu hierarchy.

  6. #6
    Resident 100HP water-cannon operator SXRguyinMA's Avatar
    Join Date
    Jun 2008
    Location
    MA
    Posts
    5,865

    Default Re: Arduino controlled car led system.

    the menu system should be pretty easy. check out the arduino forums at www.arduino.cc as well for tips and advice, as well as examples. I want to do something similar with my bench PSU mod, and be able to switch between voltage and current, but I'm still trying to find a suitable inexpensive current monitor (3 actually, one for each line)

  7. #7
    ATX Mental Case Crimson13's Avatar
    Join Date
    Nov 2005
    Location
    Northern, IL, USA
    Posts
    137

    Default Re: Arduino controlled car led system.

    I've been posting there too. So far they've only pointed me at the library and haven't explained much. I could be wrong but from what I gather, but in the example code it looks like there's only 2 levels to the menu. I know more are possible since I've seen things do it, but I'm not sure how.

    What I would really like to be able to do is use ModKit, but that's still in alpha testing and I don't think they are going to give out any more invites as they are so close to going into open beta.

    So back to scouring the internet for a tutorial on the menus.

  8. #8
    Resident 100HP water-cannon operator SXRguyinMA's Avatar
    Join Date
    Jun 2008
    Location
    MA
    Posts
    5,865

    Default Re: Arduino controlled car led system.

    yea I want an invite for Modkit SOOOOO bad

  9. #9
    ATX Mental Case Crimson13's Avatar
    Join Date
    Nov 2005
    Location
    Northern, IL, USA
    Posts
    137

    Default Re: Arduino controlled car led system.

    So I got my mosfets in today but when I tried to test them they just stayed "on" regardless of if there was 5v on the gate or not. I tried running both sides (12v & gnd) through it and both times it would just turn on.

    Anyone have any ideas?

  10. #10
    ATX Mental Case Crimson13's Avatar
    Join Date
    Nov 2005
    Location
    Northern, IL, USA
    Posts
    137

    Default Re: Arduino controlled car led system.

    So with some help I figured out the problem with the mosfets. Well the problem was more of how I was testing them. The gate of the mosfet needs to be able to "drain" the charge that's on that pin so it can go "low" and then when you send a signal (5v) to it, it goes "high". So to fix this I put ground on the gate and the leds turned off, and as soon as I hit it with 5v they turned on. So I'll have to add a 10k pull down resistor on the gate to gnd.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •