Don't recycle your ePaper: repurpose that old eReader
Python on an eReader
The first Python test was to create a full-screen date/time app (Listing 1). This test app showed that fast screen updates were not possible and that it's important to use large buttons for any type of screen access (even to close the app).
Listing 1
Python Test App
01 # Simple Tkinter Clock 02 # 03 from Tkinter import * 04 import time 05 06 def update_clock(): 07 now = time.strftime("%H:%M") 08 lbl_time.configure(text=now) 09 today = time.strftime("%A %B %d") 10 lbl_date.configure(text=today) 11 window.update() 12 window.after(5000, update_clock) 13 14 window=Tk() 15 16 lbl_time=Label(window, text="", font=("Helvetica", 128)) 17 lbl_time.pack() 18 lbl_date=Label(window, text="", font=("Helvetica", 64)) 19 lbl_date.pack() 20 btn=Button(window, text="Close",font=("Helvetica", 32),bg='grey', command=window.destroy) 21 btn.pack() 22 23 window.title('Kitchen Kiosk') 24 window.attributes("-fullscreen", True) 25 window.after(1000, update_clock) 26 window.mainloop()
Once the basics were worked out, we created a Python app that showed weather data from a Home Assistant node (Figure 7). It took a bit of time to play with font sizing and gray tones before we had something that we liked.
Kiosk-Mode Browser
Another approach for viewing data is to use the eReader as a web client and use another node as the data collector and web server (in this case, a Raspberry Pi). To maximize the eReader screen, the web browser can be used in full-screen or kiosk mode.
To run Firefox in kiosk mode, enter:
firefox --kiosk http://mysite/thepage.htm &
For this project, we used Iceweasel, which is a lighter weight browser than Firefox; however, it does not support kiosk mode. A workaround for such browsers is to use xdotool
to simulate mouse and keyboard actions. To install the xdotool
utility on Debian and Ubuntu, enter:
$ sudo apt-get install xdotool
The following script opens Iceweasel and then sends the F11 key to open the browser page in full-screen mode:
#!/bin/bash # open a web browser to our page and go full screen # iceweasel http://our_webserver:80/ & sleep 15 ; # wait for things to come up xdotool key F11
The Kobo screen is 800x600, so we had to play with the presentation and font sizes. Figure 8 shows an example web page with local weather and stock market information.
Final Comments
It's always nice to reuse or repurpose older equipment. We found that for projects that don't need a fast screen update, an eReader can be an excellent viewer for data fed from a Raspberry Pi or Arduino.
Battery life can be increased by toggling the WiFi on and off when you need to refresh the data.
Infos
- Home Assistant: https://www.home-assistant.io
- Debian images for Kobo Mini: https://www.dropbox.com/sh/snsdg1c5cg21kws/AACCAhhLxg5G5OmSgngw3DxYa
- "How to Jailbreak Your Kindle" by Thorin Klosowski, Lifehacker, July 21, 2016, https://www.lifehacker.com.au/2016/07/how-to-jailbreak-your-kindle
- Awesome window manager: https://awesomewm.org/
« Previous 1 2
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Direct Download
Read full article as PDF:
Price $2.95
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Find SysAdmin Jobs
News
-
MNT Seeks Financial Backing for New Seven-Inch Linux Laptop
MNT Pocket Reform is a tiny laptop that is modular, upgradable, recyclable, reusable, and ships with Debian Linux.
-
Ubuntu Flatpak Remix Adds Flatpak Support Preinstalled
If you're looking for a version of Ubuntu that includes Flatpak support out of the box, there's one clear option.
-
Gnome 44 Release Candidate Now Available
The Gnome 44 release candidate has officially arrived and adds a few changes into the mix.
-
Flathub Vying to Become the Standard Linux App Store
If the Flathub team has any say in the matter, their product will become the default tool for installing Linux apps in 2023.
-
Debian 12 to Ship with KDE Plasma 5.27
The Debian development team has shifted to the latest version of KDE for their testing branch.
-
Planet Computers Launches ARM-based Linux Desktop PCs
The firm that originally released a line of mobile keyboards has taken a different direction and has developed a new line of out-of-the-box mini Linux desktop computers.
-
Ubuntu No Longer Shipping with Flatpak
In a move that probably won’t come as a shock to many, Ubuntu and all of its official spins will no longer ship with Flatpak installed.
-
openSUSE Leap 15.5 Beta Now Available
The final version of the Leap 15 series of openSUSE is available for beta testing and offers only new software versions.
-
Linux Kernel 6.2 Released with New Hardware Support
Find out what's new in the most recent release from Linus Torvalds and the Linux kernel team.
-
Kubuntu Focus Team Releases New Mini Desktop
The team behind Kubuntu Focus has released a new NX GEN 2 mini desktop PC powered by Linux.