![]() |
#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. |
|
![]() |
![]() |
![]() |
#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. |
![]() |
![]() |
![]() |
#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 ...
![]() 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 ![]() 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 ![]() |
![]() |
![]() |
![]() |
#19 | |
I <3 my Kindle
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 528
Karma: 51332
Join Date: Nov 2010
Location: United States
Device: Kindle 3G + WiFi
|
Quote:
|
|
![]() |
![]() |
![]() |
#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. |
|
![]() |
![]() |
![]() |
#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:
|
|
![]() |
![]() |
![]() |
#22 |
Enthusiast
![]() Posts: 33
Karma: 10
Join Date: Feb 2011
Device: k3
|
Well, I see this topic is alive, that's cherish
![]() 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 ![]() |
![]() |
![]() |
![]() |
#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.
|
![]() |
![]() |
![]() |
#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. |
|
![]() |
![]() |
![]() |
#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
![]() |
![]() |
![]() |
![]() |
#26 | |
Addict
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 341
Karma: 4683770
Join Date: Dec 2010
Device: Kindle PW, iPadPro, Galaxy Note 5, 8 (tab) & Galaxy Tab S3
|
Quote:
|
|
![]() |
![]() |
![]() |
#27 |
Enthusiast
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 35
Karma: 1566
Join Date: Nov 2010
Device: kindle 3wifi
|
|
![]() |
![]() |
![]() |
#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. |
|
![]() |
![]() |
![]() |
#29 |
I <3 my Kindle
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 528
Karma: 51332
Join Date: Nov 2010
Location: United States
Device: Kindle 3G + WiFi
|
|
![]() |
![]() |
![]() |
#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 |
![]() |
![]() |
![]() |
|
![]() |
||||
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 |