Conversation
chrisj951
reviewed
Sep 15, 2026
| display -t "Battery has $CAPACITY% left. Charge or shutdown your device." \ | ||
| --add-image "/mnt/SDCARD/spruce/imgs/displayAcknowledge.png" 1.0 240 middle | ||
|
|
||
| /mnt/SDCARD/spruce/flip/bin/python3 - <<'PY' |
Contributor
There was a problem hiding this comment.
DEVICE_PYTHON3_PATH is what should be used
chrisj951
reviewed
Sep 15, 2026
| --add-image "/mnt/SDCARD/spruce/imgs/displayAcknowledge.png" 1.0 240 middle | ||
|
|
||
| /mnt/SDCARD/spruce/flip/bin/python3 - <<'PY' | ||
| import os |
Contributor
There was a problem hiding this comment.
This is also very device specific based on inputs being read / values checked. You should be able to combine display and confirm() or acknowledge() from helper functions to get what you want and not have it be device specific. Anything broken there should be fixed vs spinning off a flip specific low battery warning
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Here's my attempt to fix low battery warning making the screen black when the user accepts the message, at least on Flip devices. I tested this myself on my Flip with Spruce 4.3.4 running.
Also, I made pressing A to dismiss not perform an A press action on whatever screen behing the warning message.
Maybe the code can be improved, cleaned, or maybe I touched the wrong files. All I can say is that it works for me. Feel free to change the code or close the PR and make your own fix :)