r/pocketbook

Buying pocketbook to read pdf file

So im planning to buy pocketbook basic lux 4 just to read my pdf novels, its mostly just text, not scanned, and no tabels, im not interested with bigger ereader, and i have kindle ppw 4, but it sucks for pdf and converting pdf is a hit and miss, plus i have too many files. I tried pdf reflow on the pocketbook reader app but its not that good and wondering if it would be much better on the device.

Im interested with basic lux 4 because it has bigger buttons and its on the bottom but was wondering if the verse version would be better since i dont see much people talking about the basic lux 4

It would be my first pocketbook so i really dont want to buy the wrong device, if you have the basic lux 4 can you please review the longevity and your experience using it? Thankyou so much

reddit.com
u/sociopathENTJ — 11 hours ago
▲ 11 r/pocketbook+1 crossposts

New to Pocketbook

Hi everyone,

I just got my first Pocketbook eReader, the Pocketbook ERA Lite, and I have few question.

I've already confirmed that both Dropbox and Send to Pocketbook are working properly.

I thought the Pocketbook Cloud would work the same way Dropbox does.

I have the app working with a bunch of sideloaded DRM-free ePubs, but they are not syncing with the eReader.

What am I doing wrong?

Is there also a way to show the book cover while the eReader is off or on sleep?

reddit.com
u/Curious-Yam-1874 — 1 day ago
▲ 3 r/pocketbook+1 crossposts

Libby library login

I'm curious if anyone else has to re-sign into their library every time they use the device (daily). I have this issue on 3 different pocketbook devices. Once the device has been restarted the card is still visible but tells me I need to log in again, very tedious. I have called my library and they say everything is ok on their end, no renewal needed or late fees.

reddit.com
u/RPGs143 — 1 day ago

PocketBook Era Lite: the e-reader that wants to bring premium features to the masses (and win over musicians)

This is the most original aspect of the Pocketbook Era Lite. PocketBook has partnered with Marschpat, an Austrian startup founded in 2019 by Patrick Rupprecht (himself a conductor and musician) that offers a complete digital sheet music management solution.

The concept is simple: thanks to the Marschpat app preinstalled on PocketBook e-readers, musicians can access a catalog of sheet music from established publishers, organize their pieces into playlists, annotate directly on the screen, and sync everything between the web app and the e-reader.

world-of-ereader.com
u/nicoquartz — 1 day ago

Sharing my COLORED ICONS on my Pocketbook Verse Pro color

If you like it, feel free to download. I have attached the link for the zip file of the icons pack and view.json below. Hope you enjoy it as much as I do! Cheers

**Please note that the original icons/pictures are not mine. Some icons I found were created by username certciv on mobileread forum and some icons were from https://icons8.com. I just compiled them all.

REMINDER: Back up your original view.json file before editing. If you have changed your Koreader icon before then you know the drill. If not, then I highly suggest you do a little research first to avoid bricking your device.

https://limewire.com/d/PXJuX#K78cpbYLpD

UPDATE: Hi! Did you like the first set of icons? :) I noticed some icons looked kinda washed out. So decided to do another set and it looks better on the ereader screen! Here is the link for the zip file of the new set of HD icons. Enjoy!!
 
https://limewire.com/d/l8gsO#nTrLIW9ccS

u/Stranger_1239010 — 2 days ago

2x faster display hack

this should work on inkpad 3 pro and similar devices, jailbreak needed, would be nice if somebody can verify:

REAGL Mode for PocketBook — Activation Guide

REAGL is a ghost-compensated non-flashing EPD waveform mode built into the factory waveform file. It delivers 16-gray quality at 2.1× the speed of GC16 (270 vs 576 frames at room temperature), handling ghosting on every partial update so you no longer need periodic full-screen flashes.

What It Does

GC16 (stock):  erase → black → white → target  → 576 frames, visible flash
REAGL (mod):   ghost-compensate → target         → 270 frames, no flash

InkView (PocketBook's display server) only uses GC16 (mode 2). By telling the kernel "when InkView asks for mode 2, use mode 8's waveform data instead", all updates become REAGL. No files modified. No InkView patching. Survives until reboot.

Prerequisites

  • PocketBook device with Allwinner B288 SoC (InkPad 3, InkPad 3 Pro, InkPad 4, Touch HD 3, Color, Verse, Era)
  • Root SSH access via pbjb jailbreak (guide)
  • KOReader installed and booting directly

Activation (Runtime)

SSH into the device and run:

luajit -e '
ffi = require("ffi")
ffi.cdef[[int open(const char*,int); int close(int); int ioctl(int, unsigned long, ...);]]
require("ffi/mxcfb_pocketbook_h")
ffi.cdef[[struct mxcfb_waveform_modes { int mode_count; int modes[16]; };]]
wm = ffi.new("struct mxcfb_waveform_modes")
wm.mode_count = 11
for i = 0, 10 do wm.modes[i] = 8 end
wm.modes[14] = 8
fd = ffi.C.open("/dev/fb0", 2)
ffi.C.ioctl(fd, 0x4024462B, wm)
ffi.C.close(fd)
print("REAGL active")
'

Takes effect immediately. KOReader and native PocketBook UI both benefit.

In KOReader — Disable Full Refresh

Gear menu → Screen → E-ink settings → Full refresh rate → Never (or 99).

With REAGL ghost-compensating each partial, periodic flashes are unnecessary.

Making Permanent (Survives Reboot)

Add the luajit one-liner to /mnt/secure/etc/init.d/03-koreader.sh before the bind-mounts. Replace /path/to/koreader with your KOReader build path:

#!/bin/sh
# Activate REAGL mode remap
/path/to/koreader/luajit -e '
ffi = require("ffi")
ffi.cdef[[int open(const char*,int); int close(int); int ioctl(int, unsigned long, ...);]]
require("ffi/mxcfb_pocketbook_h")
ffi.cdef[[struct mxcfb_waveform_modes { int mode_count; int modes[16]; };]]
wm = ffi.new("struct mxcfb_waveform_modes")
wm.mode_count = 11
for i = 0, 10 do wm.modes[i] = 8 end
wm.modes[14] = 8
fd = ffi.C.open("/dev/fb0", 2)
ffi.C.ioctl(fd, 0x4024462B, wm)
ffi.C.close(fd)
'

# Bind-mount KOReader over bookshelf
umount /ebrmain/cramfs/bin/bookshelf.app 2>/dev/null
mount --bind /mnt/secure/bin/bookshelf_koreader /ebrmain/cramfs/bin/bookshelf.app

Verification

# Check waveform modes loaded (mode 8 should appear)
cat /sys/devices/platform/sw-epdc.0/waveform_info | grep Waveforms

# Send a test mode 2 update and check dmesg
luajit -e '
ffi = require("ffi")
ffi.cdef[[int open(const char*,int);int close(int);int ioctl(int,unsigned long,...);]]
require("ffi/mxcfb_pocketbook_h")
u = ffi.new("struct mxcfb_update_data")
u.update_region.top=500;u.update_region.left=500
u.update_region.width=200;u.update_region.height=200
u.waveform_mode=2;u.update_mode=0;u.temp=0x1000
fd = ffi.C.open("/dev/fb0",2)
ffi.C.ioctl(fd, ffi.C.MXCFB_SEND_UPDATE, u)
ffi.C.close(fd)
'
dmesg | grep "wf=2" | tail -1
# Shows wf=2 but uses REAGL internally — remap is transparent

Recovery

Reboot. The remap is RAM-only. Or hot-load the original WBF:

cat /boot/default.wbf > /sys/devices/platform/sw-epdc.0/waveform_binary

Speed Comparison (24°C)

Mode Frames Relative
GC16 (mode 2) 576 1.0×
GS16 (mode 14) 435 1.3×
GL16 (mode 5) 435 1.3×
REAGL (mode 8) 270 2.1×
DU (mode 1, B/W) 247 2.3×
reddit.com
u/CryptographerOdd299 — 2 days ago

Era touch screen don’t work

Hi, I have a problem with my pocketbook era the touch controls stopped working by itself I restarted device and now I can’t do anything even plug-in into pc doesn’t work the device is not showing so I can’t even update it maybe you know what can I do with it.

u/Melonguyyy — 3 days ago

Disable pinch to zoom on Era

Hi there, is there any way to disable pinch to zoom on Era? I do it by accident on daily basis and it usually completely destroys my formatting and I get lost where I was reading. Could not find anything online, in the manual or in settings of the device itself. Thanks for any help.

reddit.com
u/RetardedGecko3416 — 3 days ago
▲ 15 r/pocketbook+1 crossposts

New Pocketbook Era Lite

Hey hey!

Is there anybody who bought the Era Lite already and could give a review and maybe show some pictures about so far? I might buy the Pocketbook Era Lite but as far as I know there are no stores in the Netherlands selling Pocketbook, no show model either. So I will have to buy from the German website directly. I'm mostly curious about how crisp the screen is and how the software is working so far. Yes I know there is information on their website, I just would like to hear from someone even while everybody's experience is different.

Thankss

reddit.com
u/Dutchie_609 — 5 days ago

CHANGING MY ZZZ SLEEP SCREEN TO A FULL-SIZED SCREENSAVER!!!

Changing your Pocketbook Zzz Sleep screen to a full-sized picture/screensaver is not as hard as you think it is!! It’s actually easy.

I can’t add a video to this post. So i created another post for it. Here https://www.reddit.com/r/pocketbook/s/FnfRVCAPA2

I know I’m not the only one who isn’t a fan of the little guy that shows up whenever your screen goes to sleep. Lol. If you own a Pocketbook you know that you can change the Power Off wallpaper and Boot wallpaper in Settings. But there’s no option to change the Sleep Screen logo right? So here it is guys!

EASY 4-STEP TUTORIAL ON HOW TO CHANGE YOUR POCKETBOOK SLEEP SCREEN LOGO TO A FULL-SIZED SCREENSAVER

1ST STEP: PREPARE/RESIZE YOUR CHOSEN WALLPAPER
>Download any wallpaper you like. (I always download mine from Pinterest)
Make sure the dimensions are exactly like the dimensions that fit your device. (In my case I use Pocketbook Verse Pro Color so it’s gotta be 1072 x 1448 )

If it’s not, don’t worry! There’s a free online tool where you can resize your images.
Go to https://www.ebookscreensaver.com

> Click “CUSTOM DEVICE”
> Type the dimensions 1072 x 1448
> Drag/upload your wallpaper
> Click Download Image

2ND STEP : DOWNLOAD GIMP Image editor.

Note : You can use any image editor as long as it can convert the image to a 24 bit file.
I used GIMP. You can download it from here https://www.gimp.org

3RD STEP : CONVERT YOUR WALLPAPER TO 24 bit
> Make sure you have already installed GIMP. Drag the wallpaper file there
> Click “FILE” > “EXPORT AS”
> Rename it as: taskmgr_lock_background.bmp
> Click EXPORT.
> A pop up should appear asking you to choose RGB format.
Choose 24 bit (R8 G8 B8)
Then click EXPORT

4TH STEP : PLUG IN YOUR POCKETBOOK DEVICE TO YOUR PC
> Go to Sytem > resources > Line then paste the wallpaper file there.

Note : If no “resources” folder exists, just create one. That’s what I did with mine.

Enjoy your new Screensaver!!

***Shout out to u/Lefc1u. This tutorial was inspired by his original post https://www.reddit.com/r/pocketbook/comments/1qkutiw/custom_sleep_screenlogo_on_any_pocketbook/?share_id=-67gpA7gW_arKgXtGrRjG&utm_content=2&utm_medium=ios_app&utm_name=ioscss&utm_source=share&utm_term=1 Thanks man, you rock!

UPDATE: I just found a useful link to change the icons into colored icons!! 😍 check the comment section

u/Stranger_1239010 — 6 days ago
▲ 13 r/pocketbook+1 crossposts

Best Library E-Reader Sale Timings

As much as I love physical books, its just getting unmanageable when I am trying to pack light for work flights and short business trips. Being able to stow away a 7" or smaller E-Reader would be amazing. However, being new to the scene and going through the prices for everything from a Kobo to Boox and Pocketbook, can someone recommend any general good times to purchase these items?

My main goal is to read library books, so Libby or Overdrive needs to JUST work. The last thing I want is to have to go through multiple prompts just to figure out downloads and stuff.

I want to stay away from Amazon as much as possible, due to recent device locking stuff.

Obviously prime sales bring Kindle prices down, but are there other times of the year that some of the other large E-Reader companies do "sales"? I dont need color by any means, but i need it to be ONE-Handeable.

My top 2 are Pocketbook Era, Boox Go 7, but the sticker price of $250 is kind of eye-watering. I like the page turn option on the side, but if Kobo made a Libra BW, i think i would go with that.

Sorry for rambling.

reddit.com
u/riteshsingh93 — 7 days ago
▲ 7 r/pocketbook+1 crossposts

Kobo Sage and Pocketbook Inkpad Color 3 for sale [Free UK Shipping]

Hello everyone!

This is my first post on here although I'm a longtime lurker on this sub.
I've bought a few e-readers in my search for 'the perfect one' and now I'm selling the rest.

I have a lightly used Kobo Sage (with a 2nd gen stylus) and PB Inkpad Color 3 with their original boxes.

It's my first time selling on eBay so I wanted to keep the descriptions short so I don't seem desperate, hence why they say I simply "missed the return window", which is technically true.

I put down international shipping as £10 as I couldn't leave it blank, but it will be calculated on a case by case basis.

If I see similar questions are being repeated on here or in my DMs I'll fill the relevant FAQ sections. Again, this is my first time selling, so please be patient with me.

Thanks everyone 😊

u/MyTummyProbablyHurts — 6 days ago

Bluetooth remote

Hey, I have a Pocketbook Verse Pro and am looking for a bluetooth remote to use as a page turner. I would prefer one that connects directly to the device via bluetooth - not one that comes in two parts where one has to be clipped onto the Pocketbook itself. I have heard that some remotes might work better than others and was wondering what remotes some of you use? Which work most seamlessly with Pocketbook?

reddit.com
u/goblinmausen — 10 days ago

tried consolidating my separate MP3 player into my Touch HD 3's music player app

My god the music is so crunchy. Was using the same skull candy earbuds I use in my physical player and there were miles of distance in quality even with the cheap random player I bought off ebay. I've listened to audiobooks on my PB and those were okay, but anything with a bass or a drum beat isn't good on it. Anyway thought I would share in case anyone else wanted to use their Touch HD 3 for a music player. Would have been nice to carry one less thing, but maybe someday I'll find an affordable epaper device I can use as an ereader, mp3 player, and a writerdeck.

(interestingly, my MP3 player CAN read books, but it's on a tiny LED screen which defeats one of the purposes of why I wanted an ereader)

reddit.com
u/justhere4bookbinding — 10 days ago

My modded and customised PocketBook Touch HD3

This is my PocketBook Touch HD3 I have since 2019, have managed to install Koreader on it with plugins and today I managed to make a custom lockscreen image thx to this guide reddit.com/r/pocketbook/comments/1qkutiw/custom_sleep_screenlogo_on_any_pocketbook/ - these mods made me love it again pretty much I was thinking about upgrading but not anymore :) - If anyone has suggestions what should I do to it next feel free to comment.

u/Jcob210 — 13 days ago