Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion internal/remarkable/const_arm64.go
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion tools/raw_client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down