From d6c0318929043c89174683bf144b6b131268a9cd Mon Sep 17 00:00:00 2001 From: Kimball Johnson Date: Fri, 31 Aug 2018 11:48:37 +0100 Subject: [PATCH] Send 2 lots of 2 neopixel zeros --- boot.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/boot.py b/boot.py index 2132cc4..1c1d49f 100644 --- a/boot.py +++ b/boot.py @@ -2,7 +2,8 @@ import os, tilda from machine import Neopix n=Neopix() -n.display([0,0,0]); +n.display([0,0]); +n.display([0,0]); print("EMF: boot.py") os.sync()