Skip to content

mayank31313/ior-java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

IOR Client - Java

IOT is taking over world, many electronics device connect together on a network and communicate to each other. I have build app that helps you to connect those microcontroller together. Below are the client details.

Before going further this project is strongly meant for controlling robots over internet, you can check out more on Project Website

Currently it has been tested on: Arduino(with Ethernet Shield, WiFi Shield(but not tested)), NodeMCU, Lego Mindstroms EV3 Brick and on a Raspberry PI 3 other tests are being done.

This is git repository for the Java client:

Installation

Run the following command, use the following dependency to embed IORClient in your project.

<dependency>
    <groupId>com.github.mayank31313</groupId>
    <artifactId>IORClient</artifactId>
    <version>0.3.5</version>
</dependency>

Usage

import ior_research.iotclient.*;

String token = "paste your subscription key here"
Integer code = //Current Device Code
Integer to = //Destination Device Code

Long or Integer time_delay = 90 # Time delay for the heart beat (in seconds) default is 90 seconds

Create Instance of IOT Client

IOTClient iot = IOTClient(from = code,to=to,token=token) #Creating object for IOT Client

Setting up Receive Function to do some Operation when a response is received.

iot.setReadFunction(Client::onReceive);

public static Boolean onReceive(SocketMessage msg) {
    System.out.println("Message Received");
    System.out.println("Message Received: " + msg.message);
    System.out.println("Message status: " + msg.status);
    return true;
}

Last but not the least start the IOTClient

iot.start()

About

This repository is the Official Repository for IOR-Java Client, This project is to concern the needs of IOT and connecting robots over Internet.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors