forked from micropython/micropython
-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
extmod/modframebuf: Add 8-bit greyscale format (GS8).
- Loading branch information
Showing
4 changed files
with
75 additions
and
0 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
try: | ||
import framebuf | ||
except ImportError: | ||
print("SKIP") | ||
raise SystemExit | ||
|
||
def printbuf(): | ||
print("--8<--") | ||
for y in range(h): | ||
for x in range(w): | ||
print('%02x' % buf[(x + y * w)], end='') | ||
print() | ||
print("-->8--") | ||
|
||
w = 8 | ||
h = 5 | ||
buf = bytearray(w * h) | ||
fbuf = framebuf.FrameBuffer(buf, w, h, framebuf.GS8) | ||
|
||
# fill | ||
fbuf.fill(0x55) | ||
printbuf() | ||
|
||
# put pixel | ||
fbuf.pixel(0, 0, 0x11) | ||
fbuf.pixel(w - 1, 0, 0x22) | ||
fbuf.pixel(0, h - 1, 0x33) | ||
fbuf.pixel(w - 1, h - 1, 0xff) | ||
printbuf() | ||
|
||
# get pixel | ||
print(hex(fbuf.pixel(0, h - 1)), hex(fbuf.pixel(1, 1))) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--8<-- | ||
5555555555555555 | ||
5555555555555555 | ||
5555555555555555 | ||
5555555555555555 | ||
5555555555555555 | ||
-->8-- | ||
--8<-- | ||
1155555555555522 | ||
5555555555555555 | ||
5555555555555555 | ||
5555555555555555 | ||
33555555555555ff | ||
-->8-- | ||
0x33 0x55 |