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.
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();