What's Changed
- Update artifact name to
JGPIO
- groupId and artifactId remained unchanged - Possibility to set the output line drive mode #9 #12
try ( var chip = Jgpio.getInstance() .openChipByLabel("pinctrl-rp1"); var gpio14 = chip.getLine("GPIO14") .openAsOutput(DriveMode.PUSH_PULL) // <--- ) { // ... }
- Lots of minor changes: test improvements, GitHub workflows, automation of processes
How to use in your project
Maven:
<dependency>
<groupId>eu.soft-pol.lib.jgpio</groupId>
<artifactId>jgpio</artifactId>
<version>1.1.0</version>
</dependency>
Gradle:
implementation("eu.soft-pol.lib.jgpio:jgpio:1.1.0")
Full Changelog: v1.0.1...v1.1.0