You've already forked Ada_Drivers_Library
mirror of
https://github.com/AdaCore/Ada_Drivers_Library.git
synced 2026-02-12 12:26:55 -08:00
731 B
731 B
Text Scrolling Example
In this example we will see how to display text on the LED matrix of the micro:bit.
Code
To display text on the LED matrix, we will use the procedure Display of the
MicroBit.Display package.
procedure Display (Str : String)
with Pre => Str'Length <= Scroll_Text_Max_Length;
Arguments:
- Str : The text to be displayed on the LED matrix
Precondition:
The procedure Display has a precondition that the length of the text cannot
be more than Scroll_Text_Max_Length (128 characters).
Here is the code:
with MicroBit.Display;
procedure Main is
begin
loop
MicroBit.Display.Display ("Make with Ada! ");
end loop;
end Main;