Skip to content

Commit 7197112

Browse files
authored
Update Matrix8x8.py
issue adafruit#13
1 parent 954726c commit 7197112

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Adafruit_LED_Backpack/Matrix8x8.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def __init__(self, **kwargs):
3434

3535
def set_pixel(self, x, y, value):
3636
"""Set pixel at position x, y to the given value. X and Y should be values
37-
of 0 to 8. Value should be 0 for off and non-zero for on.
37+
of 0 to 7. Value should be 0 for off and non-zero for on.
3838
"""
3939
if x < 0 or x > 7 or y < 0 or y > 7:
4040
# Ignore out of bounds pixels.

0 commit comments

Comments
 (0)