Giter Site home page Giter Site logo

dewmal / bluetooth-client-hc06 Goto Github PK

View Code? Open in Web Editor NEW

This project forked from vkorecky/bluetooth-client-hc06

1.0 3.0 0.0 35 KB

Java library: Bluetooth client for HC06 module which is widely used in projects with Arduino boards

License: Apache License 2.0

Java 100.00%

bluetooth-client-hc06's Introduction

bluetooth-client-hc06

Java library: Bluetooth client for HC06 module which is widely used in projects with Arduino boards

Linux prerequisites

Install libbluetooth-dev package

On Ubuntu

sudo apt-get install libbluetooth-dev

Usage

Maven

Add to you pom.xml file this dependency

<dependency>
    <groupId>org.korecky</groupId>
    <artifactId>bluetooth-client-hc06</artifactId>
    <version>1.0</version>
</dependency>

Demo project

You can find demo project at link: https://github.com/vkorecky/bluetooth-client-hc06-example

Code example

Pairing

Library doesn't support pairing yet. You have to pair your bluetooth device (HC06) in your operating system first.

Find HC06 bluetooth device

	// Prepare search thread
    BluetoothScanThread scanThread = new BluetoothScanThread(new BluetoothScanEventListener() {
        @Override
        public void error(ErrorEvent evt) {
            // TODO: When error happenes
            ....
        }

        @Override
        public void scanFinished(ScanFinishedEvent evt) {
        	// TODO: When bluetooth scan finished
            ....
        }

        @Override
        public void progressUpdated(ProgressUpdatedEvent evt) {
            // TODO: When work progress is updated
            ....
        }
    });

    // Start search of bluetooth device
    scanThread.start();

Communication with HC06 bluetooth device

	RFCommBluetoothDevice selectedDevice; // Fill this object by bluetooth device which was found by BluetoothScanThread
    RFCommClientThread commThread = new RFCommClientThread(selectedDevice.getUrl(), '\n', new RFCommClientEventListener() {
        @Override
        public void error(ErrorEvent evt) {
            // TODO: When error happenes
            ....
        }

        @Override
        public void messageReceived(MessageReceivedEvent evt) {
            // TODO: When message is received from HC06 module
            ....
        }
    });
    // Starts communication
    commThread.start();

    // Send message to HC06 module
    commThread.send("This is message for Arduino.");

bluetooth-client-hc06's People

Contributors

vkorecky avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.