The Quorum Studio Coding window for this lesson appear here with the lines of code and comments. Look for links named Full Code as Text with Comments to get the same information in text.

SCREEN5 : The robot has a screen and you can send text to it to be display. Text can be in two sizes. There are 7 lines of regular text.

Click here to see the code without comments to copy &paste. ==>
//just the code no commentsuse Libraries.Robots.Lego.Screen use Libraries.Robots.Lego.UtilityScreen screen Utility utilityinteger linenumber=1screen:OutputCenterLarge("Hello", 2) screen:OutputCenterLarge("World", 4) utility:DelayMilliseconds(2000)screen:Clear() repeat 35 times screen:OutputCenterLarge("waiting",linenumber) linenumber = linenumber+1 if linenumber >7 linenumber =1 end utility:DelayMilliseconds(300) screen:Clear() end screen:OutputCenterLarge("Bye-Bye", 3)utility:DelayMilliseconds(2000)
Sample Video appears to the right.Scroll down to see student summited videos


Student Videos

GITHUB BUTTON HERE