Skip to content

1.1.0

Latest
Compare
Choose a tag to compare
@mk868 mk868 released this 07 Nov 21:09
· 11 commits to main since this release
2c39ab7

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