From: Nathaniel Wesley Filardo Date: Wed, 23 Nov 2016 00:47:32 +0000 (-0500) Subject: lamp: draw-happy: blank the framebuffer first X-Git-Url: https://hydra-www.ietfng.org/gitweb/?a=commitdiff_plain;h=652d87133699db20183d900d3f197d7d2566cc7c;p=acmetensortoys-esp-lua_lamp lamp: draw-happy: blank the framebuffer first --- diff --git a/draw-happy.lua b/draw-happy.lua index bbadcce..8e41787 100644 --- a/draw-happy.lua +++ b/draw-happy.lua @@ -8,5 +8,6 @@ return function(t,fb,g,r,b) local c = string.char(g,r,b) local i,v + fb:fill(0,0,0) for i,v in ipairs({2,7,9,11,14,16,28,29}) do fb:set(v,c) end end