From 421c4acf327526cfc44d8f00b39375866b8e0d5e Mon Sep 17 00:00:00 2001 From: Vincent Presciutti Date: Sun, 3 Jan 2021 18:53:18 -0500 Subject: [PATCH] Minor updates --- led_display.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/led_display.py b/led_display.py index 099f4f7..3f68016 100644 --- a/led_display.py +++ b/led_display.py @@ -1,4 +1,4 @@ -# Library containing the class to create a new LED light display. +# Library containing the class interface to create a new LED light display. import board import neopixel @@ -38,6 +38,7 @@ class LightDisplay: pixel_framebuf = PixelFramebuffer(neo_pixel, pixel_width, pixel_height, reverse_x=True,alternating=True) print ('Press Ctrl-C to quit.') + if not args.clear: print('Use "-c" argument to clear LEDs on exit')