#1
|
|||
|
|||
Shift Light
Does anyone know how to make a simple circuit to make an adjustable shift light. preferable a sequential one with a row of LED's. a single big red one will do thought!
I want to make one to link into the MX5 rev counter wire. It needs to be really easy as im a liability with a soldering iron!! David
__________________
Click to see my build photos on Flikr http://www.flickr.com/photos/67112582@N03/ Saturn MX5 Based Chassis, Limited Slip Diff & 2.4 Quick Rack. Build cost.... seems to be spending more on tools than car bits at the moment! (they will be handy in the future though). Car iva'd and passed 15/08/2014. Finished weight 572kg. |
#2
|
||||
|
||||
Quote:
Cheers Stot
__________________
1.6 Mazda B6 : Garrett TBO339 : 420cc WRX Injectors : FMIC : Microsquirt V3 : LC-2 Wideband : Toyota COP : 1.8 ATB LSD Build Started Jan 2013 : OTR Aug 2014 : Still OTR June 2024 |
#3
|
||||
|
||||
I designed a sequential one a few years ago, mostly sold them to VW Corado owners as it integrated into the dash nicely (sorry awful quality video!):
https://www.youtube.com/watch?v=s7MNOMVfMng Stopped making them ages ago and don't think I have any left though. There was never much money in it To be honest a single big light is probably more useful than sequential. |
#4
|
||||
|
||||
Quote:
|
#5
|
||||
|
||||
Quote:
I forgot you knew the Beige one. I think he's alright, haven't seen him in ages though, sort of lost touch when he left Cambridge. I think he's working for McLaren now. |
#6
|
|||
|
|||
All the diagrams I have found look very involved. I was hoping to use a variable resistor, a transistor and an led..
David
__________________
Click to see my build photos on Flikr http://www.flickr.com/photos/67112582@N03/ Saturn MX5 Based Chassis, Limited Slip Diff & 2.4 Quick Rack. Build cost.... seems to be spending more on tools than car bits at the moment! (they will be handy in the future though). Car iva'd and passed 15/08/2014. Finished weight 572kg. |
#7
|
||||
|
||||
I made one out of an Arduino. Overkill, I know, but it cost under £10 in parts, anyway, and it's infinitely tuneable ;-).
https://www.youtube.com/watch?v=E3j_aek5Y-0 The outputs are just LEDs connected to the output pins with 560 Ohm resistors. The input is a stabilizer with a 1K resistor and a 4.7V zener. I can sketch the schematic if anyone's interested. For the "production" version I used a $10 Arduino Pro Mini. Here are some pics of the final product without the 3d printed box it's in now: http://imgur.com/a/IHBOv Also, I added a 7805 stabilizer for power feed, as Arduino Pro Mini is rated only up to 12V, and in the car it can get more than that. The code is available here: https://github.com/alga/shiftlight The circuit used to work perfectly with Ford's ECU, but after the MS3 install it catches some interference and blinks sometimes. I can't get around to hanging a low-pass filter capacitor on the input.
__________________
Albert Haynes Roadster FAQ | Haynes Builder Locations Gallery, build thread in Lithuanian / via Google Translate. |
#8
|
||||
|
||||
Alga - this is what I was looking for Simple sequential shift light.
So - can you sketch schematic ? My electronic skills are even worse than mechanic skills Hope your code (after modification) can handle 12000rpm... Is it complicated to modify code to set rpm for first LED by button, then other LED will light up with 500rpm increments from "set" value ? I never played with such electronics...
__________________
Lucas ZX9R BEC Haynes Roadster - build cost so far: £1125 My build thread "Whatever you can do or dream you can, begin it. Boldness has genius, power, and magic in it." J.W.Goethe |
#9
|
||||
|
||||
Maplins do a super cheap shift light. Goes green then red.
http://www.maplin.co.uk/p/26mm-redgr...-cluster-pd00a I run mine off my megasquirt.
__________________
http://www.facebook.com/EquinoxProducts http://www.haynes.co.uk/forums/showthread.php?t=13110 - Z20LET into a Roadster http://s775.photobucket.com/user/ben...?sort=6&page=1 |
#10
|
||||
|
||||
Lukasz, here's the schematic:
You can use Arduino Uno or whatever to test, but then to embed something smaller like Nano or Pro Mini is more convenient. If you look at the source, https://github.com/alga/shiftlight/b...shiftlight.ino , you'll see that the pin numbers of the input and outputs, as well as RPMs for each led and for the blinking warning are spelled out in the constant definitions. In order to set the switchover RPMs on a button press you'll need to add a button that grounds one of the free input pins, set the mode for that pin to INPUT_PULLUP, and in the loop check if the pin is LOW, and if it is, fill in the thresholds array with the new values based on current RPM. You'll need to delete the const specifier from the variable definition in order to be able to modify the array. Piece of cake.
__________________
Albert Haynes Roadster FAQ | Haynes Builder Locations Gallery, build thread in Lithuanian / via Google Translate. |
Thread Tools | |
Display Modes | |
|
|