diff --git a/content/examples/_index.md b/content/examples/_index.md index 4863a8b6e..33463d018 100644 --- a/content/examples/_index.md +++ b/content/examples/_index.md @@ -22,7 +22,6 @@ In this section, we want to provide you example implementations of several devic For a simple implementation of a project with one of the components, the recommendation is to use the [Template-Project](https://github.com/Pi4J/pi4j-template-javafx). The Readme.md describes how to get started with the project. -To get a better understanding, look at one of those finished template-projects: [Theremin](https://github.com/DieterHolz/RaspPiTheremin) or [Photobooth](https://github.com/DieterHolz/PhotoBooth) ### Electrical Engineering diff --git a/content/examples/components/ADS1115.md b/content/examples/components/ADS1115.md index f3795cf27..eecc08401 100644 --- a/content/examples/components/ADS1115.md +++ b/content/examples/components/ADS1115.md @@ -108,10 +108,6 @@ public class Ads1115_App implements Application { } ``` -### Further application - -The class is implemented in the sample project [Theremin](https://github.com/DieterHolz/RaspPiTheremin). - ### Further project ideas - An application, which detects the deflection of an analog joystick. diff --git a/content/examples/components/Buzzer.md b/content/examples/components/Buzzer.md index d168e2bf1..2a4828ed1 100644 --- a/content/examples/components/Buzzer.md +++ b/content/examples/components/Buzzer.md @@ -88,10 +88,6 @@ public class Buzzer_App implements Application { } ``` -### Further application - -The class is implemented in the sample project [Theremin](https://github.com/DieterHolz/RaspPiTheremin). - ### Further project ideas - An application, which triggers if you walk by and starts beeping, like an alarm. diff --git a/content/examples/components/Camera.md b/content/examples/components/Camera.md index 8cee4d112..e78216fcd 100644 --- a/content/examples/components/Camera.md +++ b/content/examples/components/Camera.md @@ -59,10 +59,6 @@ camera.recordVideo(vidconfig); camera.reset(); ``` -### Further application - -The class is implemented in the sample project [Photobooth](https://github.com/DieterHolz/PhotoBooth). - ### Further project ideas - Use a camera and a motion-sensor to create a wildlife-camera diff --git a/content/examples/components/JoystickAnalog.md b/content/examples/components/JoystickAnalog.md index effb7fee5..ac2d88413 100644 --- a/content/examples/components/JoystickAnalog.md +++ b/content/examples/components/JoystickAnalog.md @@ -57,10 +57,6 @@ joystick.onMove((xPos, yPos) -> System.out.printf("Current position of joystick joystick.reset(); ``` -### Further application - -The class is implemented in the sample project [Theremin](https://github.com/DieterHolz/RaspPiTheremin). - ### Further project ideas - create your own PlayStation controller diff --git a/content/examples/components/LCDDisplay.md b/content/examples/components/LCDDisplay.md index 99171e0b0..42523b184 100644 --- a/content/examples/components/LCDDisplay.md +++ b/content/examples/components/LCDDisplay.md @@ -179,10 +179,6 @@ If you want to create an own character or symbol, then use the following tutoria [Create an own Symbol](https://www.8051projects.net/lcd-interfacing/lcd-custom-character.php) {{% /notice %}} -### Further application - -The class is implemented in the sample project [Photobooth](https://github.com/DieterHolz/PhotoBooth). - ### Further project ideas - A Temperature Sensor hooked to a display, where it constantly shows how warm it is diff --git a/content/examples/components/LEDButton.md b/content/examples/components/LEDButton.md index 293761edd..631c535d8 100644 --- a/content/examples/components/LEDButton.md +++ b/content/examples/components/LEDButton.md @@ -49,10 +49,6 @@ ledButton.reset(); System.out.println("LED button demo finished."); ``` -### Further application - -The class is implemented in the two sample projects [Theremin](https://github.com/DieterHolz/RaspPiTheremin) and [Photobooth](https://github.com/DieterHolz/PhotoBooth). - ### Further project ideas - An application, which includes a button. if the button is pressed, the app will order you a crate of beer from your favorite store. diff --git a/content/examples/components/LEDStrip.md b/content/examples/components/LEDStrip.md index 4e4e09e41..50be0d0f5 100644 --- a/content/examples/components/LEDStrip.md +++ b/content/examples/components/LEDStrip.md @@ -75,10 +75,6 @@ System.out.println("Color "+ ledStrip.getPixelColor(0)); System.out.println("LED strip app done."); ``` -### Further application - -The class is implemented in the sample project [Photobooth](https://github.com/DieterHolz/PhotoBooth). - ### Further project ideas - A suit with LED-Strips sewn on, on which different animations can run. diff --git a/content/examples/components/Potentiometer.md b/content/examples/components/Potentiometer.md index d0f0b5447..516ac628b 100644 --- a/content/examples/components/Potentiometer.md +++ b/content/examples/components/Potentiometer.md @@ -65,10 +65,6 @@ ads1115.reset(); System.out.println("Potentiometer demo finished"); ``` -### Further application - -The class is implemented in the sample project [Theremin](https://github.com/DieterHolz/RaspPiTheremin). - ### Further project ideas - An application, to control the brightness of some lights. diff --git a/content/examples/components/Servo.md b/content/examples/components/Servo.md index 7c0e3d91a..cebeeaf85 100644 --- a/content/examples/components/Servo.md +++ b/content/examples/components/Servo.md @@ -67,10 +67,6 @@ final var servoMotor = new ServoMotor(pi4j, PIN.PWM18, 50, -90.0f, 90.0f, 2.0f, servoMotor.reset(); ``` -### Further application - -The class is implemented in the two sample projects [Theremin](https://github.com/DieterHolz/RaspPiTheremin) and [Photobooth](https://github.com/DieterHolz/PhotoBooth). - ### Further project ideas - As a Servo can cover up to 180 degrees, it could be used as a steering-wheel hooked to a potentiometer diff --git a/content/examples/components/SimpleButton.md b/content/examples/components/SimpleButton.md index 713288a81..f109c9bc7 100644 --- a/content/examples/components/SimpleButton.md +++ b/content/examples/components/SimpleButton.md @@ -41,10 +41,6 @@ final var button = new SimpleButton(pi4j, PIN.D26, Boolean.FALSE); button.reset(); ``` -### Further application - -The class is implemented in the two sample projects [Theremin](https://github.com/DieterHolz/RaspPiTheremin) and [Photobooth](https://github.com/DieterHolz/PhotoBooth). - ### Further project ideas - An application, which includes a button. if the button is pressed, the app will order you a crate of beer from your favorite store. diff --git a/content/examples/components/SimpleLED.md b/content/examples/components/SimpleLED.md index 9e4f730d3..2c2d8ea8b 100644 --- a/content/examples/components/SimpleLED.md +++ b/content/examples/components/SimpleLED.md @@ -44,10 +44,6 @@ for (int i = 0; i < 10; i++) { led.reset(); ``` -### Further application - -The class is implemented in the two sample projects [Theremin](https://github.com/DieterHolz/RaspPiTheremin) and [Photobooth](https://github.com/DieterHolz/PhotoBooth). - ### Further project ideas - Use an infrared LED to establish communication with an infrared receiver.