Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pi4j/pi4j-v1
DEPRECATED Java I/O library for Raspberry Pi (GPIO, I2C, SPI, UART)
https://github.com/pi4j/pi4j-v1
Last synced: about 2 months ago
JSON representation
DEPRECATED Java I/O library for Raspberry Pi (GPIO, I2C, SPI, UART)
- Host: GitHub
- URL: https://github.com/pi4j/pi4j-v1
- Owner: Pi4J
- License: apache-2.0
- Archived: true
- Created: 2012-09-08T06:00:38.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2024-01-11T12:11:19.000Z (10 months ago)
- Last Synced: 2024-09-26T03:41:25.055Z (about 2 months ago)
- Language: Java
- Homepage: http://www.pi4j.com
- Size: 39.6 MB
- Stars: 1,306
- Watchers: 155
- Forks: 447
- Open Issues: 37
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# DEPRECATION NOTICE
Pi4J Version 1.x is now DEPRECATED and thus this repository is archived. [Pi4J V2.0](https://github.com/Pi4J/pi4j-v2) is the version to use for newer JDKs and Raspberry Pis. Look here for more information: https://pi4j.com/about/new-in-v2/Pi4J :: Java I/O Library for Raspberry Pi
==========================================================================
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.pi4j/pi4j-core/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.pi4j/pi4j-core)
![Snyk Security Badge](https://snyk-widget.herokuapp.com/badge/mvn/com.pi4j/pi4j-core/badge.svg)## PROJECT INFORMATION
Project website: https://pi4j.com/
Pi4J Community Forum (*new*): https://forum.pi4j.com/
Version 2.0 Project Discussions (*new*): https://forum.pi4j.com/category/6/version-2-0
Project issues list: https://github.com/Pi4J/pi4j/issues
Release builds are available from:
* [Maven Central] http://search.maven.org/#search%7Cga%7C1%7Ccom.pi4j
* [Downloads] https://pi4j.com/downloadSnapshot builds are available from:
* [Sonatype OSS] https://oss.sonatype.org/index.html#nexus-search;quick~pi4j
* [Downloads] https://pi4j.com/download
Copyright (C) 2012-2021 Pi4J## LICENSE
Pi4J Version 1.4 and later is licensed under the Apache License,
Version 2.0 (the "License"); you may not use this file except in
compliance with the License. You may obtain a copy of the License at:http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.## PROJECT OVERVIEW
Starting with the Pi4J 1.4 builds, the Pi4J project is prioritizing focus
on providing Java programs access, control and communication with the core
I/O capabilities of the Raspberry Pi platform. Earlier versions of Pi4J
were perhaps too ambitious in scope and that led to significant project
bloat to the point that the project was becoming unsustainable. The goal
moving forward is to limit scope to that of the raw I/O capabilities
of the Raspberry Pi platform and provide timely updates and releases for
bug fixes and new RaspberryPi model introductions. Reducing the scope of
the project should better serve the Java community for basic I/O access by
reducing complexity.
The following features have been removed from the Pi4J library:
* **IO Expanders** -- IO expansion is still supported but concrete
implementations should be provided outside the core Pi4J core project such
that they can be maintained and extended independently.
* **Other Platforms** -- Other platforms such as Odroid, BananaPi, NanoPi,
OrangePi, etc. have been removed and will no longer be supported. The
challenge with supporting these additional platforms is that Pi4J depends on
the underlying WiringPi project and WiringPi ports for these other platforms
is not well supported by the various SoC vendors or community. The various
WiringPi ports for these other platforms are also inconsistent causing
inconsistent features and functionality of Pi4J. Additionally, regression
testing of bug fixes and new features in Pi4J is compounded with each
additional supported platform.
* **Components & Devices** -- Pi4J originally provided higher level
interfaces for components and devices that provided an abstraction
layer between real world devices (things) and lower-level I/O interfaces.
While a noble goal, unfortunately this part of the project never received
the attention and time that it deserved and never gained much adoption
by the community. We are removing these to allow Pi4J to focus solely on
the raw I/O supported by the Raspberry Pi platform.## KNOWN ISSUES
* The original WiringPi library has been **DEPRECATED**. \
_(See: http://wiringpi.com/wiringpi-deprecated/)_> **NOTE:** To support RaspberryPi 4B and newer systems you must install the latest *unofficial* WiringPi version which is
maintained here: https://github.com/WiringPi/WiringPi. _(As of 2021-01-12, this is version 2.60.)_
Example installation commands on a RaspberryPi:
```
sudo apt-get remove wiringpi -y
sudo apt-get --yes install git-core gcc make
cd ~
git clone https://github.com/WiringPi/WiringPi --branch master --single-branch wiringpi
cd ~/wiringpi
sudo ./build
```
* Please note that the Pi4J v1.x codebase is no longer being actively developed. Pi4J v1.x will only be maintained
and updated for major bug fixes. This codebase has been largely stable for several years and is compatible across
a wide variety of Raspberry Pi SoCs and you are welcome to continue using it. However, for new projects, it
is highly recommended to migrate to the Pi4J Version 2.x codebase. See https://v2.pi4j.com for more information.* This project requires Java 11 (JDK) to build; however, it fails to compile using the following Oracle JDKs. The
project will successfully compile using OpenJDK, Liberica, Zulu and AdoptOpenJDK distributions.
- Oracle JDK 11.0.06
- Oracle JDK 11.0.07
- Oracle JDK 11.0.09
- Oracle JDK 11.0.10
- Oracle JDK 11.0.10 (_and possibly newer_)
\
Example installation command on a RaspberryPi:
```
sudo apt-get install openjdk-11-jdk
```## Building
Please see the [BUILD.md](BUILD.md) instructions for details on how to compile/build this project.
## CURRENT RELEASE
2021-03-01 :: 1.4
* Changed project to Apache License, Version 2.0
* Added support for 64-bit architecture.
* Bug Fixes: https://github.com/Pi4J/pi4j/milestone/9?closed=1
* Removed `pi4j-device` library. _(See comments above)_
* Removed `pi4j-gpio-extension` library. _(See comments above)_
* Removed platform support for `Odroid`. _(See comments above)_
* Removed platform support for `BananaPi`. _(See comments above)_
* Removed platform support for `BPi`. _(See comments above)_
* Removed platform support for `NanoPi`. _(See comments above)_
* Removed platform support for `OrangePi`. _(See comments above)_## PREVIOUS RELEASES
For previous 1.x release notes and source code, please see the 1.x branch
or release tags in the source repository:* **Releases**: https://github.com/Pi4J/pi4j/releases
* **Source Code**: https://github.com/Pi4J/pi4j/branches