Register Guidelines E-Books Search Today's Posts Mark Forums Read

Go Back   MobileRead Forums > E-Book Readers > Amazon Kindle > Kindle Developer's Corner

Notices

Reply
 
Thread Tools Search this Thread
Old 06-18-2012, 09:15 AM   #1
leonard.pitzu
Junior Member
leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.
 
Posts: 9
Karma: 4788
Join Date: May 2012
Device: Kindle Touch
Exclamation Kindle Touch hardware modding

edit1: if somebody is want's to do this please contact me and i will post/send detailed instructions on how to do it (or at least how i did it).

edit2: i have reuploaded the *.zip file with the corrected index.html (i've removed a useless line - thanks for pointing that out). also i have uploaded a small guide on how to make this whole thing happen. please point out the sections which you all think are worth of elaborating.

This is my first post so please bear with me :-)

I've got a Kindle Touch (Wifi version) and after some playing around with it had an crazy modding idea. It's useless but it's still nice to do so here i am sharing this ideea.
A while ago i built a weather station (complete with all kinds of sersors, logging, graphs, symbian, android, google chrome and mozilla firefox apps, etc.). Cool but what if i am somewhere remote and i want to see the temperature or the pressure. Maybe altitude? What if i could do this using my Kindle. Now i can (and hopefully You will also do :-) )!
The basic idea behind is to have a sensor and a small microcontroller that reads the sensor data. On request this data is sent to the Kindle which displays it on the e-ink screen. I have choosen a BMP085 pressure/temperature sensors. Out of this data i can also compute the altitude. The sensor is hooked on to a modified Arduino Pro Mini board (i ripped aff the power supply and the LED's in order to get a "low power" gadget. No the tricky part was the communication with the Kindle. The Touches have a serial port but this one is the linux console. I took a radical approach and disabled the console (just remove /etc/init/console.conf) leaving the kernel debug messages (i just ignore this messages).
From the functional point of view the small bard i designed is almost all the time in power down. When a byte of data is received on the serial port the bard wakes up and checks if the message received has a known format (e.g. data request). If it does it sends the sensor data and then goes back into power down. On the Kindle side this process is triggered using a WAF application. This launches a bash script which does all the communication part with the board. The received data is saved to a local file which is then opened by the web app itself, parsed and graphicaly displayed.
I hope that someone will find this modification as fun as i did and maybe come up with a better, cooler idea.

Attached are some pics and the code. It's free to use/reuse but keep in mind: I AM NOT RESPONSIBLE FOR BRICKING YOUR DEVICES. YOU NEED TO KNOW HARDWARE, SOFTWARE AND TECHNICAL STUFF IN GENERAL TO BE ABLE TO DO THIS MODIFICATIONS!!!!
Attached Thumbnails
Click image for larger version

Name:	final.JPG
Views:	737
Size:	1.04 MB
ID:	87927   Click image for larger version

Name:	IMG_0453.JPG
Views:	636
Size:	945.8 KB
ID:	87928   Click image for larger version

Name:	IMG_0460.JPG
Views:	521
Size:	895.3 KB
ID:	87929   Click image for larger version

Name:	IMG_0456.JPG
Views:	507
Size:	947.2 KB
ID:	87930   Click image for larger version

Name:	IMG_0463.JPG
Views:	487
Size:	854.3 KB
ID:	87931  
Attached Files
File Type: pdf kindle_touch_personal_weather_station.pdf (2.40 MB, 4988 views)
File Type: zip weatherconsole.zip (741.3 KB, 287 views)

Last edited by leonard.pitzu; 06-19-2012 at 07:12 AM.
leonard.pitzu is offline   Reply With Quote
Old 06-18-2012, 09:19 AM   #2
geekmaster
Carpe diem, c'est la vie.
geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.
 
geekmaster's Avatar
 
Posts: 6,433
Karma: 10773668
Join Date: Nov 2011
Location: Multiverse 6627A
Device: K1 to PW3
Quote:
Originally Posted by leonard.pitzu View Post
edit1: if somebody is want's to do this please contact me and i will post/send detailed instructions on how to do it (or at least how i did it).

This is my first post so please bear with me :-)

I've got a Kindle Touch (Wifi version) and after some playing around with it had an crazy modding idea. It's useless but it's still nice to do so here i am sharing this ideea.
A while ago i built a weather station (complete with all kinds of sersors, logging, graphs, symbian, android, google chrome and mozilla firefox apps, etc.). Cool but what if i am somewhere remote and i want to see the temperature or the pressure. Maybe altitude? What if i could do this using my Kindle. Now i can (and hopefully You will also do :-) )!
The basic idea behind is to have a sensor and a small microcontroller that reads the sensor data. On request this data is sent to the Kindle which displays it on the e-ink screen. I have choosen a BMP085 pressure/temperature sensors. Out of this data i can also compute the altitude. The sensor is hooked on to a modified Arduino Pro Mini board (i ripped aff the power supply and the LED's in order to get a "low power" gadget. No the tricky part was the communication with the Kindle. The Touches have a serial port but this one is the linux console. I took a radical approach and disabled the console (just remove /etc/init/console.conf) leaving the kernel debug messages (i just ignore this messages).
From the functional point of view the small bard i designed is almost all the time in power down. When a byte of data is received on the serial port the bard wakes up and checks if the message received has a known format (e.g. data request). If it does it sends the sensor data and then goes back into power down. On the Kindle side this process is triggered using a WAF application. This launches a bash script which does all the communication part with the board. The received data is saved to a local file which is then opened by the web app itself, parsed and graphicaly displayed.
I hope that someone will find this modification as fun as i did and maybe come up with a better, cooler idea.

Attached are some pics and the code. It's free to use/reuse but keep in mind: I AM NOT RESPONSIBLE FOR BRICKING YOUR DEVICES. YOU NEED TO KNOW HARDWARE, SOFTWARE AND TECHNICAL STUFF IN GENERAL TO BE ABLE TO DO THIS MODIFICATIONS!!!!
Awesome! Why don't you place the details into a mobileread wiki page?

This earned the 2600 "geekmaster creativity award" karma upgrade. Hmm... I thought I saw "karma = 10" before posting this, but when I went to add karma, it was already over 1900, so I just gave the max karma that I can, instead.
geekmaster is offline   Reply With Quote
Old 06-18-2012, 09:21 AM   #3
NiLuJe
BLAM!
NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.
 
NiLuJe's Avatar
 
Posts: 13,477
Karma: 26012464
Join Date: Jun 2010
Location: Paris, France
Device: Kindle 2i, 3g, 4, 5w, PW, PW2, PW5; Kobo H2O, Forma, Elipsa, Sage, C2E
I broke GM's shiny 2600 karma total, sorry .

But I concur, crazy HW modders make me happy .
NiLuJe is offline   Reply With Quote
Old 06-18-2012, 10:31 AM   #4
silver18
THE NOOB
silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.
 
silver18's Avatar
 
Posts: 701
Karma: 1545649
Join Date: Jan 2012
Location: Italy
Device: Kindle Touch 5.3.2
Awesome!!!!
Would it be possible to use USB port instead of serial?
It could become a pluggable device...

PS in index.html there is "fillSelect()" probably from ImageGallery. as you don't use it, you can remove it!!
silver18 is offline   Reply With Quote
Old 06-18-2012, 10:36 AM   #5
leonard.pitzu
Junior Member
leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.
 
Posts: 9
Karma: 4788
Join Date: May 2012
Device: Kindle Touch
Howdy guys :-)

Great to see You are like this modd. I'll post ASAP on the wiki page a long detailed guide. I hope i'll be able to do it this evening or latest tomorrow morning.

If You have any ideas, comments or something to ask please feel free to write me an email.
leonard.pitzu is offline   Reply With Quote
Old 06-18-2012, 10:39 AM   #6
leonard.pitzu
Junior Member
leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.
 
Posts: 9
Karma: 4788
Join Date: May 2012
Device: Kindle Touch
Quote:
Originally Posted by silver18 View Post
Awesome!!!!
Would it be possible to use USB port instead of serial?
It could become a pluggable device...

PS in index.html there is "fillSelect()" probably from ImageGallery. as you don't use it, you can remove it!!
correct. it's a left-over. i have removed it and will upload the new "stuff" on the wiki when the guide will be published.

regarding the usb... would be nice but the Kindle does not have "host" capabilities - that is i cannot "read" data from an external device; the kindle is the "stick" and not the "computer". i sadly don't have o clue on how to make the kindle a host device - would probably need heavy kernel modification, that if the hardware supports it.
leonard.pitzu is offline   Reply With Quote
Old 06-18-2012, 10:54 AM   #7
silver18
THE NOOB
silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.
 
silver18's Avatar
 
Posts: 701
Karma: 1545649
Join Date: Jan 2012
Location: Italy
Device: Kindle Touch 5.3.2
I suspected it...It should involve writing a kernel with usb host capability (best thing would be adding the possibility to switch from standard kernel to usb host kernel).
But this could become a pain with firmware updates...
On the other hand, it opens loads of possibilities (read and write to usb flash drives...)
silver18 is offline   Reply With Quote
Old 06-18-2012, 11:03 AM   #8
knc1
Going Viral
knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.
 
knc1's Avatar
 
Posts: 17,212
Karma: 18210809
Join Date: Feb 2012
Location: Central Texas
Device: No K1, PW2, KV, KOA
Quote:
Originally Posted by silver18 View Post
I suspected it...It should involve writing a kernel with usb host capability (best thing would be adding the possibility to switch from standard kernel to usb host kernel).
But this could become a pain with firmware updates...
On the other hand, it opens loads of possibilities (read and write to usb flash drives...)
I think that is already present, just rmmod/insmod the correct drivers and use a micro-USB host cable. The cable that comes with the Kindle is a micro-USB device cable.
knc1 is offline   Reply With Quote
Old 06-18-2012, 11:13 AM   #9
silver18
THE NOOB
silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.
 
silver18's Avatar
 
Posts: 701
Karma: 1545649
Join Date: Jan 2012
Location: Italy
Device: Kindle Touch 5.3.2
Quote:
Originally Posted by knc1 View Post
I think that is already present, just rmmod/insmod the correct drivers and use a micro-USB host cable. The cable that comes with the Kindle is a micro-USB device cable.
Something like this?

Shame there isn't a nice file manager....

EDIT: does the Kindle's usb board delivers 5v?

Last edited by silver18; 06-18-2012 at 11:21 AM.
silver18 is offline   Reply With Quote
Old 06-18-2012, 11:20 AM   #10
knc1
Going Viral
knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.
 
knc1's Avatar
 
Posts: 17,212
Karma: 18210809
Join Date: Feb 2012
Location: Central Texas
Device: No K1, PW2, KV, KOA
Quote:
Originally Posted by silver18 View Post
Something like this?

Shame there isn't a nice file manager....
That may not have a standard USB socket on it, rather a mSDHC card socket.

Try this one:
http://www.amazon.com/SANOXY-Micro-U...ef=pd_cp_cps_0

Better buy it quick before Amazon discovers that it works on all Kindles and ups the price.

Edit: my bad, didn't page down enough, Kindles are already listed.

Last edited by knc1; 06-18-2012 at 11:25 AM.
knc1 is offline   Reply With Quote
Old 06-18-2012, 11:28 AM   #11
geekmaster
Carpe diem, c'est la vie.
geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.
 
geekmaster's Avatar
 
Posts: 6,433
Karma: 10773668
Join Date: Nov 2011
Location: Multiverse 6627A
Device: K1 to PW3
Quote:
Originally Posted by knc1 View Post
I think that is already present, just rmmod/insmod the correct drivers and use a micro-USB host cable. The cable that comes with the Kindle is a micro-USB device cable.
Because you need a software app to switch the USB port to Host mode, you can just use a USB gender changer. A real host cable is only needed to trigger host mode on devices that detect a host cable.

But then, the host cables I got were only $0.99USD (including shipping) from a Chinese ebay store (plus a month or more wait time for delivery).

If you are in a hurry, you can make one (with no host cable signal) from a couple of other cables by cutting and soldering them.

We still need a USB mode switch software tool (perhaps we can adapt the one provided in the Nook Simple Touch forum at MR).

Last edited by geekmaster; 06-18-2012 at 12:10 PM.
geekmaster is offline   Reply With Quote
Old 06-18-2012, 11:59 AM   #12
knc1
Going Viral
knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.
 
knc1's Avatar
 
Posts: 17,212
Karma: 18210809
Join Date: Feb 2012
Location: Central Texas
Device: No K1, PW2, KV, KOA
Quote:
Originally Posted by knc1 View Post
That may not have a standard USB socket on it, rather a mSDHC card socket.

Try this one:
http://www.amazon.com/SANOXY-Micro-U...ef=pd_cp_cps_0

Better buy it quick before Amazon discovers that it works on all Kindles and ups the price.

Edit: my bad, didn't page down enough, Kindles are already listed.
I just ordered a pair of them.
Do not be in a hurry, shipping estimate: "Sometime this year" or something similar to that from HongKong to where I live.
knc1 is offline   Reply With Quote
Old 06-19-2012, 01:57 AM   #13
leonard.pitzu
Junior Member
leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.
 
Posts: 9
Karma: 4788
Join Date: May 2012
Device: Kindle Touch
accodring to this the i.MX508 has usb host capabilities. and here comes the *but*... On Freescale's website there are schematics for a i-MX50 demo board which "fits" for allmost all i.MX508 family processors. there is also a usb host on the schematic but sadly it uses different pins then the usb otg. i am not 100% sure if this is also the case for the i.MX508 SoC but it seems so... i don't think a basic "wiring" adapter and some clever software will do the trick. even if the host pins are hooked up inside the kindle (i'dd doubt that as every hw company tryies to reduce cost even by cents and thus will not add every feature the SoC supports) we would still need an external power supply to power the external device - hosts need to do that. now please correct me if i'm wrong...
i'll check the kindle for usb host capabilities (i'll take it appart, again, to see what's on the PCB) and come back here to report my findings.
by the way, does anybody have a "schematic" for the touch. or anything that resembles one :-)
Attached Files
File Type: pdf usb_stuff.pdf (292.5 KB, 291 views)
leonard.pitzu is offline   Reply With Quote
Old 06-19-2012, 02:00 AM   #14
leonard.pitzu
Junior Member
leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.leonard.pitzu is fluent in JavaScript as well as Klingon.
 
Posts: 9
Karma: 4788
Join Date: May 2012
Device: Kindle Touch
Quote:
Originally Posted by geekmaster View Post
Awesome! Why don't you place the details into a mobileread wiki page?

This earned the 2600 "geekmaster creativity award" karma upgrade. Hmm... I thought I saw "karma = 10" before posting this, but when I went to add karma, it was already over 1900, so I just gave the max karma that I can, instead.

where in the wiki pages? is this ok?

thanks for the help!
leonard.pitzu is offline   Reply With Quote
Old 06-19-2012, 02:14 AM   #15
geekmaster
Carpe diem, c'est la vie.
geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.
 
geekmaster's Avatar
 
Posts: 6,433
Karma: 10773668
Join Date: Nov 2011
Location: Multiverse 6627A
Device: K1 to PW3
Quote:
Originally Posted by leonard.pitzu View Post
where in the wiki pages? is this ok?

thanks for the help!
That page is already getting big, and is for more general stuff.

You can create a new page by changing the end of the URL. Then click edit. You can copy contents from other wiki pages to it. To learn about editing, go to a page in the master index and click Edit in the index menu.

Then we can link it into the index.

You CAN post details here if you want, in a forum posting...

Or just put everything in a PDF and post that here.

Whatever is easier for you.


P.S. The host mode pins are reserved for the 3G modem, in kindles with 3G.
geekmaster is offline   Reply With Quote
Reply

Tags
hardware modding

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Kindle Sales (Hardware) Appear to Be Way Down abookreader News 69 05-11-2012 11:58 PM
Kindle hardware number? weatherman Kindle Fire 4 11-24-2011 01:11 PM
Kindle 3, Nook Simple Touch, Kobo Touch and Libra Pro Touch jbcohen Which one should I buy? 4 06-18-2011 07:58 PM
Kindle DX Hardware Reset kindx Kindle Developer's Corner 3 02-16-2010 06:10 AM
Modding My Kindle DiggerG Amazon Kindle 15 11-01-2009 12:01 PM


All times are GMT -4. The time now is 07:09 AM.


MobileRead.com is a privately owned, operated and funded community.