Electronic Projects, forums and more.

Go Back   Electronic Circuits Projects Diagrams Free > Electronics Forums > Electronic Projects Design/Ideas/Reviews


Electronic Projects Design/Ideas/Reviews Are you building an electronic project or want to? Maybe you need some assistance? Come and submit your electronic questions here and let our experienced members find a solution.

Reply
 
LinkBack (1) Thread Tools Display Modes
Old 1st October 2006, 05:09 PM   1 links from elsewhere to this Post. Click to view. (permalink)
Default digital speedometer

hi, im new to this site. I was wondering is this IC is good for a proyect im thinking to make . This ic number is ICL7107 , here's is the site with the info on this chip: http://www.jameco.com/webapp/wcs/sto...roductId=43756


this chip includes :seven segment decoders, display drivers, a reference and a clock. I got interested in this chip cause the proyect i want to start in my car , the dash have limited space, and from what i read this chip have everything integrated to it. i just started thinking about this proyect, so i dont know the values of the analog speedometer of my car (97 eclipse). any info would be apreciated , thanks.
victorcarlos is offline  
Old 1st October 2006, 06:37 PM   (permalink)
Default

It's an antique digital voltmeter chip - is a digital voltmeter what you want?.
__________________
PIC programmer software, and PIC Tutorials at:
http://www.winpicprog.co.uk
Nigel Goodwin is offline  
Old 1st October 2006, 07:16 PM   (permalink)
Post

Quote:
Originally Posted by victorcarlos
hi, im new to this site. I was wondering is this IC is good for a proyect im thinking to make . This ic number is ICL7107 , here's is the site with the info on this chip: http://www.jameco.com/webapp/wcs/sto...roductId=43756


this chip includes :seven segment decoders, display drivers, a reference and a clock. I got interested in this chip cause the proyect i want to start in my car , the dash have limited space, and from what i read this chip have everything integrated to it. i just started thinking about this proyect, so i dont know the values of the analog speedometer of my car (97 eclipse). any info would be apreciated , thanks.
The digital speedometers are using counters/reset circuits or microcontrolers. I realy don't see how u can use a A/D converter for this
__________________
If is too complicated.....most of the times is the wrong way.
Tarsil is offline  
Old 1st October 2006, 08:29 PM   (permalink)
Default

Quote:
Originally Posted by Tarsil
I realy don't see how u can use a A/D converter for this...
Using the A/D chip seems possible to me. Send the pulses from a wheel speed sensor into a voltage-to-frequency converter (LM2719?) to get the analog voltage representing speed. The analog output gets displayed by the A/D display chip. Might not be easy, but possible.
JB
__________________
Nothing is impossible for the man who doesn't have to do it himself - Weiler's Law
jbeng is offline  
Old 4th October 2006, 01:56 PM   (permalink)
Default

i got a signal from the tachometer and speedometer . Its a linear dc voltage as speed/rpm increases so does the voltage.maybe i can use that directly with an analog /digital converter and adjust it till i get rpm/mph...?
victorcarlos is offline  
Old 4th October 2006, 07:42 PM   (permalink)
Default

Cars stopped using digital speedometers in the 70's because the numbers are just a blur. Maybe you can gate the input so it jerks in a visible manner.
__________________
Uncle $crooge
audioguru is online now  
Old 4th October 2006, 10:52 PM   (permalink)
Default

I'm puzzled - my '95 FTO (can't get Eclipse easily here in UK but FTO is basically the same chassis) had pulse feed for both speedo and rpm. I fitted a HUD behind the dash (electronics in that big empty space below the stereo, could get a PC in there)!

I'm suprised that a '97 eclipse would use an analogue feed - given the problems it could introduce....

If it is all analogue - just use a pic chip and a 34 segment LED driver chip - with the 5 volt reg you have a three chip solution AKA what I did with much simpler software!

Last edited by Madhouse; 4th October 2006 at 10:56 PM.
Madhouse is offline  
Old 6th February 2007, 03:46 PM   (permalink)
Default

Madhouse-
Can you elaborate on what you did with the 34 segment driver chip? I would also like to use a pic chip to drive a 3 digit speedometer with 30-40 LED bargraph. I have the specs to do it with CMOS chips, but I wanted to make this project using some sort of PIC chip. Also, do you know of any examples of code I can look at for this kind of display? I would like to make a matching tachometer. Basically take a signal from a digital speed sensor, and make a fancy display for a custom dashboard.

Joe
kn1ghtride is offline  
Old 6th February 2007, 05:21 PM   (permalink)
Default

Quote:
Originally Posted by kn1ghtride
Madhouse-
Can you elaborate on what you did with the 34 segment driver chip? I would also like to use a pic chip to drive a 3 digit speedometer with 30-40 LED bargraph. I have the specs to do it with CMOS chips, but I wanted to make this project using some sort of PIC chip. Also, do you know of any examples of code I can look at for this kind of display? I would like to make a matching tachometer. Basically take a signal from a digital speed sensor, and make a fancy display for a custom dashboard.

Joe

4 shift registers or one LED driver would do it... the LED driver has the costs more but has internal current sources for the LEDs. Just clock out the pattern you want on the LEDs.

D.
cadstarsucks is offline  
Old 6th February 2007, 07:36 PM   (permalink)
Default

Quote:
Originally Posted by audioguru
Cars stopped using digital speedometers in the 70's because the numbers are just a blur. Maybe you can gate the input so it jerks in a visible manner.
You have said this before. My '93 Town car has a digital Speedometer that is always steady and a perfect display. I like digital anything and may be the reason I bought this car.
__________________
C:\WHUT ?
Beware the asterisk *
ClydeCrashKop is offline  
Old 7th February 2007, 02:11 PM   (permalink)
Default speedometer

Quote:
Originally Posted by cadstarsucks
4 shift registers or one LED driver would do it... the LED driver has the costs more but has internal current sources for the LEDs. Just clock out the pattern you want on the LEDs.

D.

Can you reccomend an LED driver??? Microchip's list seems endless...
I might also like to make a couple separate rows of arrays that scale up and down. 12 segments in the array... It can't be that difficult!!!

Thanks for the input- Hopefully I won't be a newbie for long...

Joe
kn1ghtride is offline  
Old 8th February 2007, 12:39 AM   (permalink)
Default

Quote:
Originally Posted by audioguru
Cars stopped using digital speedometers in the 70's because the numbers are just a blur. Maybe you can gate the input so it jerks in a visible manner.
i get round this by only updating the display once every 200ms, and using a running average of the last 5 samples , lovely and steady

and i use the max7219 led driver btw
weegee is offline  
Old 6th September 2007, 03:16 AM   (permalink)
Default

if i use a pic for this project i would need a voltage to freq converter so the pic accept this input? or could i use a analog to digital converter first and make the pic read the binary numbers? right now i have the microcontroller pic16f628A.
victorcarlos is offline  
Old 7th September 2007, 08:47 AM   (permalink)
Default

Quote:
Originally Posted by victorcarlos
if i use a pic for this project i would need a voltage to freq converter so the pic accept this input? or could i use a analog to digital converter first and make the pic read the binary numbers? right now i have the microcontroller pic16f628A.
That will be a @@!!!!***
There are PIC microcontrollers with on chip A/D converters. Try out the PIC16f88 for (if you want pin for pin replacement) or PIC16f690 (my fave).
specie is offline  
Old 2nd November 2007, 07:59 AM   (permalink)
Default about speedometer

hi guys do you have a scemetic diagram of a pic based digital speedometer as well its program in microC? co'z im having difficulties on creating a pic based digital speedometer using a pic16f84a or pic16f877a...
jay_f1983 is offline  
Reply

Bookmarks

Thread Tools
Display Modes


LinkBacks (?)
LinkBack to this Thread: http://www.electro-tech-online.com/electronic-projects-design-ideas-reviews/24358-digital-speedometer.html
Posted By For Type Date
RENAULT 9-11 KULÜBÜ - Dijital km göstergesi ? This thread Refback 20th May 2008 09:01 PM

Similar Threads
Title Starter Forum Replies Latest
The Oscilloscope ElectroMaster Electronic Theory 12 3rd February 2008 02:45 PM
digital speedometer using AT90S2313 fever Micro Controllers 57 29th January 2008 07:45 PM
Digital Speedometer . altra22 Micro Controllers 13 19th May 2006 06:48 AM
Digital Speedometer mahesh_jo General Electronics Chat 8 23rd January 2004 07:43 PM
Digital Speedometer mahesh_jo General Electronics Chat 6 19th July 2003 05:43 PM



All times are GMT. The time now is 06:13 PM.


Electronic Circuits  |  Learning Electronics
Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.

eXTReMe Tracker