Difference between revisions of "InnoTab"

From eLinux.org
Jump to: navigation, search
(Hacks)
(Hacks)
Line 19: Line 19:
 
Settings are 115200,8,n,1
 
Settings are 115200,8,n,1
  
 +
<pre>
 
The innotab uses a Sqlite database to keep track of its installed applications (this is copied to the SD card when a blank one is inserted).
 
The innotab uses a Sqlite database to keep track of its installed applications (this is copied to the SD card when a blank one is inserted).
  
Line 25: Line 26:
  
 
They are 16bit xRGB data, with the first 8 bytes being the width and height stored as 32bit integers in little endian format.
 
They are 16bit xRGB data, with the first 8 bytes being the width and height stored as 32bit integers in little endian format.
 
  
 
If you just want to run your own code you can do the following.
 
If you just want to run your own code you can do the following.
Line 41: Line 41:
 
for instance try ls -aR / >/vp_mnt/sd/LLN/APPS/myapp/dir.txt
 
for instance try ls -aR / >/vp_mnt/sd/LLN/APPS/myapp/dir.txt
  
 +
</pre>
  
 
I started porting scummvm to the Innotab see here:
 
I started porting scummvm to the Innotab see here:

Revision as of 13:05, 25 May 2012

220px

Description

Take learning to the next level with the InnoTab Learning App Tablet by VTech! This multi-media tablet combines interactive reading, learning games, creative activities, and a rich collection of applications into a sleek and durable educational toy that kids will want to play with. Featuring a 5" color touch screen and tilt-sensor, kids can tap, flick, drag, and pat their way to learning fun. The fun continues with many on-board applications such as an MP3 Player, Video Player, Art Studio, Friends List, Calculator, and Clock engaging kids for hours as they develop their skills with this electronic learning toy. Additional cartridges with favorite licensed characters are sold separately and teach essential skills in reading, logic, and creativity. Additional content such as e-books and learning games can easily be uploaded to the InnoTab through VTech's Learning Lodge Navigator where parents can also see their child's progress on a variety of educational milestones and lessons. Additional content may require an SD memory card (not included).

Specifications

  • 64MB onboard memory
  • SD card slot for memory expansion (supports SD/SDHC memory cards between the sizes of 2GB and 16GB.)
  • 5" Color LCD
  • Touchscreen
  • Tilt sensor
  • user 4AA batteries

Hacks

Innotab uart.jpg

Settings are 115200,8,n,1

The innotab uses a Sqlite database to keep track of its installed applications (this is copied to the SD card when a blank one is inserted).

Icons are also stored in the SQLite database as a binary blob.
Game icons are 57 x 57, book icons are 88 x 88

They are 16bit xRGB data, with the first 8 bytes being the width and height stored as 32bit integers in little endian format.

If you just want to run your own code you can do the following.
Download SQLite manager extension for firefox, use it to open innotab.db which is on the SD card.

Go to the “games” section, and create a duplicate entry of one that already exists..

Change the filename on the new entry to something like /vp_mnt/sd/LLN/APPS/myapp

create a folder called on the as card /LLN/APPS/myapp

in that folder create a file called _Run
and put shell commands in there :) and the innotab will execute them.

for instance try ls -aR / >/vp_mnt/sd/LLN/APPS/myapp/dir.txt

I started porting scummvm to the Innotab see here:

{{#ev:youtube|9gI_La66BhA}}

Resources