From 5b9022d74c41a3c853b39910e268c9c51e1bf186 Mon Sep 17 00:00:00 2001 From: mrfaptastic <12006953+mrfaptastic@users.noreply.github.com> Date: Fri, 14 Aug 2020 10:06:07 +0100 Subject: [PATCH] Update README.md --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 93e2ea5..924a35e 100644 --- a/README.md +++ b/README.md @@ -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 // 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() -{ -} +{ } ```