.ledColor(Color.rgb(RND.nextInt(255), RND.nextInt(255), RND.nextInt(255)))
.frameVisible(false)
.build(), x, y);
}
}
pane.sceneProperty().addListener(observable -> start = LocalTime.now());
Scene scene = new Scene(pane);
stage.setTitle("Led demo");
stage.setScene(scene);