2

Just a quick one, if anyone knows:

Is it possible to display a TomTom devices screen on a computer (so I can interface with it's navigation ability?)

They have an SDK, however that does not have any useful information on this question, but TomTom Home can do it - so can I? C# / C++ / Whatever.

Cheers

Marineio
  • 415
  • 4
  • 10
  • What are you trying to do? What ability do you want to interface to? – Jethro Jul 06 '11 at 15:23
  • Attempting to use it's navigational ability through, say, a car computer. TomTom home has an emulator, but it turns the GPS to demo mode. – Marineio Jul 06 '11 at 16:09
  • HOME is running its own copy of TomTom NavCore, which misses essential parts such as GPS software (as there's generally no GPS hardware on your PC either). Also, that NavCore emulator is loaded within the HOME process so and makes assumptions about its hosting process. – MSalters Apr 19 '13 at 15:03

1 Answers1

3

TomTom is running linux so you can get the raw image data from /dev/raw.

cat /dev/fb > /mnt/sdcard/screenshot.raw

on the device should do it

Then you need to transfer it to your computer (needs to be done quickly). This should be possible to do over Bluetooth, over USB or possibly by using a Eye-Fi SD card.

I don't think it is possible to do it any other way.

Access the device by Bluetooth console

Björn Nilsson
  • 3,703
  • 1
  • 24
  • 29