Skip to content
This repository was archived by the owner on May 21, 2020. It is now read-only.

tago-io/tago-sdk-java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

75 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

wercker status

Description

Tago SDK for Java.

what where
Tago website http://tago.io
SDK documentation http://sdk.java.tago.io
General documentation http://docs.tago.io
Slack / Community http://community.tago.io

Installation

Maven

<dependency>
    <groupId>io.tago.java</groupId>
    <artifactId>tago-java-maven-plugin</artifactId>
    <version>4.0.1</version>
</dependency>

Gradle

compile 'io.tago.java:tago-java-maven-plugin:4.0.1'

Other Options

Quick Example

Insert Device Data

Device device = new Device("8aa46f99-3156-4ebd-a275-fdb75c4dccbf");

final Object loc = new Object() {
    public Double lat = 42.2974279;
    public Double lng = -85.628292;
};

Object dataToInsert = new Object() {
    public String variable = "temperature";
    public String unit = "C";
    public Integer value = 63;
    public String time = "2015-11-03 13:44:33";
    public Object location = loc;
};

Result res = device.insert(data);

// -> See full documentation at: http://sdk.java.tago.io/

License

Tago SDK for Java is released under the Apache-2.0 License.

About

Tago SDK for Java

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages