We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d8e5345 + 13ef783 commit e385444Copy full SHA for e385444
README.rst
@@ -89,6 +89,13 @@ Usage Example
89
90
display.show()
91
92
+ # Set a pixel in the origin 0,0 position.
93
+ display.pixel(0, 0, 1)
94
+ # Set a pixel in the middle 64, 16 position.
95
+ display.pixel(64, 16, 1)
96
+ # Set a pixel in the opposite 127, 31 position.
97
+ display.pixel(127, 31, 1)
98
+ display.show()
99
100
More examples and details can be found in the `adafruit_framebuf docs <https://circuitpython.readthedocs.io/projects/framebuf/en/latest>`__.
101
0 commit comments