-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTempGetter.java
30 lines (23 loc) · 965 Bytes
/
TempGetter.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import java.io.IOException;
public class TempGetter {
private String projectId = "xxx";
private String sensorId = "xxx";
private String apiUrlBase = "https://api.disruptive-technologies.com/v2";
private String apiDeviceUrl = apiUrlBase + "/projects/" + projectId + "/devices/" + sensorId;
private Connector connector = new Connector();
public static void main(String[] args) {
TempGetter tempGetter = new TempGetter();
try {
tempGetter.getState();
} catch (Exception e) {
e.printStackTrace();
}
}
private void getState() throws IOException {
String response = connector.get(apiDeviceUrl);
int beginIndex = response.indexOf("value") + 7;
int endIndex = beginIndex + 5;
String tempValue = response.substring(beginIndex, endIndex);
System.out.println("Current temperature for sensor with id " + sensorId + ": " + tempValue);
}
}