-
Notifications
You must be signed in to change notification settings - Fork 90
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 Waveshare RP2040 LCD 1.28 to README.md #81
Open
GordonCox
wants to merge
27
commits into
rp-rs:main
Choose a base branch
from
GordonCox:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains 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
Added board wavershare-rp2040-lcs-1-28, added a driver for this board.
Set the backlight low (off) then clear the screen to black, initialize the screen, set the backlight high (on). This prevents the unset memory as showing as static on the screen.
Use the V2::outputPin for the backlight.
Added two buffers so that I can swap between them and prevent screen flickering when updating the display.
Added comments and formmating.
Added arrow and window region updates.
Added Precomputation details on the arrow.
Added frame rate delay adjustment
Fixed a defect in the angle_index
Used one buffer for the background, one buffer for the LCD, copy data from background to LCD buffer before displaying the region on screen.
Clean up and simplify the code.
Background Image for the LCD Clock Display.
Removed the display driver and cleaned up the examples so they always use the frame buffer.
Simplified the example made it more like 0.96
Fixed a typo.
Removed unused dependency
Moved Dependency to Workspace, updated backlight code.
Added documentation for waveshare rp2040 lcd 1.28.
Added the library and demo to the waveshare rp2040 plus with a spi lcd 1.28 connected to it on the specified pins.
Added the lib and example for the Waveshare rp2040-Plus board and the Waveshare 1.28 LCD spi interface. |
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.
Added Waveshare RP2040 LCD 1.28 to README.md