+ Reply to Thread
Results 1 to 3 of 3

Thread: car Rev to LED display

  1. #1
    Leewillz Newbie
    Join Date
    Nov 2009
    Posts
    2

    Default car Rev to LED display

    hi all im new here i am studying electronics in A-level and i am wondering how i could make a rev counter display so basically it needs to be about 20 LED's in series, the input will go from 12v to 0v 4 times for one revolution, i am thinking of doing it by PIC chip but if there are any other suggestions then plz help out, also i want to make the LED's come on one at a time and the last one to stay on after the next comes on every 500 revs so 500, 1000,1500... and so on so if i make it up to 8500 revs ill use 17 LED's.
    Last edited by Leewillz; 26th November 2009 at 03:41 PM.


  2. #2
    Electronworks Newbie
    Join Date
    Aug 2009
    Posts
    102

    Default

    Difficult to know what to suggest with this enquiry. Yes I would use a PIC, but short of writing the code for you, there is little help any of us can offer you.

    On the front end, you need to divide down the 12V to 5V and remove some of the noise that might be generated by the ignition contacts. You can either do this by adding a small capacitor across the bottom resistor, or replace the bottom resistor with a 5V Zener diode.

    Use a 7805 regulator to take down the battery voltage to 5V, but keep an eye on the power dissipation if you change your mind and want more than a couple of LEDs on at once.

    It makes sense to look for a falling edge using something like:

    label1:
    btfss portpin;
    goto label1;

    label2:
    btfsc portpin;
    goto label2;

    ; falling edge has been detected


    Drive the LEDs with a 220 ohm series resistor from the PIC port pins and you should get good illumination

    Hope this helps
    Bill Naylor
    www.electronworks.co.uk
    Electronics Design Consultancy

  3. #3
    Leewillz Newbie
    Join Date
    Nov 2009
    Posts
    2

    Default

    ok thanks i will add a zener onto the circuit then,
    i can write out the code myself as im pretty sure about it, ill add the bit of code to detect the falling edge then ill do some testing on it see how it goes
    thanks,
    Lee

+ Reply to Thread

Similar Threads

  1. Replies: 3
    Latest: 18th September 2009, 05:18 AM
  2. Suzuki Rev Limiter on Motorbike - How to install this Rev Booster
    By captainviscen in forum Electronic Projects Design/Ideas/Reviews
    Replies: 0
    Latest: 21st November 2008, 09:29 PM
  3. Replies: 36
    Latest: 3rd August 2007, 01:18 AM
  4. Car Head-Up Display
    By canadianpoet2012 in forum General Electronics Chat
    Replies: 5
    Latest: 1st September 2004, 01:28 PM
  5. LCD or LED rev counter(tacho) info needed
    By smokie in forum Electronic Projects Design/Ideas/Reviews
    Replies: 1
    Latest: 2nd April 2003, 07:47 AM

Tags for this Thread