Skip to content

Commit 83ca5c9

Browse files
Update docs/java-application-development/how-to-use-gpio.md
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 309377d commit 83ca5c9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/java-application-development/how-to-use-gpio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public List<KuraGPIOPin> getPins(Map<String, String> description, KuraGPIODirect
2323

2424
The description map includes the properties used to identify the pin and they are implementation specific. The second method additionally attempts to configure the pin using the given [direction](https://github.com/eclipse-kura/kura/blob/develop/kura/org.eclipse.kura.api/src/main/java/org/eclipse/kura/gpio/KuraGPIODirection.java), [mode](https://github.com/eclipse-kura/kura/blob/develop/kura/org.eclipse.kura.api/src/main/java/org/eclipse/kura/gpio/KuraGPIOMode.java) and [trigger](https://github.com/eclipse-kura/kura/blob/develop/kura/org.eclipse.kura.api/src/main/java/org/eclipse/kura/gpio/KuraGPIOTrigger.java).
2525

26-
The [`KuraGpioPin`](https://github.com/eclipse-kura/kura/blob/develop/kura/org.eclipse.kura.api/src/main/java/org/eclipse/kura/gpio/KuraGPIOPin.java) object is used to manipulate GPIO Pins and exposes methods to read the status of an input, or set the status of digital output as shown below.
26+
The [`KuraGPIOPin`](https://github.com/eclipse-kura/kura/blob/develop/kura/org.eclipse.kura.api/src/main/java/org/eclipse/kura/gpio/KuraGPIOPin.java) object is used to manipulate GPIO Pins and exposes methods to read the status of an input, or set the status of digital output as shown below.
2727
```java
2828
//sets digital output value to high
2929
thePin.setValue(true);

0 commit comments

Comments
 (0)