Start of Tutorial > Start of Trail |
Exercise 1: What is leJOS?
Exercise 2: What is the entry point for a leJOS program running on the RCX?
public static void main(String[] args)
.
Exercise 3: Where can I find additional information regarding leJOS?
Answer: there are several resources, e.g.
Exercise 4: What is the correct constructor call?
Exercise 5: Change the simple sample application
so that it displays "LEJOS" on the LCD.
Answer: change the line TextLCD.print("DRIVE");
to
TextLCD.print("LEJOS");
Exercise 6: Change the simple sample application
so that the motor runs backwards.
Answer: change the line Motor.A.forward();
to
Motor.A.backward();
Start of Tutorial > Start of Trail |