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

Reply  Post New Thread
 
Submit Tools LinkBack Thread Tools
Old 11-03-2010, 08:08 PM   #1 (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
sd card logger

saw this, looks like if you tap the tx, 5v and ground leads on a guino you can log it to a microSD card:
SparkFun Electronics - OpenLog

a 2 gig microSD card should hold about 578 days worth of logging.

It's open source too, so if you would rather build your own, go for it.

I'll get one on order.

__________________
WINDMILLS DO NOT WORK THAT WAY!!!

Last edited by dcb; 11-03-2010 at 08:20 PM..
  Reply With Quote
The Following 2 Users Say Thank You to dcb For This Useful Post:
NachtRitter (11-04-2010), SVOboy (11-03-2010)
Alt Today
Popular topics

Other popular topics in this forum...

   
Old 11-03-2010, 10:06 PM   #2 (permalink)
Coasting Down the Peak
 
skyl4rk's Avatar
 
Join Date: Jun 2008
Location: M I C H I G A N
Posts: 514

Toyauto Pickup - '94 Toyota Pickup 2WD
90 day: 36.32 mpg (US)

Versa Base - '09 Versa Sedan 1.6 Base
Team Nissan
90 day: 41.69 mpg (US)
Thanks: 27
Thanked 42 Times in 35 Posts
Here's another one:

Quick & simple Arduino temperature logger - EcoRenovator
__________________
Nissan Versa Aeromods
  Reply With Quote
Old 11-03-2010, 11:50 PM   #3 (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
Thanks for the post. This looks like a pretty nice solution to logging that doesn't involve hauling around a laptop.
  Reply With Quote
Old 11-04-2010, 12:42 AM   #4 (permalink)
NightKnight
 
NachtRitter's Avatar
 
Join Date: Dec 2008
Location: Placerville, CA
Posts: 1,594

RippinRoo - '05 Subaru Legacy Wagon 2.5 GT
Subaru
90 day: 21.16 mpg (US)

Helga - '00 Volkswagen Jetta TDI
TEAM VW AUDI Group
Diesel
90 day: 53.91 mpg (US)

Olga - '03 Volkswagen Jetta Wagon
90 day: 46.24 mpg (US)
Thanks: 303
Thanked 311 Times in 186 Posts
Yay! Now just need a GPS hooked into there so that GPS and FE data is saved together... <hint, hint>
  Reply With Quote
Old 11-04-2010, 06:38 AM   #5 (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
lol, you might be able to hack it to take two inputs and write two files using softwareserial. the onboard 328 looks pretty lightly loaded.
__________________
WINDMILLS DO NOT WORK THAT WAY!!!
  Reply With Quote
Old 11-05-2010, 02:23 AM   #6 (permalink)
EcoModding Apprentice
 
Join Date: Aug 2009
Location: terra firma
Posts: 138
Thanks: 4
Thanked 24 Times in 22 Posts
I added SD to my 'guino, using Arduino Forum - SD card read/write with Arduino as my starting point. Rather than using all those 3300 & 1800-ohm resistors, i used a single IC (74HC125N i think). Someone somewhere said newer SD cards may not work with the resistor method. A 3.3v regulator may also be required, though my arduiino has it built-in via the FTDI chip.

The nutshell: it uses digital pins 10-13, which are currently in use by the LCD, so i had to rewire the LCD in 3-wire mode, which also requires an IC (74HC164 or equiv).

Hardware cost: as low as $1.00 for the 2 chips. I built 2 different card slots, one using a microSD-to-SD adapter; for the other, i salvaged a SD connector from a junked phone or something. My guino was cut, desoldered, and resoldered, though it would have been preferable to build one clean from the start.

Memory requirements are roughly 2.5k eeprom for code, 520 bytes RAM (including the 512b r/w buffer).

Data portability: a little tricky. My 168 didn't have room for the full FAT library, so the guino has to maintain its own filesystem on the SD. Data needs to be extracted by scripts on your PC. Not the end of the world if you're a hacker type, but definitely not grandma-friendly. Card size limit is 2gb. SDHC support would have complicated things a bit, and like dcb said, you get eons of logging on the small cards.


I had started writing up a post detailing the 3pin LCD and SD stuff some time ago, then v0.86 was released, and i didn't know if/how the addon would fit in, so i dropped it. I'll try to post it up if there's any interest, and when i get the time. I also haven't been using the SD, as it's on my spare 'guino, which i haven't figured out how to install in my TDI Jetta A3.
  Reply With Quote
Old 11-05-2010, 05:02 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
I'm not bent on integrating the sd card, that is fine as an offloaded function. but It might be useful to have the guino start xmiting analog reads from the two unused analog pins. Might even want to free up a couple more analog pins and forget the spare pwm pins. Then the logging folks could hook up map/o2 sensor/throttle pot/??? And it should be possible to do some after-the-fact/realtime computations on those as well, i.e. load/bsfc.
__________________
WINDMILLS DO NOT WORK THAT WAY!!!

Last edited by dcb; 11-05-2010 at 05:20 AM..
  Reply With Quote
Old 11-10-2010, 03:30 AM   #8 (permalink)
EcoModding Lurker
 
Join Date: Nov 2010
Location: Monterey, CA
Posts: 21
Thanks: 0
Thanked 0 Times in 0 Posts
Thanks guys for posting these links. I like the idea of logging, and then analyzing trends in a spreadsheet.
  Reply With Quote
Old 12-19-2010, 10:30 AM   #9 (permalink)
halos.com
 
Join Date: Oct 2009
Location: Oklahoma City, OK
Posts: 528

ECONORAM - '07 Dodge RAM 1500 QC SLT flex-fuel
90 day: 18.16 mpg (US)

the Avenger - '08 Dodge Avenger SXT
90 day: 27.06 mpg (US)
Thanks: 385
Thanked 94 Times in 80 Posts
Send a message via Yahoo to ECONORAM
nickdigger, did you do this with a preassembled MPGuino? Do you know if it is doable with the preassembled flavor? I ask because I am having difficulty finding a OBD device that will provide me inst mpg for Dodge vehicles...because they do not use a MAF. If I can record straight off the MPGuino to an SD card, that would fix the problem!

  Reply With Quote
Reply  Post New Thread




Similar Threads
Thread Thread Starter Forum Replies Last Post
TI-83 as data logger? NiHaoMike Instrumentation 4 05-31-2010 06:25 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