View Single Post
Old 11-15-2015, 05:02 PM   #3
grant2
Banned
grant2 ought to be getting tired of karma fortunes by now.grant2 ought to be getting tired of karma fortunes by now.grant2 ought to be getting tired of karma fortunes by now.grant2 ought to be getting tired of karma fortunes by now.grant2 ought to be getting tired of karma fortunes by now.grant2 ought to be getting tired of karma fortunes by now.grant2 ought to be getting tired of karma fortunes by now.grant2 ought to be getting tired of karma fortunes by now.grant2 ought to be getting tired of karma fortunes by now.grant2 ought to be getting tired of karma fortunes by now.grant2 ought to be getting tired of karma fortunes by now.
 
Posts: 13
Karma: 348455
Join Date: Oct 2015
Device: paperwhite pw2
Part 3: Windows Computer Setup

Part 3: Windows Computer Setup

1. Get your Kindle's password

Python can magically turn your serial number into your kindle's password. We will need the password to do tricky things with it.

Open a command prompt

Click image for larger version

Name:	jb-12-command prompt.png
Views:	4870
Size:	10.6 KB
ID:	143766

Run "Python" and execute these commands:

import hashlib
print("fiona%s"%hashlib.md5("
<your kindle serial number with no spaces and all capital letters>\n".encode('utf-8')).hexdigest()[13:16])

Click image for larger version

Name:	jb-13-get password.png
Views:	4850
Size:	33.1 KB
ID:	143767

What pops out is your root password! "fionaxxx"

Hint: If you cannot run python it means you did not install it properly


2. Set up your COM port

Now we need configure your computer to talk to the USB converter board.

Plug board into your computer.
Open "Device Manager" and find the "USB Serial Port (COM3)" item which is now available

Hint: If this device isn't showing in windows, it means you didn't install the drivers correctly!

Right-click the item and edit its properties

Click image for larger version

Name:	jb-10-USB Serial device.png
Views:	3768
Size:	25.6 KB
ID:	143764

Click "Port Settings" and set everything like below:

Click image for larger version

Name:	jb-11-port settings.png
Views:	4422
Size:	8.2 KB
ID:	143765

3. Set up PuTTy

Putty is the program that will talk to your kindle. Open the program, create, and save a new connection with these settings:

- Connection Type = "Serial"
- Serial line = "COM3" or whatever COM # this shows up as in device manager
- Speed = "115200"

Click image for larger version

Name:	jb-14-putty setup1.png
Views:	3872
Size:	17.0 KB
ID:	143768

Navigate to "Connection" -> "Serial" and set up the options to match what you set up in device manager

Click image for larger version

Name:	jb-15-putty setup 2.png
Views:	4278
Size:	21.0 KB
ID:	143769

Save the session again (sometimes putty forgets stuff...) and then open the session:

Click image for larger version

Name:	jb-16-putty setup 3.png
Views:	3137
Size:	18.1 KB
ID:	143770

A new blank, black window will appear. This is the window which lets us talk to the kindle.

Click image for larger version

Name:	jb-17-blank putty window.png
Views:	3306
Size:	3.2 KB
ID:	143771
grant2 is offline   Reply With Quote