Created
June 1, 2015 22:42
Amazon Echo & Z-Way ZWave
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Based on https://github.com/noelportugal/AmazonEchoApi.git, watches for 'goodnight' and sets a Z-Way scene. | |
public static void main(String[] args) throws InterruptedException, IOException { | |
AmazonEchoApi amazonEchoApi = new AmazonEchoApi("https://pitangui.amazon.com","jhmartin@toger.us", "SNIP"); | |
if (amazonEchoApi.httpLogin()){ | |
while (true) { | |
String output = amazonEchoApi.httpGet("/api/cards?type=TASK&size=1"); | |
//String output = amazonEchoApi.httpGet("/api/cards?type=TASK&size=1"); | |
//String output = amazonEchoApi.httpGet("/api/todos?type=TASK&size=1"); | |
// Parse JSON | |
Object obj = JSONValue.parse(output); | |
JSONObject jsonObject = (JSONObject) obj; | |
JSONArray values = (JSONArray) jsonObject.get("cards"); | |
//JSONArray values = (JSONArray) jsonObject.get("values"); | |
JSONObject item = (JSONObject)values.get(0); | |
// Get text and itemId | |
if (item == null) { | |
System.out.println("Skipping null or non text card"); | |
continue; | |
} | |
if (item.get("title") == null) { continue;} | |
String text = item.get("title").toString(); | |
// String text = item.get("text").toString(); | |
String itemId = item.get("id").toString(); | |
if (!checkItemId(itemId)){ | |
addItemId(itemId); | |
Pattern p = Pattern.compile("Good\\s*night"); | |
Matcher m = p.matcher(text); | |
if (m.find()) { | |
System.out.println("nighttime"); | |
try { | |
Process pr = Runtime.getRuntime().exec("curl http://localhost:8083/ZAutomation/api/v1/devices/LightScene_20/command/on"); | |
BufferedReader in = new BufferedReader( | |
new InputStreamReader(pr.getInputStream())); | |
String line = null; | |
while ((line = in.readLine()) != null) { | |
System.out.println(line); | |
} | |
} catch (IOException e) { | |
e.printStackTrace(); | |
} | |
} | |
System.out.println(text); | |
// Do something. ie Hue Lights, etc | |
}else{ | |
System.out.println("No new commands"); | |
} | |
// Sleep for 15 seconds | |
Thread.sleep(3000); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment