sputnikdev / com.zsmartsystems.bluetooth.bluegiga

Java library to communicate with the BlueGiga Bluetooth BLE module

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Overview

This project aims to provide a Library to implement the Blue Giga API written in Java. This provides access to the BlueGiga modules via a serial interface

The main handler class is BlueGigaSerialHandler. This implements the serial interface and transaction management. It should be instantiated with the constructor BlueGigaSerialHandler(final InputStream inputStream, final OutputStream outputStream).

Users can send a BlueGiga command with the BlueGigaSerialHandler.sendTransaction method. This method will return the response frame linked to the command. Alternatively, the BlueGigaSerialHandler.sendBleRequestAsync method can be used to return a Future<BlueGigaResponse>, or BlueGigaSerialHandler.queueFrame can be called to simply queue a frame with no transaction management.

Users can subscribe to event notifications by implementing the BlueGigaEventListener interface and registering for notifications with the BlueGigaSerialHandler.addEventListener method.

An example console application is provided in the com.zsmartsystems.bluetooth.bluegiga.console project. This is a little hacky at the moment as it is used as a test application but provides a good reference on the libraries use.

Contributing

Codacy static testing should pass. Contributions must be supported with tests. Contributions must be your own.

License

The code is licensed under Eclipse Public License.

About

Java library to communicate with the BlueGiga Bluetooth BLE module

License:Eclipse Public License 1.0


Languages

Language:Java 100.0%