Using the BS2 for auto gauges?
jknightandkarr
Posts: 234
I"m fairly new to microcontrollers & have a question. Can the BS2 be used for creating Automotive gauges? Specifically the Speedo, Tach & an odometer, as well as other gauges. If so whats the best way to go about making them? Thanks
Joe
Joe
Comments
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
- Stephen
Joe
once the "need" is listed, start aproaching the problem one part at a time.
Finishing it is to design you circuit board and join everything.
but , About the question.. Yes, BS2 is capable of mesuring speed, distance and a whole bunch of sensors , but it is a single task microcontroler, witch for automotive purpose is not a problem since the mesurements taken can be so fast that you wouldn´t note that this is not happening all together !
If you are planning to start with Microcontrolers ,, BS2 is the right place, it´s tutorials and materials for self learning is just amazing !
Amaral
(VSS) Vehicle Speed Sensor is an a/c signal up to 30volts. Ref books can be found at parallax. Whats a mircocontroler and Basic analog and digital. Very good place to start.
Joe
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
- Stephen
For example, Process Control has a tach - but I wouldn't use that with your fan as you'd need to be within an inch or so of the moving fan.
Joe
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
· -- Carl, nn5i@arrl.net
Joe
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Chris Savage
Parallax Engineering
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
· -- Carl, nn5i@arrl.net
Joe
Is there a way to get the BS2 to use integer math or is there an alternate BS2 series chip that will use it?
Joe
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
························ Craig Eid
··········· Triad Research and Development
Electical Engineering Design and Consulting Services
··················· www.TriadRD.com
Joe
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
························ Craig Eid
··········· Triad Research and Development
Electical Engineering Design and Consulting Services
··················· www.TriadRD.com
Joe
' {$STAMP BS2}
' {$PBASIC 2.5}
Pulse PIN 15
vss VAR Word
Mph VAR Word
DO
COUNT Pulse, 1000, vss
Mph=vss
DEBUG HOME, " MPH = ", DEC Mph
LOOP
Thanks
Joe
Review this posting on High resolution RPM code for an alternative using the PULSIN command.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
························ Craig Eid
··········· Triad Research and Development
Electical Engineering Design and Consulting Services
··················· www.TriadRD.com
Joe
It sounds like you are making good progress on your digital dash. Keep up the good work!
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
························ Craig Eid
··········· Triad Research and Development
Electical Engineering Design and Consulting Services
··················· www.TriadRD.com
Joe