Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > Kobo Reader > Kobo Developer's Corner

Notices

Reply
 
Thread Tools Search this Thread
Old 08-23-2020, 10:13 PM   #1
NiMa
Evangelist
NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.
 
NiMa's Avatar
 
Posts: 469
Karma: 2390534
Join Date: Jun 2020
Location: Somewhere in the Universe
Device: Kobo Libra, Glo HD, Touch C/B, Mini, Glo, Aura SE, Clara HD, KT
Lightbulb New "VNC" viewer for recent Kobo devices and firmware

Hi all,
This evening I just had an idea; I thought I could use NiLuJe's excellent FBInk library to create an image-based network display viewer. I finished it in 3 hours and you'll find it attached in this post.
It is still in very early development stage, and it is *horribly* slow. Like you have to wait 1 second for the screen to update. Maybe if you use it with USBNet it could be a little better. I join as well some photo and video to prove it working.

Here's a video: https://www.youtube.com/watch?v=JBLq...ature=youtu.be

Grosso modo, that's how it runs:

1. It starts by starting (via SSH) a 'watch' process that tells FBInk to refresh the screen every 30 seconds.
2. After that, it starts a neverending loop that uses gnome-screenshot on the host system to take screenshots of the screen live, every +/- 1 second. I tried with scrot and it worked very well, the only fatal flaw was that it wasn't possible to see the mouse cursor in the capture. The screenshot named continuous.png is put on /tmp and is constantly replaced to deliver an up-to-date image.
3. After that, I use sshpass to login in the Kobo without password prompt, and transfer via scp the screenshot that is in /tmp to the /tmp folder of the Kobo so it doesn't wear the SD card on the write cycles.
4. Finally, to show the image on the screen, I use sshpass again with SSH to tell fbink to print an image on the screen, full screen. I recommend using your Kobo in landscape mode, and putting your host screen in 1024x768, as the text will display better in that resolution on the host and orientation on the Kobo.
5. The loop starts over and repeats the process until you decide to stop it via SIGINT (CTRL+C). *NOTE* I didn't find how to stop the 'watch' process when you press CTRL+C. I tried different 'trap' ideas, but none of them worked. Any help or ideas are appreciated, I'm not very experienced in bash programming
For now you'll have to stop 'watch' manually by SSH to the Kobo after ending the image sending from the host and by typing 'killall watch', then 'exit'.

REQUIREMENTS:
1. SSH and FBInk from NiLuJe https://www.mobileread.com/forums/sh...d.php?t=254214 on your Kobo
2. gnome-screenshot and sshpass on your host machine
3. Your host machine *must* be a Linux system, otherwise you probably will experience issues.
4. The Landscape mode hack for supported AND non-supported Kobos (will enable Landscape system-wide), in Kobo eReader.conf:
[DeveloperSettings]
ForceAllowLandscape=true

5. If you've never SSH-ed your Kobo before, SSH on it before you start the script, otherwise you may receive an error like 'Host key verification failed'. In the first SSH you'll do will likely be given a message like this:
The authenticity of host '192.168.0.181 (192.168.0.181)' can't be established.
ECDSA key fingerprint is SHA256:65X9gdR9f71y6Fs9qSNZFCez8mJ8RAQ4Lhq+1c46Ttw .
Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
Warning: Permanently added '192.168.0.181' (ECDSA) to the list of known hosts.
Just type 'yes' and you're good to go!
6. Python 3 if you use the HTTP version, which is faster but less secure.

******NOTES:
I suggest to open the web browser on your Kobo before launching the script, as you will not see the left corner hour display changing minute after minute and therefore hiding a part of the host screen on your Kobo's screen, and as it will keep the WiFi on as long as you keep it open.
This viewer doesn't support touch at all. (Maybe in the far future?)
GitHub repository: https://github.com/tux-linux/Kobo-ne...display-viewer

So... enjoy it! And you can write your feedback here!
Attached Thumbnails
Click image for larger version

Name:	_DSC8484.jpeg
Views:	966
Size:	361.3 KB
ID:	181543  
Attached Files
File Type: zip vnc.zip (426 Bytes, 335 views)
File Type: zip vnc-http.zip (832 Bytes, 310 views)

Last edited by NiMa; 08-26-2020 at 11:45 AM. Reason: Added HTTP version, faster than the SCP version.
NiMa is offline   Reply With Quote
Old 08-23-2020, 11:24 PM   #2
DevonHess
Can't actually read
DevonHess ought to be getting tired of karma fortunes by now.DevonHess ought to be getting tired of karma fortunes by now.DevonHess ought to be getting tired of karma fortunes by now.DevonHess ought to be getting tired of karma fortunes by now.DevonHess ought to be getting tired of karma fortunes by now.DevonHess ought to be getting tired of karma fortunes by now.DevonHess ought to be getting tired of karma fortunes by now.DevonHess ought to be getting tired of karma fortunes by now.DevonHess ought to be getting tired of karma fortunes by now.DevonHess ought to be getting tired of karma fortunes by now.DevonHess ought to be getting tired of karma fortunes by now.
 
DevonHess's Avatar
 
Posts: 81
Karma: 335656
Join Date: Sep 2019
Device: Kobo Forma, Kobo Sage, Kindle PW2
Pretty cool experiment. However, as you're probably aware, VNC refers to a specific standard. Kind of misleading to call this VNC.

There is actually a VNC client that supports Kobo.

Keep up the good work, though.
DevonHess is offline   Reply With Quote
Advert
Old 08-23-2020, 11:52 PM   #3
NiMa
Evangelist
NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.
 
NiMa's Avatar
 
Posts: 469
Karma: 2390534
Join Date: Jun 2020
Location: Somewhere in the Universe
Device: Kobo Libra, Glo HD, Touch C/B, Mini, Glo, Aura SE, Clara HD, KT
Quote:
Originally Posted by DevonHess View Post
Pretty cool experiment. However, as you're probably aware, VNC refers to a specific standard. Kind of misleading to call this VNC.

There is actually a VNC client that supports Kobo.

Keep up the good work, though.
Thanks for your input! Yes, I knew that VNC was a specific standard. That is why I put the word in quote marks in the title. However, if a moderator wants to change it to a more accurate title (like 'Use your Kobo as an external monitor'), I would be entirely okay with that.
Also, I already knew that there was an existing VNC client for Kobos, but it was outdated (2013) and (I tried to run it) wouldn't work with recent hardware and firmware.
Note though that I may implement touch in the viewer in the future.
NiMa is offline   Reply With Quote
Old 08-24-2020, 06:36 AM   #4
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 75,085
Karma: 131686272
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by DevonHess View Post
Pretty cool experiment. However, as you're probably aware, VNC refers to a specific standard. Kind of misleading to call this VNC.

There is actually a VNC client that supports Kobo.

Keep up the good work, though.
But does this VNC still work on the current firmware give how old the code is?
JSWolf is offline   Reply With Quote
Old 08-24-2020, 06:50 AM   #5
NiMa
Evangelist
NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.
 
NiMa's Avatar
 
Posts: 469
Karma: 2390534
Join Date: Jun 2020
Location: Somewhere in the Universe
Device: Kobo Libra, Glo HD, Touch C/B, Mini, Glo, Aura SE, Clara HD, KT
No, not at all, just look at its thread when users (including me) describe encountering several errors. While it worked perfectly for old devices/firmware, it is incompatible with recent hardware without serious tweaking. (From what I experienced, though)

Last edited by NiMa; 08-24-2020 at 10:40 AM.
NiMa is offline   Reply With Quote
Advert
Old 08-25-2020, 08:43 AM   #6
NiMa
Evangelist
NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.
 
NiMa's Avatar
 
Posts: 469
Karma: 2390534
Join Date: Jun 2020
Location: Somewhere in the Universe
Device: Kobo Libra, Glo HD, Touch C/B, Mini, Glo, Aura SE, Clara HD, KT
Any feedback...? Ideas...? I'd like to improve my software listening to you.
Of course my main concern here is to improve speed. So, any feedback, ideas on how to improve it, are very welcome!

Thanks!

(I may put the code on GitHub (even if it's just an 8-line script) if someone wants to contribute)
NiMa is offline   Reply With Quote
Old 08-25-2020, 12:17 PM   #7
Elektron
Banned
Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.
 
Posts: 2,296
Karma: 5300240
Join Date: Jun 2020
Location: Edmonton, AB
Device: Kobo Aura H2O Edition 2 (mark 7), Kobo Mini
Quote:
Originally Posted by NiMa View Post
2. After that, it starts a neverending loop that uses gnome-screenshot on the host system to take screenshots of the screen live, every +/- 1 second.
Is it possible to make screenshots more frequent?
Elektron is offline   Reply With Quote
Old 08-25-2020, 01:01 PM   #8
NiMa
Evangelist
NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.
 
NiMa's Avatar
 
Posts: 469
Karma: 2390534
Join Date: Jun 2020
Location: Somewhere in the Universe
Device: Kobo Libra, Glo HD, Touch C/B, Mini, Glo, Aura SE, Clara HD, KT
Quote:
Originally Posted by Elektron View Post
Is it possible to make screenshots more frequent?
The screenshots are no longer in the limitation of one second; it takes a screenshot as fast as it could. The speed depends on the speed of the SCP transfer. You can look in the script, it's only 6 lines of Bash code, not very complicated :
Code:
#!/bin/sh
while :; do read -r -p 'IP: ' ip && break; done
while :; do read -r -p "Your Kobo device screen width resolution: " width && break; done
while :; do read -r -p "Your Kobo device screen height resolution: " height && break; done
    sshpass -p test ssh root@$ip 'watch -n 30 "fbink -H -k -f | tee -a output.txt" &>/dev/null &'
    while true; do gnome-screenshot -p --file=/tmp/continuous.png && sshpass -p test scp /tmp/continuous.png root@$ip:/tmp && sshpass -p test ssh root@$ip 'fbink -g file=/tmp/continuous.png,w='$width',h='$height''; done
What I could implement is an automated 'watch' process on the Kobo that displays the image via FBInk every x seconds, regardless if the images were updated or not.
I'm looking in that way right now. I may update the script by this evening.

For now, you can try it with USBNet, it improves the speed a little.
NiMa is offline   Reply With Quote
Old 08-25-2020, 02:40 PM   #9
NiMa
Evangelist
NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.
 
NiMa's Avatar
 
Posts: 469
Karma: 2390534
Join Date: Jun 2020
Location: Somewhere in the Universe
Device: Kobo Libra, Glo HD, Touch C/B, Mini, Glo, Aura SE, Clara HD, KT
@elektron : updated zip and Git repo to improve speed. Screenshots are still sent via SCP, but FBInk displays /tmp/continuous.png regardless if it's been updated or not every 0.5 seconds.
You can change the value if you want, I tried 0.1 but I think it's pretty much the same.

However, there's a noticeable difference of speed on USBNet -> old script vs USBNet -> updated script.
NiMa is offline   Reply With Quote
Old 08-26-2020, 11:42 AM   #10
NiMa
Evangelist
NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.
 
NiMa's Avatar
 
Posts: 469
Karma: 2390534
Join Date: Jun 2020
Location: Somewhere in the Universe
Device: Kobo Libra, Glo HD, Touch C/B, Mini, Glo, Aura SE, Clara HD, KT
Smile Released v0.1

Updated Zip files and Git repo. The script in vnc-http.zip now uses HTTP protocol to transfer screenshots. You'll have to have Python3 installed, which is likely to be included by default on your Linux system.
This release features a speed improvement compared to the version with SCP (vnc.zip).
NiMa is offline   Reply With Quote
Old 08-26-2020, 02:55 PM   #11
Elektron
Banned
Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.
 
Posts: 2,296
Karma: 5300240
Join Date: Jun 2020
Location: Edmonton, AB
Device: Kobo Aura H2O Edition 2 (mark 7), Kobo Mini
Any idea how to get it running on an Aura H2O2v2? (mk.7) Also does it have to be a Linux sytem or can I run it in a Linux sub-environment on my Windows laptop?
Elektron is offline   Reply With Quote
Old 08-26-2020, 03:01 PM   #12
NiMa
Evangelist
NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.
 
NiMa's Avatar
 
Posts: 469
Karma: 2390534
Join Date: Jun 2020
Location: Somewhere in the Universe
Device: Kobo Libra, Glo HD, Touch C/B, Mini, Glo, Aura SE, Clara HD, KT
Quote:
Originally Posted by Elektron View Post
Any idea how to get it running on an Aura H2O2v2? (mk.7) Also does it have to be a Linux sytem or can I run it in a Linux sub-environment on my Windows laptop?
The same for my Libra and Glo HD for the device part: Download NiLuJe's stuff (link in the first post), install it on your Kobo by copying the KoboRoot.tgz in the .kobo folder of the Kobo eReader partition, then ejecting it and it should install the software.
TL;DR : If FBInk already works on your device, don't reinstall it. If FBInk works on your device, then that will 99,99% sure work with your Aura H2Ov2.

I didn't test it with a sub-environment and don't know exactly how it works and how it manages the screen, but I think it may be better if you installed Ubuntu/Linux Mint on a virtual machine with VirtualBox https://www.virtualbox.org/ or if you boot the LiveCD of your USB key on your computer, without needing of installing it.
Contact me for more info if you need it, I'll be happy to help!
NiMa is offline   Reply With Quote
Old 08-26-2020, 05:45 PM   #13
Elektron
Banned
Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.
 
Posts: 2,296
Karma: 5300240
Join Date: Jun 2020
Location: Edmonton, AB
Device: Kobo Aura H2O Edition 2 (mark 7), Kobo Mini
Thanks!
Elektron is offline   Reply With Quote
Old 08-26-2020, 05:47 PM   #14
NiMa
Evangelist
NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.
 
NiMa's Avatar
 
Posts: 469
Karma: 2390534
Join Date: Jun 2020
Location: Somewhere in the Universe
Device: Kobo Libra, Glo HD, Touch C/B, Mini, Glo, Aura SE, Clara HD, KT
Quote:
Originally Posted by Elektron View Post
Thanks!
It works? Glad to have helped you out!
NiMa is offline   Reply With Quote
Old 03-04-2022, 02:42 PM   #15
benjaffe
Junior Member
benjaffe doesn't litterbenjaffe doesn't litter
 
Posts: 2
Karma: 102
Join Date: Jan 2022
Device: Kobo Libra H2O
Working on MacOS

I got it working on MacOS with a small tweak. Replace the `while true` line with:

```
while true; do screencapture -x -R0,0,840,632 /tmp/continuous.png && convert /tmp/continuous.png -rotate 270 -colors 255 -depth 8 +profile "*" -strip /tmp/continuous.png && sshpass -p test scp /tmp/continuous.png root@$ip:/tmp ; done
```

This captures a smaller area of the screen so things are bigger on the Kobo (I have a Libra H2O), and uses ImageMagick to rotate the png and compress it for faster transfer. The four numbers are x, y, width, and height.

To install ImageMagick using Brew, run `brew install imagemagick`. If you don't have Brew, follow the instructions on their website to install it.

If you Brew complains about architecture because you're on an Apple Silicon mac, there are a few options. The quick hack is `arch -x86_64 brew install imagemagick` to run it under emulation, but if you use Brew a lot, you may want to search around for whatever the best solution is in the future.
benjaffe is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
[Kobo Glo] Updated firmware→Calibre:"Kobo database version unsupported" 22217 Devices 10 06-25-2020 07:02 PM
Difference between "Sending books to devices" and "Sharing over the net" nano5 Devices 16 01-30-2020 04:58 AM
KT "Ghost covers/files" again at 670 books, "stale" image entries in firmware VirgoGirl Kobo Reader 4 04-06-2012 02:10 PM
Any Hope for a "Mother's Day", new Kobo firmware release? celsius Kobo Reader 0 05-07-2010 01:53 AM
New "E-Book Devices" "Bookeen Opus" forum desired ericch Bookeen 3 08-06-2009 06:31 PM


All times are GMT -4. The time now is 02:35 AM.


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