View Single Post
Old 08-03-2009, 12:45 AM   #3 (permalink)
McTimson
Master EcoModder
 
McTimson's Avatar
 
Join Date: Sep 2008
Location: Nyack, NY
Posts: 310

Maverick - '22 Ford Maverick XLT
90 day: 39.49 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