i am just using the simple matrix and sprite code from the built in libraries. they do different things, for sure. the delays seem to work(meaning they will blink faster), but i don't seem to have any control over brightness control or changing the srpite in any meaningful way.
for example, am i wrong in assuming that: myMatrix.write(1, 5, HIGH); means that the pixel in the first column and five rows down will be turned on, etc.
also, i don't seem to have the option(or don't know how) to upload pictures at this point, sorry.
Matrix myMatrix = Matrix(0, 2, 1); void setup() { myMatrix.setBrightness(15); } void loop() { myMatrix.clear(); // clear display delay(100); // turn some pixels on myMatrix.write(1, 5, HIGH); myMatrix.write(2, 2, HIGH); myMatrix.write(2, 6, HIGH); myMatrix.write(3, 6, HIGH); myMatrix.write(4, 6, HIGH); myMatrix.write(5, 2, HIGH); myMatrix.write(5, 6, HIGH); myMatrix.write(6, 5, HIGH); delay(100); }
IP Logged
|