import josx.platform.rcx.*; /** * A "Hello World" like program for the Lego Brick. */ public class HelloBrick{ public static void main (String[] args) throws Exception{ LCD.clear(); TextLCD.print ("SMOKE"); Thread.sleep(1000); TextLCD.print ("TEST"); Thread.sleep(1000); } }