Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added brightness changes #92

Closed
wants to merge 2 commits into from
Closed

Added brightness changes #92

wants to merge 2 commits into from

Conversation

Jegp
Copy link
Contributor

@Jegp Jegp commented Jun 1, 2023

In recent rm2fb versions, reStream output is too dark to be useful. This PR adds a filter suggested by @D1mme and fixes #91

@psigen
Copy link

psigen commented Jun 26, 2023

This isn't my post, but someone made [the following comment in Reddit]:(https://www.reddit.com/r/RemarkableTablet/comments/143gqit/comment/jnaibq3/)

The proper, retro-compatible way to fix it would be something like this (to whoever could be listening and able):

# RM2 only uses the 4 least significant bits (16 shades of gray)
raw_fb_8bit = bytearray()
for i, b in enumerate(raw_fb_4bit):
   raw_fb_8bit.append((b & 0b00001111) * 17)

@rien
Copy link
Owner

rien commented Jan 9, 2024

This change is added by #100

@rien rien closed this Jan 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Streamed video is too dark, recordings are corrupted
3 participants