Simple LED

Description

The SimpleLed is a template class, that you can use in your own Java-project.

The template Class gives you the option to switch off, switch on or toggle the state of the LED.

Layout

Simple LED Layout

Code

A simple example on how to use the LED-Class from the Hardware-Catalog:

System.out.println("Simple LED demo started ...");

// Create a new SimpleLED component
SimpleLed led = new SimpleLed(pi4j, PIN.D26);

// Turn on the LED to have a defined state
System.out.println("Turn on LED.");
led.on();
delay(Duration.ofSeconds(1));

// Make a flashing light by toggling the LED every second
for (int i = 0; i < 10; i++) {
    System.out.println("Current LED state is :" + led.toggle() +".");
    delay(Duration.ofSeconds(1));
}

// That's it so reset all
led.reset();

Further application

The class is implemented in the two sample projects Theremin and Photobooth.

Further project ideas

  • Use an infrared LED to establish communication with an infrared receiver.
  • Use several red LEDs to recreate the running lights of KITT, the car from Knight Rider.