Lejos -

Ensure the leJOS libraries are included in your project build path. 3. Your First Program ("Hello World")

Select File -> New -> Project -> leJOS -> leJOS EV3 Project . Ensure the leJOS libraries are included in your

import lejos.hardware.lcd.LCD; import lejos.utility.Delay; public class HelloWorld { public static void main(String[] args) { LCD.drawString("Hello, leJOS!", 0, 0); Delay.msDelay(2000); // Wait for 2 seconds LCD.clear(); } } Use code with caution. Copied to clipboard import lejos

Flash the image onto your microSD card using software like BalenaEtcher. Insert the card into the and boot it up. Connect the Connect the Create a new Java class and

Create a new Java class and use the following code to display text on the screen:

In Eclipse, go to Help -> Install New Software , and use the leJOS update site (found on the leJOS wiki) to install the plugin.