From 0348dcba1e4fd35ed27d484473ee607902134870 Mon Sep 17 00:00:00 2001 From: cniesen Date: Sun, 10 Nov 2024 18:12:08 -0600 Subject: [PATCH] Removed "Further application" section which contained dead links. Fixes issue #66 --- content/examples/_index.md | 1 - content/examples/components/ADS1115.md | 4 ---- content/examples/components/Buzzer.md | 4 ---- content/examples/components/Camera.md | 4 ---- content/examples/components/JoystickAnalog.md | 4 ---- content/examples/components/LCDDisplay.md | 4 ---- content/examples/components/LEDButton.md | 4 ---- content/examples/components/LEDStrip.md | 4 ---- content/examples/components/Potentiometer.md | 4 ---- content/examples/components/Servo.md | 4 ---- content/examples/components/SimpleButton.md | 4 ---- content/examples/components/SimpleLED.md | 4 ---- 12 files changed, 45 deletions(-) diff --git a/content/examples/_index.md b/content/examples/_index.md index 4863a8b6e9..33463d0181 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 f3795cf278..eecc084016 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 d168e2bf1b..2a4828ed1b 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 8cee4d112e..e78216fcd5 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 effb7fee58..ac2d884139 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 99171e0b04..42523b1841 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 293761edd1..631c535d8f 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 4e4e09e41a..50be0d0f5a 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 d0f0b5447c..516ac628b6 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 7c0e3d91a9..cebeeaf85b 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 713288a81e..f109c9bc7b 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 9e4f730d34..2c2d8ea8b9 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.