Skip to content

Commit

Permalink
Merge pull request #17 from mk868/release-1.1.0
Browse files Browse the repository at this point in the history
Prepare release 1.1.0
  • Loading branch information
mk868 authored Nov 7, 2024
2 parents cbbd8e7 + 331e2f9 commit 2c39ab7
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
15 changes: 12 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,17 @@ The API allows you to:

- List information about available chips and lines
- Read GPIO pin values
- Option to set bias: high impedance, pull-up, pull-down
- Option to set bias:
- high impedance,
- pull-up,
- pull-down
- Writing GPIO pin values
- Option to set drive mode:
- push-pull,
- open-drain,
- open-drain + pull-up,
- open-source,
- open-source + pull-down

## Usage

Expand All @@ -25,7 +34,7 @@ Add the library to your project:
<dependency>
<groupId>eu.soft-pol.lib.jgpio</groupId>
<artifactId>jgpio</artifactId>
<version>1.0.1</version>
<version>1.1.0</version>
</dependency>
```

Expand Down Expand Up @@ -69,7 +78,7 @@ To grant native access for the JGPIO library, use the following parameter with t

[More info](https://openjdk.org/jeps/472#Enabling-native-access)

## System Preparation
## System preparation

### Install libgpiod

Expand Down
2 changes: 1 addition & 1 deletion examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<properties>
<maven.compiler.release>22</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jgpio.version>1.0.1</jgpio.version>
<jgpio.version>1.1.0</jgpio.version>
<log4j.version>2.24.1</log4j.version>
</properties>

Expand Down
2 changes: 1 addition & 1 deletion jgpio-it/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>eu.soft-pol.lib.jgpio</groupId>
<artifactId>jgpio-it</artifactId>
<version>1.1.0-SNAPSHOT</version>
<version>1.1.0</version>

<properties>
<maven.compiler.release>22</maven.compiler.release>
Expand Down
2 changes: 1 addition & 1 deletion jgpio/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>eu.soft-pol.lib.jgpio</groupId>
<artifactId>jgpio</artifactId>
<version>1.1.0-SNAPSHOT</version>
<version>1.1.0</version>

<name>JGPIO</name>
<description>The libgpiod bindings for Java using the Java 22 FFM API.</description>
Expand Down

0 comments on commit 2c39ab7

Please sign in to comment.