|  06-17-2011, 04:31 PM | #16 | |
| Junior Member            Posts: 9 Karma: 1000010 Join Date: Jun 2011 Location: Poland Device: Kindle 3 | Quote: 
 Any actual solution how to use kindle as pc monitor ? I would like to use my Kindle 3 as normal screen for computer with Win7. Because Lcd strain my eyes and causes headache. I tried to use PixelQi screen and mounted it into my netbook but is too sharp and also not easy for my eyes. I can work only with eink without pain. I know that it is impossible to use Remote Desktop from Win xp for that purpose. Any other ideas ? I regret that I can not buy eink monitor basiclly with vga port. I can not programming and do not know Linux very good. So, could you please give me prepared solution step by step how to use Kindle 3 as Pc monitor with Windows ? Thank you guys for helping. Greetings from Poland. | |
|   |   | 
|  06-17-2011, 09:59 PM | #17 | 
| Member  Posts: 11 Karma: 10 Join Date: May 2011 Device: Kindle 3 | 
			
			It's not quite what you're after, but it's worth mentioning that the fullscreen native terminal, coupled to the ssh client installed with the usb networking hack, makes for a perfectly servicable wireless terminal. No graphics, I don't believe X forwarding would work as I don't think the Kindle has X running.  I've been controlling an otherwise headless server this way for a week or so, no problems with the refresh rate. I just wish it had a complete keyboard. | 
|   |   | 
|  07-08-2011, 02:01 PM | #18 | 
| Enthusiast  Posts: 33 Karma: 10 Join Date: Feb 2011 Device: k3 | 
			
			I am glad to hear there are others wishing e-ink monitor. I have coding skills, proffesionally, but just have little time ...   I just went on vacation, this is why I have lots of time to search through my favourite topic on the web. Yeah, I regret there is no biggers size e-ink on the market, preferably as an e-ink pc-display. I have only k3 but just thinking of developing that king of app to use it as a wifi display  However it is bad that the bigger kindle does not have wifi, I mean, even if I write that app it will have to be upgraded to DX ready communication to be really usefull.... I really regret there is no bigger e-ink displays on the market, but stay tuned in the next two weeks of my holidays what the evenings could bring to the future of a manking   | 
|   |   | 
|  07-08-2011, 10:31 PM | #19 | |
| I <3 my Kindle            Posts: 528 Karma: 51332 Join Date: Nov 2010 Location: United States Device: Kindle 3G + WiFi | Quote: 
 | |
|   |   | 
|  07-09-2011, 02:25 AM | #20 | |
| Junior Member            Posts: 9 Karma: 1000010 Join Date: Jun 2011 Location: Poland Device: Kindle 3 | Quote: 
 I need to use Kindle as PC display to avoid eyes strain and headache. Thank you. | |
|   |   | 
|  07-11-2011, 04:59 AM | #21 | |
| Junior Member            Posts: 6 Karma: 2102 Join Date: Jun 2011 Device: Kindle 3 | 
			
			Two solutions: 1. cross-compile a newer version webkit browser which can support HTML5 VNC client 2. develop a vnc client for kindle. I tried solution 1 but failed. Now I am trying solution 2. Quote: 
 | |
|   |   | 
|  07-17-2011, 07:14 AM | #22 | 
| Enthusiast  Posts: 33 Karma: 10 Join Date: Feb 2011 Device: k3 | 
			
			Well, I see this topic is alive, that's cherish   I mean, it's as usually, I did some hacking/coding but after a while something other attracted my attention... This project is fun indeed. To make it usefull I think it should work through WiFi or bluetooth. The latter because of the SideShow API SDK mobile component this way lots of applications utilizing the gadget display could work right away   | 
|   |   | 
|  08-20-2011, 11:57 PM | #23 | 
| Enthusiast            Posts: 35 Karma: 1566 Join Date: Nov 2010 Device: kindle 3wifi | 
			
			I wrote a sortof program that makes kindle as a second PC screen. The way it works is that it captures the screen on my computer, and then sends to kindle, and kindle then shows the image. It's like a media streaming system. The response time is terrible right now, it has a delay of about 0.5~1 second. I still don't know where the bottleneck is. The image I send over is zipped, the size for the full 800*600 screen is about 20~40k, and I only send over the difference between two consecutive screen shotshots, which is much smaller. Maybe the big issue here is finding out the updating area. Currently I don't have a good algorithm to get that out, so most of time, I guess, it's updating the whole screen.
		 | 
|   |   | 
|  08-22-2011, 12:53 AM | #24 | |
| I <3 my Kindle            Posts: 528 Karma: 51332 Join Date: Nov 2010 Location: United States Device: Kindle 3G + WiFi | Quote: 
 I've experimented with screenshots myself, but the delay is about 6 seconds, even when connected over USB. I'm very interested in how your difference algorithm is implemented. | |
|   |   | 
|  08-22-2011, 08:51 AM | #25 | 
| Groupie            Posts: 157 Karma: 1777 Join Date: Sep 2010 Location: Minsk, Belarus Device: Kindle 4 | 
			
			kranu, Substract each pixel from current screenshoot and previous (better from keyframe), then use RLE encoding. If most of screen not changed than resulting image will consist 0,0,0,0,....etc    | 
|   |   | 
|  08-22-2011, 08:58 AM | #26 | |
| Addict            Posts: 341 Karma: 4683770 Join Date: Dec 2010 Device: Kindle PW, iPadPro, Galaxy Note 5, 8 (tab) & Galaxy Tab S3 | Quote: 
 | |
|   |   | 
|  08-22-2011, 01:40 PM | #27 | 
| Enthusiast            Posts: 35 Karma: 1566 Join Date: Nov 2010 Device: kindle 3wifi | |
|   |   | 
|  08-22-2011, 01:44 PM | #28 | |
| Enthusiast            Posts: 35 Karma: 1566 Join Date: Nov 2010 Device: kindle 3wifi | Quote: 
 on host, 1) convert pages to kindle framebuffer format, which would be 800*600/2 bytes long, 2) xor two consecutive pages as diff, 3) zip the diff, send over wifi. On kindle side 1) unzip diff 2) xor the current framebuffer with the diff 3) find out the dirty area, this is where I don't have good algorithm 4) update the screen (only the dirty areas or the whole screen) Last edited by kindle3zeng; 08-22-2011 at 01:47 PM. | |
|   |   | 
|  08-23-2011, 01:44 AM | #29 | 
| I <3 my Kindle            Posts: 528 Karma: 51332 Join Date: Nov 2010 Location: United States Device: Kindle 3G + WiFi | |
|   |   | 
|  08-23-2011, 02:07 AM | #30 | 
| I <3 my Kindle            Posts: 528 Karma: 51332 Join Date: Nov 2010 Location: United States Device: Kindle 3G + WiFi | 
			
			EDIT: I made a thread for this. https://www.mobileread.com/forums/sho...41#post1726641
		 Last edited by kranu; 09-01-2011 at 05:46 PM. Reason: new thread | 
|   |   | 
|  | 
| 
 | 
|  Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post | 
| Kindle -- additional killer app idea | ginolee | Amazon Kindle | 4 | 09-30-2010 10:45 PM | 
| An additional 'Karma' Question. . . | GlenBarrington | General Discussions | 23 | 05-27-2010 09:43 AM | 
| additional reading.. | scottjl | Apple Devices | 1 | 04-28-2010 06:24 PM | 
| ADDITIONAL CSS | LARdT | Calibre | 1 | 02-04-2010 08:02 PM | 
| Additional Columns | dvs0826 | Calibre | 3 | 08-22-2009 06:43 PM |