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

Add E-Ink options to DisplayConfig #474

Closed
wants to merge 1 commit into from
Closed
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
38 changes: 38 additions & 0 deletions meshtastic/config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -645,6 +645,44 @@ message Config {
* Should we wake the screen up on accelerometer detected motion or tap
*/
bool wake_on_tap_or_motion = 10;

enum EInkScreensaver {
/*
* Description: Label overtop existing screen image
*/
OVERLAY = 0;

/*
* Description: Meshtastic logo
*/
LOGO = 1;

/*
* Description: Clear screen
*/
BLANK = 2;

/*
* Description: No change from existing screen image
*/
NONE = 3;

/*
* Description: A variant-specific custom screensaver, if one exists
*/
CUSTOM = 4;
}

/*
* Description: Which behavior E-Ink display uses when updates are paused
*/
EInkScreensaver eink_screensaver = 11;

/*
* Descrption: Will perform slower, more robust refreshes, improving outdoor performance for some displays
* Technical Details: Indicates a preference for full-refresh
*/
bool eink_direct_sun = 12;
}

/*
Expand Down
Loading