We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d23aa26 + c708e1c commit a338a5eCopy full SHA for a338a5e
libraries/Arduino_LED_Matrix/src/Arduino_LED_Matrix.h
@@ -7,7 +7,7 @@ void matrixEnd(void);
7
void matrixPlay(uint8_t *buf, uint32_t len);
8
void matrixSetGrayscaleBits(uint8_t _max);
9
void matrixGrayscaleWrite(uint8_t *buf);
10
-void matrixWrite(uint8_t *buf);
+void matrixWrite(uint32_t *buf);
11
};
12
13
#if __has_include("ArduinoGraphics.h")
@@ -103,7 +103,7 @@ class Arduino_LED_Matrix
103
}
104
_sequenceDone = true;
105
106
- matrixWrite((uint8_t *)frame);
+ matrixWrite(frame);
107
108
109
void loadFrame(const uint32_t buffer[4]) {
0 commit comments