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")