Wordclock/displayword.lua

223 lines
5.8 KiB
Lua
Raw Normal View History

2017-03-01 21:39:05 +01:00
-- Module filling a buffer, sent to the LEDs
function updateColor(data)
if (data.usedCharacters <= data.charsPerMinute) then
if (data.words.min1 == 1) then
return data.colorMin1
else
return data.colorFg
end
elseif (data.usedCharacters <= data.charsPerMinute*2) then
if (data.words.min2 == 1) then
return data.colorMin2
else
return data.colorFg
end
elseif (data.usedCharacters <= data.charsPerMinute*3) then
if (data.words.min3 == 1) then
return data.colorMin3
else
return data.colorFg
end
elseif (data.usedCharacters > data.charsPerMinute*3) then
if (data.words.min4 == 1) then
return data.colorMin4
else
return data.colorFg
end
else
return data.colorFg
end
end
function drawLEDs(data, numberNewChars)
local tmpBuf=nil
for i=1,numberNewChars do
if (tmpBuf == nil) then
tmpBuf = updateColor(data)
else
tmpBuf=tmpBuf .. updateColor(data)
end
data.usedCharacters=data.usedCharacters+1
end
return tmpBuf
end
2016-06-15 21:24:40 +02:00
-- Module displaying of the words
2017-03-01 21:39:05 +01:00
function generateLEDs(words, colorFg, colorMin1, colorMin2, colorMin3, colorMin4, characters)
-- Set the local variables needed for the colored progress bar
data={}
data.charsPerMinute=math.floor(characters/3) -- devide by three (Minute 1 to Minute 3, Minute 4 takes the last chars)
data.words=words
data.colorFg=colorFg
data.colorMin1=colorMin1
data.colorMin2=colorMin2
data.colorMin3=colorMin3
data.colorMin4=colorMin4
data.usedCharacters=0
2017-01-03 14:46:09 +01:00
local space=string.char(0,0,0)
-- update the background color, if set
if (colorBg ~= nil) then
space = colorBg
end
2017-03-01 21:39:05 +01:00
-- Set the foreground color as the default color
local buf=colorFg
2016-06-15 21:24:40 +02:00
-- line 1----------------------------------------------
if (words.itis == 1) then
2017-03-01 21:39:05 +01:00
buf=drawLEDs(data,2) -- ES
print(tostring(buf))
2016-06-15 21:24:40 +02:00
-- K fill character
2017-01-03 14:46:09 +01:00
buf=buf .. space:rep(1)
2017-03-01 21:39:05 +01:00
buf=buf .. drawLEDs(data,3) -- IST
2016-06-15 21:24:40 +02:00
-- L fill character
2017-01-03 14:46:09 +01:00
buf=buf .. space:rep(1)
2016-06-15 21:24:40 +02:00
else
2017-01-03 14:46:09 +01:00
buf=space:rep(7)
2016-06-15 21:24:40 +02:00
end
if (words.fiveMin== 1) then
2017-03-01 21:39:05 +01:00
buf= buf .. drawLEDs(data,4) -- FUENF
2016-06-15 21:24:40 +02:00
else
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(4)
2016-06-15 21:24:40 +02:00
end
-- line 2-- even row (so inverted) --------------------
if (words.twenty == 1) then
2017-03-01 21:39:05 +01:00
buf= buf .. drawLEDs(data,7) -- ZWANZIG
2016-06-15 21:24:40 +02:00
else
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(7)
2016-06-15 21:24:40 +02:00
end
if (words.tenMin == 1) then
2017-03-01 21:39:05 +01:00
buf= buf .. drawLEDs(data,4) -- ZEHN
2016-06-15 21:24:40 +02:00
else
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(4)
2016-06-15 21:24:40 +02:00
end
-- line3----------------------------------------------
if (words.threequater == 1) then
2017-03-01 21:39:05 +01:00
buf= buf .. drawLEDs(data,11) -- Dreiviertel
2016-06-15 21:24:40 +02:00
elseif (words.quater == 1) then
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(4)
2017-03-01 21:39:05 +01:00
buf= buf .. drawLEDs(data,7) -- VIERTEL
2016-06-15 21:24:40 +02:00
else
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(11)
2016-06-15 21:24:40 +02:00
end
--line 4-------- even row (so inverted) -------------
if (words.before == 1) then
2017-01-03 14:46:09 +01:00
buf=buf .. space:rep(2)
2017-03-01 21:39:05 +01:00
buf= buf .. drawLEDs(data,3) -- VOR
2016-06-15 21:24:40 +02:00
else
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(5)
2016-06-15 21:24:40 +02:00
end
if (words.after == 1) then
2017-03-01 21:39:05 +01:00
buf= buf .. drawLEDs(data,4) -- NACH
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(2) -- TG
2016-06-15 21:24:40 +02:00
else
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(6)
2016-06-15 21:24:40 +02:00
end
------------------------------------------------
if (words.half == 1) then
2017-03-01 21:39:05 +01:00
buf= buf .. drawLEDs(data,4) -- HALB
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(1) -- X
2016-06-15 21:24:40 +02:00
else
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(5)
2016-06-15 21:24:40 +02:00
end
if (words.twelve == 1) then
2017-03-01 21:39:05 +01:00
buf= buf .. drawLEDs(data,5) -- ZWOELF
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(1) -- P
2016-06-15 21:24:40 +02:00
else
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(6)
2016-06-15 21:24:40 +02:00
end
------------even row (so inverted) ---------------------
if (words.seven == 1) then
2017-03-01 21:39:05 +01:00
buf= buf .. drawLEDs(data,6) -- SIEBEN
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(5)
elseif (words.oneLong == 1) then
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(5)
2017-03-01 21:39:05 +01:00
buf= buf .. drawLEDs(data,4) -- EINS
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(2)
elseif (words.one == 1) then
buf= buf .. space:rep(6)
2017-03-01 21:39:05 +01:00
buf= buf .. drawLEDs(data,3) -- EIN
buf= buf .. space:rep(2)
2016-06-15 21:24:40 +02:00
elseif (words.two == 1) then
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(7)
2017-03-01 21:39:05 +01:00
buf= buf .. drawLEDs(data,4) -- ZWEI
2016-06-15 21:24:40 +02:00
else
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(11)
2016-06-15 21:24:40 +02:00
end
------------------------------------------------
if (words.three == 1) then
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(1)
2017-03-01 21:39:05 +01:00
buf= buf .. drawLEDs(data,4) -- DREI
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(6)
2016-06-15 21:24:40 +02:00
elseif (words.five == 1) then
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(7)
2017-03-01 21:39:05 +01:00
buf= buf .. drawLEDs(data,4) -- FUENF
2016-06-15 21:24:40 +02:00
else
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(11)
2016-06-15 21:24:40 +02:00
end
------------even row (so inverted) ---------------------
if (words.four == 1) then
2017-03-01 21:39:05 +01:00
buf= buf .. drawLEDs(data,4) -- VIER
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(7)
2016-06-15 21:24:40 +02:00
elseif (words.nine == 1) then
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(4)
2017-03-01 21:39:05 +01:00
buf= buf .. drawLEDs(data,4) -- NEUN
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(3)
2016-06-15 21:24:40 +02:00
elseif (words.eleven == 1) then
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(8)
2017-03-01 21:39:05 +01:00
buf= buf .. drawLEDs(data,3) -- ELEVEN
2016-06-15 21:24:40 +02:00
else
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(11)
2016-06-15 21:24:40 +02:00
end
------------------------------------------------
if (words.eight == 1) then
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(1)
2017-03-01 21:39:05 +01:00
buf= buf .. drawLEDs(data,4) -- ACHT
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(6)
2016-06-15 21:24:40 +02:00
elseif (words.ten == 1) then
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(5)
2017-03-01 21:39:05 +01:00
buf= buf .. drawLEDs(data,4) -- ZEHN
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(2)
2016-06-15 21:24:40 +02:00
else
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(11)
2016-06-15 21:24:40 +02:00
end
------------even row (so inverted) ---------------------
if (words.clock == 1) then
2017-03-01 21:39:05 +01:00
buf= buf .. drawLEDs(data,3) -- UHR
2016-06-15 21:24:40 +02:00
else
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(3)
2016-06-15 21:24:40 +02:00
end
2016-06-18 19:12:31 +02:00
if (words.six == 1) then
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(2)
2017-03-01 21:39:05 +01:00
buf= buf .. drawLEDs(data,5) -- SECHS
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(1)
2016-06-15 21:24:40 +02:00
else
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(8)
2016-06-15 21:24:40 +02:00
end
if (words.min1 == 1) then
2017-03-01 21:39:05 +01:00
buf= buf .. colorFg
2016-06-15 21:24:40 +02:00
else
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(1)
2016-06-15 21:24:40 +02:00
end
if (words.min2 == 1) then
2017-03-01 21:39:05 +01:00
buf= buf .. colorFg
2016-06-15 21:24:40 +02:00
else
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(1)
2016-06-15 21:24:40 +02:00
end
if (words.min3 == 1) then
2017-03-01 21:39:05 +01:00
buf= buf .. colorFg
2016-06-15 21:24:40 +02:00
else
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(1)
2016-06-15 21:24:40 +02:00
end
if (words.min4 == 1) then
2017-03-01 21:39:05 +01:00
buf= buf .. colorFg
2016-06-15 21:24:40 +02:00
else
2017-01-03 14:46:09 +01:00
buf= buf .. space:rep(1)
2016-06-15 21:24:40 +02:00
end
collectgarbage()
2016-06-15 21:24:40 +02:00
return buf
2016-06-18 17:07:49 +02:00
end