Go Back   EcoModder Forum > EcoModding > Instrumentation > OpenGauge / MPGuino FE computer
Register Now
 Register Now
 

Reply  Post New Thread
 
Submit Tools LinkBack Thread Tools
Old 08-02-2009, 11:37 PM   #1 (permalink)
EcoModding Apprentice
 
gtkid2002's Avatar
 
Join Date: Feb 2009
Location: USA - WA
Posts: 110

The Bug - '69 Volkswagen Bug Base
Thanks: 6
Thanked 0 Times in 0 Posts
Question MPGuino additon? BIG instant speed?

Howdy everyone, I am almost about to get an MPGuino, but I want to see if I can clarify a question about it. Would it be possible with the stock chip, to add a BIG speedo readout?

Here's why:

I drive an '89 Prelude Si. It uses a mechanical speedometer. The 90/91 Preludes do not. Now, the problem with the 88/89's is a gear on the inside of the speedometer wears out. Then your speedo no longer works when YOU want it to, but at it's own discretion. So I almost need the mpguino to double as a speedometer, with the function of the mpg gauge secondary.

Would it be possible to reflash it with a sort of display setting # 10 or something that has a large Instant speed, and a smaller current mpg rating underneath it perhaps?

I don't know about programming, but if it can be done, I'll fork out and get it as soon as I have the extra cash so I can do this. Otherwise, I have to put this on a back burner. I don't mind if I have to overwrite one of the other display settings, I will just learn to get around that one.

I pretty much plan on removing my stock speedo needle, and putting the MPGuino in a fancy case (the LCD anyways), and putting it on top of my speedo.

Why all the extra effort? Because it's a PITA to gauge speed at night with a double yellow to your left. It can be done, but if I'm sleepy or exhausted, I don't want to. That, and oncoming makes doing that a pain.

__________________
I suck at coding! Woo!

1969 VW Bug - Daily Driver
1975 VW Baja - Current Project
Priors:
1989 Honda Prelude Si 4WS (RIP)
1995 Honda Prelude Si (Traded)
1980 Fiat Spider 2000 (Sold)
  Reply With Quote
Alt Today
Popular topics

Other popular topics in this forum...

   
Old 08-03-2009, 12:00 AM   #2 (permalink)
Dartmouth 2010
 
SVOboy's Avatar
 
Join Date: Nov 2007
Location: Hanover, NH
Posts: 6,447

Vegan Powa! - '91 Honda CRX DX
Team Honda
90 day: 66.52 mpg (US)
Thanks: 92
Thanked 122 Times in 90 Posts
Send a message via AIM to SVOboy Send a message via MSN to SVOboy Send a message via Yahoo to SVOboy
I'm sure you could do it if you wanted to dig in the code a bit.

A gauge cluster can't cost much for that car though, $20?
  Reply With Quote
Old 08-03-2009, 12:45 AM   #3 (permalink)
Master EcoModder
 
McTimson's Avatar
 
Join Date: Sep 2008
Location: Nyack, NY
Posts: 310

Maverick - '22 Ford Maverick XLT
90 day: 39.04 mpg (US)
Thanks: 1
Thanked 5 Times in 5 Posts
It could easily be done, but you need to make sure your odometer is accurate before you do it, or you'll have a tougher time calibrating it.

Lines 263-274, and 532-565 define the different screens, all you have to do is change something like this:
(line 267)
Code:
  doDisplayBigInstant,
(line 540)
Code:
void doDisplayBigInstant() {bigNum(instantmpg(),"INST","MPG ");}
to this:
Code:
void doDisplayBigInstant() {bigNum(instantmph(),"INST","MPH ");}
And line 267 could remain the same.

You could add another screen, but it might increase the sketch size too much, so it might not fit on the ordinary board.

Changing how the stuff is displayed is easy, if you root through the code around those line numbers, you should be able to figure out how it works. You can use something like Notepad++ to show line numbers if you don't have a program to do it already.
__________________
  Reply With Quote
Old 08-03-2009, 01:15 AM   #4 (permalink)
EcoModding Apprentice
 
gtkid2002's Avatar
 
Join Date: Feb 2009
Location: USA - WA
Posts: 110

The Bug - '69 Volkswagen Bug Base
Thanks: 6
Thanked 0 Times in 0 Posts
Oh sweet. Thanks for the codingness McTimson~

@SVOboy:
A gauge cluster for my car isn't really an option for me. The lone part I need has to be from the same year, which my local scrap yard does not have. The other option is to buy the part online, but that runs 50 bucks, not including shipping. That, and due to the fact that it's a cluster that reads out everything on my car, I don't want to risk screwing that up. I trust myself to work on computers and engine work and such, but the threat of ruining an entire cluster scares the crap out of me.

@McTimson:

I think i'm going to try to get my hands on the code so I can play with it. I tried getting into arudino *cant spell, don't care* a while back, but I've always been limited to the budget. It's tempting to run an arudio for the sole purpose of my speedo, then get an MPGuino so I don't have to worry about screwing one up too much.

Heh, an LED "analog" needle sweep would be pretty wicked for a speedo. Have it move up a set of LEDs per 5Mph. Make another one to move up and down per 5Mpg or something too.

Ugh, just talking about this stuff makes my head explode with ideas.
__________________
I suck at coding! Woo!

1969 VW Bug - Daily Driver
1975 VW Baja - Current Project
Priors:
1989 Honda Prelude Si 4WS (RIP)
1995 Honda Prelude Si (Traded)
1980 Fiat Spider 2000 (Sold)
  Reply With Quote
Old 08-03-2009, 08:47 AM   #5 (permalink)
Master EcoModder
 
Join Date: Nov 2008
Location: 18603, USA
Posts: 759

The Crimson Crawler - '04 Hyundai Elantra GLS
90 day: 36.71 mpg (US)
Thanks: 221
Thanked 60 Times in 45 Posts
Agreed. I'm willing to poke the code for you too, if you'd like, and send you a modified file.

You did give me another idea, though. Make a "speedometer" out of tiny surface-mount LEDs. Have it light up in a "sweep" motion like an analog gauge for speed, but have the length of the "needle" change to indicate MPG.
  Reply With Quote
Old 08-20-2009, 02:14 AM   #6 (permalink)
EcoModding Apprentice
 
Join Date: Aug 2009
Location: terra firma
Posts: 138
Thanks: 4
Thanked 24 Times in 22 Posts
Quote:
Originally Posted by gtkid2002 View Post
I drive an '89 Prelude Si. It uses a mechanical speedometer. The 90/91 Preludes do not. Now, the problem with the 88/89's is a gear on the inside of the speedometer wears out. Then your speedo no longer works when YOU want it to, but at it's own discretion. So I almost need the mpguino to double as a speedometer, with the function of the mpg gauge secondary.
Hope i'm not missing something here, but if your speedo is mechanical, do you even have a VSS?? And without a VSS, isn't the mpguino basically a paperweight?
  Reply With Quote
Old 08-20-2009, 02:22 AM   #7 (permalink)
dcb
needs more cowbell
 
dcb's Avatar
 
Join Date: Feb 2008
Location: ÿ
Posts: 5,038

pimp mobile - '81 suzuki gs 250 t
90 day: 96.29 mpg (US)

schnitzel - '01 Volkswagen Golf TDI
90 day: 53.56 mpg (US)
Thanks: 158
Thanked 269 Times in 212 Posts
Quote:
Originally Posted by nickdigger View Post
And without a VSS, isn't the mpguino basically a paperweight?
Lol, no it will still keep track of your injectors and track fuel consumption. Typically cars have some sort of distance/speed instrumentation built in and you just have to do the math in your head or on paper till you get good at it.
__________________
WINDMILLS DO NOT WORK THAT WAY!!!
  Reply With Quote
Old 08-20-2009, 03:09 AM   #8 (permalink)
EcoModding Apprentice
 
gtkid2002's Avatar
 
Join Date: Feb 2009
Location: USA - WA
Posts: 110

The Bug - '69 Volkswagen Bug Base
Thanks: 6
Thanked 0 Times in 0 Posts
Yeah, it would be, but the ECU needs it to keep track of the cruise control. No cruise control, no VSS, no MPGuino. The cable that powers the speedo gearbox is for that, and the odometer.

On another note, I wish I could merge threads. I'm gonna hopefully do the needle sweep idea with the MPGuino Mega, and hopefully have another one for gas consumption as well, and both of them with an LED driver if that works as I think it does.
__________________
I suck at coding! Woo!

1969 VW Bug - Daily Driver
1975 VW Baja - Current Project
Priors:
1989 Honda Prelude Si 4WS (RIP)
1995 Honda Prelude Si (Traded)
1980 Fiat Spider 2000 (Sold)
  Reply With Quote
Old 08-21-2009, 10:13 PM   #9 (permalink)
EcoModding Apprentice
 
americasfuture2k's Avatar
 
Join Date: Nov 2008
Location: edmond, ok
Posts: 118

SLOLANE - '08 Chevy (Daewoo) Aveo5 SV
90 day: 30.55 mpg (US)
Thanks: 0
Thanked 1 Time in 1 Post
so has anyone tried this yet to see if those code mods work? im not seeing any objection to it, so im guessing it does. but some clarification would be grand.
__________________
If you cant fix it with a hammer, then you have an electrical problem



http://www.cardomain.com/ride/3159589


shutup, im working on it
  Reply With Quote
Old 08-23-2009, 06:34 PM   #10 (permalink)
EcoModding Apprentice
 
gtkid2002's Avatar
 
Join Date: Feb 2009
Location: USA - WA
Posts: 110

The Bug - '69 Volkswagen Bug Base
Thanks: 6
Thanked 0 Times in 0 Posts
That would be cool if someone could test it, but If not, no matter. I'll hopefully have this whole thing up and running before October, but that depends on a lot of things.

__________________
I suck at coding! Woo!

1969 VW Bug - Daily Driver
1975 VW Baja - Current Project
Priors:
1989 Honda Prelude Si 4WS (RIP)
1995 Honda Prelude Si (Traded)
1980 Fiat Spider 2000 (Sold)
  Reply With Quote
Reply  Post New Thread


Thread Tools


Similar Threads
Thread Thread Starter Forum Replies Last Post
MPGuino release one workspace dcb OpenGauge / MPGuino FE computer 1061 01-17-2020 01:37 AM
How to get instant fuel consumption from Megasquirt TELVM Instrumentation 11 08-29-2011 02:47 PM
Suggested MPGuino change: average speed poindexter OpenGauge / MPGuino FE computer 6 01-11-2009 10:45 PM
will bicycle speedo work as speed sensor for MPGuino? modmonster OpenGauge / MPGuino FE computer 2 08-28-2008 05:55 PM
speed on mpguino fluctuates briansavka OpenGauge / MPGuino FE computer 1 08-01-2008 11:06 AM



Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Content Relevant URLs by vBSEO 3.5.2
All content copyright EcoModder.com