Scripting
Examples
Alternative
{{
now = date.Now
if now.Second %2 == 0
nowString = now | Format "HH:mm"
else
nowString = now | Format "HH mm"
end
nowString = nowString | TrimPad 8 "Center"
# This will generate an FDS MLED compatible output
mled.CreateProtocol nowString 1 "Bright"
}}Last updated