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'
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.