From 71971120166626540b4cee7b72fafc377f29e57f Mon Sep 17 00:00:00 2001 From: Nonflammable Date: Wed, 26 Oct 2016 18:27:32 +0200 Subject: [PATCH] Update Matrix8x8.py issue #13 --- Adafruit_LED_Backpack/Matrix8x8.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Adafruit_LED_Backpack/Matrix8x8.py b/Adafruit_LED_Backpack/Matrix8x8.py index cb3ef95..6547255 100644 --- a/Adafruit_LED_Backpack/Matrix8x8.py +++ b/Adafruit_LED_Backpack/Matrix8x8.py @@ -34,7 +34,7 @@ class Matrix8x8(HT16K33.HT16K33): def set_pixel(self, x, y, value): """Set pixel at position x, y to the given value. X and Y should be values - of 0 to 8. Value should be 0 for off and non-zero for on. + of 0 to 7. Value should be 0 for off and non-zero for on. """ if x < 0 or x > 7 or y < 0 or y > 7: # Ignore out of bounds pixels.