You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+81-6Lines changed: 81 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,13 +7,89 @@ This crate provides a driver for the ST7567S display controller that can be used
7
7
8
8
# Features
9
9
10
-
- Supports I2C and SPI communication protocols via the [`display_interface`](https://docs.rs/display_interface) crate.
10
+
- Supports I2C and SPI communication protocols via the [`display_interface`](https://docs.rs/display_interface) crate.
11
11
- Provides two display modes:
12
-
-Internal Buffer Mode: This mode allows you to modify an internal buffer by using methods like `set_pixel`, `clear`, or by using the [`embedded-graphics`](https://docs.rs/embedded-graphics) crate. Once you have made your changes, you can call the `flush`method to write the buffer to the display.
13
-
-Direct Write Mode: This mode allows you to write directly to the display memory by calling the `draw`method.
12
+
-Direct Write Mode (by default): This mode allows you to write directly to the display memory by calling the [`draw`]method.
13
+
-Buffered Mode: This mode allows you to modify an internal buffer by using methods like [`set_pixel`], [`clear`], or by using the [`embedded-graphics`] crate. Once you have made your changes, you can call the [`flush`]method to write the buffer to the display.
14
14
15
-
**Note**: This driver is designed to work with a more generic 128x64 resolution, instead of the original 132x65 resolution of the ST7567S controller.
0 commit comments