The Internet of Things (IoT) is becoming all the rage lately. Being able to craft any mechanical device, for example watches, televisions, thermostats, and have them communicate over the internet is the modern age. In this modern age, one thing that remains consistent is the need for transferring and storing data. How do you do this from an IoT device?

Couchbase Server exists for storing massive amounts of enterprise data and Couchbase Mobile exists for storing data locally on mobile devices and synchronizing it to Couchbase Server when capable. Where does IoT fit into this? IoT devices are not servers and they are technically not mobile devices.

Did you know that many IoT devices are capable of running Java applications? There is actually a Couchbase Lite SDK for Java. This is not an Android or iOS SDK. It is an SDK for general Java applications. With this, we can use it for IoT.

The Project Scope

Now that we know it is possible, let’s think of a cool IoT example and execute it. Let’s go with an iBeacon example under the following scenario.

Let’s say you want to track your pet while you’re away from your home. You want to understand where your pet goes throughout your home and at what times of the day. So you decide to attach an iBeacon to your pet’s collar and set up a few IoT scanners around your home.

So with your iBeacon attached and your IoT gateways in place, the IoT devices can continuously scan for iBeacons. When an iBeacon comes into range, a timestamp along with the location and beacon information can be saved and uploaded to your server. You can later create your own dashboard with a heat map to better make sense of your data.

So what is it going to take to try out this project?

The Requirements

There are a few requirements in the realm of software as well as hardware. They can be seen below:

While there is a hardware requirement, the hardware brand is a little flexible. I listed both the Intel IoT Gateway and Gimbal proximity beacons because not only are they incredibly affordable, but they are what I used when building my application. To get the most out of this example, it is best to have multiple beacons and gateways, but one will do fine for prototyping.

Below is how this project will come together.

The full source code to this project can be found on GitHub.

Saving Your Data with Couchbase

Before we get into the IoT and beacon work it would be a good idea to define our data model and build our Java application. In this scenario, which is one of many, the Java application will not be scanning for beacons. It will only be responsible for saving data.

The Couchbase Beacon Data Model

If you’re unfamiliar with iBeacons, they offer nothing but a few string and integer values in their transmission. They cannot be connected to, and they cannot see other devices. All they do is broadcast. That said, the values broadcasted are as follows:

  • UUID
  • Major
  • Minor
  • Power

The UUID, Major, and Minor offer uniquness information about a particular beacon. The three values can form a composite key that is useful when querying later on.

Let’s think about how we’re going to store the beacon data every time one is detected.

We could create a new JSON document every time a beacon is detected. The individual documents might look something in the realm of:

There is nothing wrong with the above approach. However, you could end up with massive amounts of documents depending on how many beacons you have circulating. Again, Couchbase was designed to handle this so it is a matter of preference. I actually prefer keeping all beacon transactions for a particular beacon in the same document like so:

In the second scenario, every time a beacon is discovered, Couchbase would be queried based on the composite key and then the status data would be added to the status array.

Adding the Maven Dependencies

Since this Java project is going to be Maven based, the pom.xml file needs certain dependencies satisfied. Add the following dependency to your Maven file to include the Couchbase Lite Java SDK in your project:

The above dependency will allow you to store Couchbase documents locally on your IoT device and have them synchronize with Couchbase Sync Gateway.

Creating a Beacon Class

Since we will be working with iBeacons, it makes sense to make a Java Beacon class. This class should be responsible for saving beacon data as well as loading it in the event of a query. Let’s start by taking a look at what loading is like:

In the save function we first want to load documents to see if they first exist. If a document exists for the beacon information, we want to add to it, otherwise we can just create a new document. After we’ve reconstructed our Couchbase document, whether it be from scratch or from existing document data, we save it via the putProperties function.At this point beacon data can be saved and read from the local Couchbase Lite database.

Synchronizing with Couchbase Sync Gateway

More than likely you’re going to be working with more than one IoT scanning gateway. Because of this, the beacon data (in the embedded document model) will need to be synchronized between IoT devices. Now we can take our saving and loading code to the next level.Take a look at the following code:

This code would exist in another class, preferrably your class that contains your main function. Essentially it will initialize connection to your local database, configure the push and pull replicators to a remotely running instance of Sync Gateway, and start the save and synchronization process.To be more specific, the replication process will only happen one time. When we run the application, first we will pull down any relevent beacon documents from the server. By using change listeners on the replicators we can wait to save only after we’ve finished downloading any changes. To prevent the Java application from remaining open after pushing, we add a listener that will close the application upon completion.

Resolving the SQLite Dependency Errors

When building this application with Maven, there shouldn’t be any issues. However, depending on the IoT device you deploy to there could be a library dependency issue. There are many different architectures in circulation. An example error might look like the following:

This can easily be resolved by extracting the JAR archive, renaming one of the directories, and then packaging it again into a JAR. To be more specific, to extract your JAR file, execute the following command:

From the extracted documents and files, rename the /native/linux/x86 directory to /native/linux/i386. With this done you can repackage your JAR file and redeploy it.

The above command will repackage the JAR file for you.

Scanning for iBeacons and Tracking Their Status

Like mentioned previously, the Java application is not responsible for detecting iBeacons. It is only responsible for saving the data. Instead we’re going to make use of a few tools that come pre-installed on a Linux operating system.

Scanning with Linux Tools

Most Linux distributions ship with the hcitool and hcidump applications. The hcitool will let you scan for bluetooth devices that are within range. You would run something like the following:

The above would return basic information about devices found in a scan. You would then use the hcidump tool to show anything and everything about the bluetooth data that was discovered. Something like this would show the raw data:

The problem is that data is very raw. It is not something we can work with in its current form. We wouldn’t be able to use it to make sense of iBeacon data.

Simplify the Process with a Tool by Radius Networks

This is where a script by Radius Networks comes into play. There is a script called iBeacon Scan that will make use of hcitool and hcidump, but parsed out and clean. It can be seen below:

Full disclosure that this script was written by Radius Networks with the exception of one line:

We’re taking the information parsed by the script and piping it into our Java application to be saved. This script will run continuously until manually stopped.Above is a sample animation of this project in action.

Conclusion

That wasn’t so bad right? You just created a simple Internet of Things (IoT) project that scans iBeacons and saves the information into Couchbase. The Couchbase Lite Java SDK is near identical to the Couchbase Lite Android SDK. With it we can take our Java applications to pretty much anything that supports Java.A full working example project can be seen on GitHub.

Author

Posted by Nic Raboy, Developer Advocate, Couchbase

Nic Raboy is an advocate of modern web and mobile development technologies. He has experience in Java, JavaScript, Golang and a variety of frameworks such as Angular, NativeScript, and Apache Cordova. Nic writes about his development experiences related to making web and mobile development easier to understand.

Leave a reply