10 releases (1 stable)
1.0.0 | Sep 12, 2024 |
---|---|
0.3.2 | Aug 4, 2024 |
0.2.1 | Jul 31, 2024 |
0.1.3 | Jul 30, 2024 |
#416 in Embedded development
172 downloads per month
32KB
520 lines
GC9A01A Display Driver
This crate provides a driver for the GC9A01A display, enabling basic operations such as initialization, clearing the screen, setting pixels, drawing images, and displaying buffers. The driver is built using the embedded-hal
and embedded-graphics
crates to ensure compatibility with various embedded platforms. The crate has been updated to accommodate the latest versions of embedded-hal
and embedded-graphics
.
New in Version 1.0.0
With the release of version 1.0.0, the crate now includes support for the updated embedded-hal 1.0.0 and embedded-graphics 0.8.1. This update ensures better compatibility and performance for modern embedded projects.
Key changes:
- embedded-hal: Now uses version
1.0.0
, which introduces new traits and API changes for hardware abstraction. - embedded-graphics: Updated to
0.8.1
, providing improved rendering capabilities and API adjustments for embedded graphics.
toml
Copy code
[dependencies] embedded-hal = { version = "1.0.0" } embedded-graphics = { version = "0.8.1" }
Legacy Support in Version 0.3.2
For projects that still rely on the older version of the crate, version 0.3.2 continues to provide compatibility with embedded-hal 0.2 and embedded-graphics 0.7.1. This is useful for maintaining projects that use older libraries or hardware.
toml
Copy code
[dependencies] embedded-hal = { version = "0.2" } embedded-graphics = { version = "0.7.1" }
Upgrade Instructions
To upgrade from version 0.3.2 to 1.0.0, you'll need to adjust your project's dependencies and refactor the code to account for any API changes in the dependencies, especially with embedded-hal.
Features
- Initialization of the GC9A01A display
- Setting display orientation
- Clearing the screen
- Setting individual pixels
- Drawing images and displaying buffers
- Partial updates to the display
Usage
Adding the Crate
To use this crate, add the following dependencies to your Cargo.toml
:
embedded-hal
embedded-graphics
gc9a01a_driver
API Overview
GC9A01A
The GC9A01A
struct provides methods to interact with the display. Key methods include:
new
: Creates a new instance of the GC9A01A driver.init
: Initializes the display with a given delay provider.set_orientation
: Sets the display orientation.clear_screen
: Clears the screen with a specific color.write_pixel
: Sets the color of a single pixel.draw_image
: Draws an image from a slice of RGB565 data.show
: Displays the provided buffer on the screen.show_region
: Updates only the specified region of the display with the provided buffer.
FrameBuffer
The FrameBuffer
struct represents a frame buffer and includes methods to manipulate it:
new
: Creates a new frame buffer.get_buffer
: Returns a reference to the buffer.clear
: Clears the frame buffer with the specified color.copy_region
: Copies a region from another buffer into this buffer.
Contributing
Contributions are welcome! Please feel free to submit a pull request or open an issue.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Dependencies
~3.5MB
~35K SLoC