From fc8395f26c8ed01f9947c8e32a9809939c1588c0 Mon Sep 17 00:00:00 2001 From: Clemens Kaposi Date: Fri, 1 Aug 2025 18:39:30 +0200 Subject: [PATCH] Update screen width for the reMarkable Paper Pro Refs #134 --- internal/remarkable/const_arm64.go | 2 +- tools/raw_client/client.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/remarkable/const_arm64.go b/internal/remarkable/const_arm64.go index dca15cb..6b3071d 100644 --- a/internal/remarkable/const_arm64.go +++ b/internal/remarkable/const_arm64.go @@ -6,7 +6,7 @@ const ( Model = RemarkablePaperPro // ScreenWidth of the remarkable paper pro - ScreenWidth = 1624 + ScreenWidth = 1632 // ScreenHeight of the remarkable paper pro ScreenHeight = 2154 diff --git a/tools/raw_client/client.go b/tools/raw_client/client.go index 7df5b6f..eefeb5b 100644 --- a/tools/raw_client/client.go +++ b/tools/raw_client/client.go @@ -65,7 +65,7 @@ func saveImage(img *image.RGBA, output string) error { func main() { ip := flag.String("ip", "127.0.0.1", "Server IP address") port := flag.String("port", "2001", "Server port") - width := flag.Int("width", 1624, "Image width") + width := flag.Int("width", 1632, "Image width") height := flag.Int("height", 2154, "Image height") output := flag.String("output", "screenshot.png", "Output image file") username := flag.String("username", "admin", "Basic auth username")