Update README.md

This commit is contained in:
mrfaptastic 2020-08-14 10:06:07 +01:00 committed by GitHub
parent 303ad944a0
commit 5b9022d74c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -79,13 +79,12 @@ void setup()
// matrix.begin(R1_PIN, G1_PIN, B1_PIN, R2_PIN, G2_PIN, B2_PIN, A_PIN, B_PIN, C_PIN, D_PIN, E_PIN, LAT_PIN, OE_PIN, CLK_PIN ); // or custom pins // matrix.begin(R1_PIN, G1_PIN, B1_PIN, R2_PIN, G2_PIN, B2_PIN, A_PIN, B_PIN, C_PIN, D_PIN, E_PIN, LAT_PIN, OE_PIN, CLK_PIN ); // or custom pins
// Draw a single white pixel // Draw a single white pixel
matrix.drawPixel(0,0, matrix.color565(255,255,255)); // can do this now after .begin() only matrix.drawPixel(0,0, matrix.color565(255,255,255)); // can do this after .begin() only
} }
void loop() void loop()
{ { }
}
``` ```