From 10dcad8e06034af5eb4f7dc948181d1ff7718467 Mon Sep 17 00:00:00 2001 From: Vanessa Dannenberg Date: Fri, 17 Aug 2018 10:27:27 -0400 Subject: [PATCH] store numeric message as a string in the master's meta --- init.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/init.lua b/init.lua index f69dd47..0e95ca8 100644 --- a/init.lua +++ b/init.lua @@ -220,6 +220,7 @@ local on_digiline_receive_string = function(pos, node, channel, msg) end end elseif msg and type(msg) == "number" then + meta:set_string("last_msg", tostring(msg)) led_marquee.display_msg(pos, channel, tostring(msg)) end end