FDS MLED
Display Blank
This script displays just blank digits on board A:
{{
mled.CreateProtocol " " 1 "Dark"
}}Display Clock
This script display the current time of day:
{{
time = Model.Clock
formatString = time.TimeOfDay.Seconds % 2 == 0 ? "HH:mm" : "HH mm"
timestring = time | FormatRaceResult formatString
timestring = timestring | TrimPad 8 "Center"
color = "Blue"
line = (mled.Color color) + timestring
mled.CreateProtocol line 1 "Bright"
}}Display Clock, Countdown or Runtime depending on Reference Time
This script will display different information depending on the reference time:
If reference time is not set it will show the current time of day
If reference time is in the future it will show the countdown
If reference time is in ther past it will show the runtime
Display Two Lines of Text
This script will display two lines of maximum 16 charaters.
Show running time for two competitions simultenously
This is useful for showing running times for two competitions on two lines (e.g. different starting blocks or men and women starting time delayed). The text to display and the starttime can be entered at the end of the script and are not taken from the link or scene's reference time.

Last updated