-
-
Save Dianoga/6055918 to your computer and use it in GitHub Desktop.
/** | |
* Nest Direct | |
* | |
* Author: dianoga7@3dgo.net | |
* Date: 2013-07-18 | |
* Code: https://gist.github.com/Dianoga/6055918 | |
* | |
* INSTALLATION | |
* ========================================= | |
* 1) Create a new device type (https://graph.api.smartthings.com/ide/devices) | |
* Name: Nest | |
* Author: dianoga7@3dgo.net | |
* Capabilities: | |
* Polling | |
* Relative Humidity Measurement | |
* Thermostat | |
* Custom Attributes: | |
* presence | |
* Custom Commands: | |
* away | |
* present | |
* setPresence | |
* | |
* 2) Create a new device (https://graph.api.smartthings.com/device/list) | |
* Name: Your Choice | |
* Device Network Id: Your Choice | |
* Type: Nest (should be the last option) | |
* Location: Choose the correct location | |
* Hub/Group: Leave blank | |
* | |
* 3) Update device preferences | |
* Click on the new device to see the details. | |
* Click the edit button next to Preferences | |
* Fill in your information. | |
* To find your serial number, login to http://home.nest.com. Click on the thermostat | |
* you want to control. Under settings, go to Technical Info. Your serial number is | |
* the second item. | |
* | |
* 4) That's it, you're done. | |
* | |
* Copyright (C) 2013 Brian Steere <dianoga7@3dgo.net> | |
* Permission is hereby granted, free of charge, to any person obtaining a copy of this | |
* software and associated documentation files (the "Software"), to deal in the Software | |
* without restriction, including without limitation the rights to use, copy, modify, | |
* merge, publish, distribute, sublicense, and/or sell copies of the Software, and to | |
* permit persons to whom the Software is furnished to do so, subject to the following | |
* conditions: The above copyright notice and this permission notice shall be included | |
* in all copies or substantial portions of the Software. | |
* | |
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, | |
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A | |
* PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT | |
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF | |
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE | |
* OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | |
*/ | |
preferences { | |
input("username", "text", title: "Username", description: "Your Nest username (usually an email address)") | |
input("password", "password", title: "Password", description: "Your Nest password") | |
input("serial", "text", title: "Serial #", description: "The serial number of your thermostat") | |
} | |
// for the UI | |
metadata { | |
simulator { | |
// TODO: define status and reply messages here | |
} | |
tiles { | |
valueTile("temperature", "device.temperature", width: 2, height: 2, canChangeIcon: true) { | |
state("temperature", label: '${currentValue}°', unit:"F", backgroundColors: [ | |
[value: 31, color: "#153591"], | |
[value: 44, color: "#1e9cbb"], | |
[value: 59, color: "#90d2a7"], | |
[value: 74, color: "#44b621"], | |
[value: 84, color: "#f1d801"], | |
[value: 95, color: "#d04e00"], | |
[value: 96, color: "#bc2323"] | |
] | |
) | |
} | |
standardTile("thermostatMode", "device.thermostatMode", inactiveLabel: false, decoration: "flat") { | |
state "heat", label:'${name}', action:"thermostat.off", icon: "st.Weather.weather14", backgroundColor: '#E14902' | |
state "off", label:'${name}', action:"thermostat.cool", icon: "st.Outdoor.outdoor19" | |
state "cool", label:'${name}', action:"thermostat.heat", icon: "st.Weather.weather7", backgroundColor: '#003CEC' | |
} | |
standardTile("thermostatFanMode", "device.thermostatFanMode", inactiveLabel: false, decoration: "flat") { | |
state "auto", label:'${name}', action:"thermostat.fanOn", icon: "st.Appliances.appliances11" | |
state "on", label:'${name}', action:"thermostat.fanCirculate", icon: "st.Appliances.appliances11" | |
state "circulate", label:'${name}', action:"thermostat.fanAuto", icon: "st.Appliances.appliances11" | |
} | |
controlTile("coolSliderControl", "device.coolingSetpoint", "slider", height: 1, width: 3, inactiveLabel: false) { | |
state "setCoolingSetpoint", label:'Set temperarure to', action:"thermostat.setCoolingSetpoint", | |
backgroundColors:[ | |
[value: 31, color: "#153591"], | |
[value: 44, color: "#1e9cbb"], | |
[value: 59, color: "#90d2a7"], | |
[value: 74, color: "#44b621"], | |
[value: 84, color: "#f1d801"], | |
[value: 95, color: "#d04e00"], | |
[value: 96, color: "#bc2323"] | |
] | |
} | |
valueTile("coolingSetpoint", "device.coolingSetpoint", inactiveLabel: false, decoration: "flat") { | |
state "default", label:'${currentValue}°', unit:"F", backgroundColor:"#ffffff", icon:"st.appliances.appliances8" | |
} | |
valueTile("humidity", "device.humidity", inactiveLabel: false, decoration: "flat") { | |
state "default", label:'${currentValue}%', unit:"Humidity" | |
} | |
standardTile("presence", "device.presence", inactiveLabel: false, decoration: "flat") { | |
state "present", label:'${name}', action:"away", icon: "st.Home.home2" | |
state "away", label:'${name}', action:"present", icon: "st.Transportation.transportation5" | |
} | |
standardTile("refresh", "device.thermostatMode", inactiveLabel: false, decoration: "flat") { | |
state "default", action:"polling.poll", icon:"st.secondary.refresh" | |
} | |
main "temperature" | |
details(["temperature", "thermostatMode", "thermostatFanMode", "coolSliderControl", "coolingSetpoint", "humidity", "presence", "refresh"]) | |
} | |
} | |
// parse events into attributes | |
def parse(String description) { | |
} | |
// handle commands | |
def setHeatingSetpoint(temp) { | |
setTargetTemp(temp); | |
} | |
def setCoolingSetpoint(temp) { | |
setTargetTemp(temp); | |
} | |
def setTargetTemp(temp) { | |
api('temperature', ['target_change_pending': true, 'target_temperature': fToC(temp)]) { | |
sendEvent(name: 'coolingSetpoint', value: temp) | |
sendEvent(name: 'heatingSetpoint', value: temp) | |
} | |
} | |
def off() { | |
setThermostatMode('off') | |
} | |
def heat() { | |
setThermostatMode('heat') | |
} | |
def emergencyHeat() { | |
setThermostatMode('heat') | |
} | |
def cool() { | |
setThermostatMode('cool') | |
} | |
def setThermostatMode(mode) { | |
mode = mode == 'emergency heat'? 'heat' : mode | |
api('thermostat_mode', ['target_change_pending': true, 'target_temperature_type': mode]) { | |
sendEvent(name: 'thermostatMode', value: mode) | |
} | |
} | |
def fanOn() { | |
setThermostatFanMode('on') | |
} | |
def fanAuto() { | |
setThermostatFanMode('auto') | |
} | |
def fanCirculate() { | |
setThermostatFanMode('circulate') | |
} | |
def setThermostatFanMode(mode) { | |
def modes = [ | |
on: ['fan_mode': 'on'], | |
auto: ['fan_mode': 'auto'], | |
circulate: ['fan_mode': 'duty-cycle', 'fan_duty_cycle': 900] | |
] | |
api('fan_mode', modes.getAt(mode)) { | |
sendEvent(name: 'thermostatFanMode', value: mode) | |
} | |
} | |
def away() { | |
setPresence('away') | |
} | |
def present() { | |
setPresence('present') | |
} | |
def setPresence(status) { | |
log.debug "Status: $status" | |
api('presence', ['away': status == 'away', 'away_timestamp': new Date().getTime(), 'away_setter': 0]) { | |
sendEvent(name: 'presence', value: status) | |
} | |
} | |
def auto() { | |
log.debug "Executing 'auto'" | |
} | |
def poll() { | |
log.debug "Executing 'poll'" | |
api('status', []) { | |
data.device = it.data.device.getAt(settings.serial) | |
data.shared = it.data.shared.getAt(settings.serial) | |
data.structureId = it.data.link.getAt(settings.serial).structure.tokenize('.')[1] | |
data.structure = it.data.structure.getAt(data.structureId) | |
data.device.fan_mode = data.device.fan_mode == 'duty-cycle'? 'circulate' : data.device.fan_mode | |
data.structure.away = data.structure.away? 'away' : 'present' | |
sendEvent(name: 'humidity', value: data.device.current_humidity) | |
sendEvent(name: 'temperature', value: cToF(data.shared.current_temperature) as Integer, state: data.device.target_temperature_type) | |
sendEvent(name: 'thermostatFanMode', value: data.device.fan_mode) | |
sendEvent(name: 'thermostatMode', value: data.shared.target_temperature_type) | |
sendEvent(name: 'coolingSetpoint', value: cToF(data.shared.target_temperature) as Integer) | |
sendEvent(name: 'heatingSetpoint', value: cToF(data.shared.target_temperature) as Integer) | |
sendEvent(name: 'presence', value: data.structure.away) | |
} | |
} | |
def api(method, args = [], success = {}) { | |
if(!isLoggedIn()) { | |
log.debug "Need to login" | |
login(method, args, success) | |
return | |
} | |
def methods = [ | |
'status': [uri: "/v2/mobile/${data.auth.user}", type: 'get'], | |
'fan_mode': [uri: "/v2/put/device.${settings.serial}", type: 'post'], | |
'thermostat_mode': [uri: "/v2/put/shared.${settings.serial}", type: 'post'], | |
'temperature': [uri: "/v2/put/shared.${settings.serial}", type: 'post'], | |
'presence': [uri: "/v2/put/structure.${data.structureId}", type: 'post'], | |
'weather': [uri: "https://home.nest.com/api/0.1/weather/forecast/52317", type: 'get'] | |
] | |
def request = methods.getAt(method) | |
log.debug "Logged in" | |
doRequest(request.uri, args, request.type, success) | |
} | |
// Need to be logged in before this is called. So don't call this. Call api. | |
def doRequest(uri, args, type, success) { | |
log.debug "Calling $type : $uri : $args" | |
if(uri.charAt(0) == '/') { | |
uri = "${data.auth.urls.transport_url}${uri}" | |
} | |
def params = [ | |
uri: uri, | |
headers: [ | |
'X-nl-protocol-version': 1, | |
'X-nl-user-id': data.auth.userid, | |
'Authorization': "Basic ${data.auth.access_token}" | |
], | |
body: args | |
] | |
if(type == 'post') { | |
httpPostJson(params, success) | |
} else if (type == 'get') { | |
httpGet(params, success) | |
} | |
} | |
def login(method = null, args = [], success = {}) { | |
def params = [ | |
uri: 'https://home.nest.com/user/login', | |
body: [username: settings.username, password: settings.password] | |
] | |
httpPost(params) {response -> | |
data.auth = response.data | |
data.auth.expires_in = Date.parse('EEE, dd-MMM-yyyy HH:mm:ss z', response.data.expires_in).getTime() | |
log.debug data.auth | |
api(method, args, success) | |
} | |
} | |
def isLoggedIn() { | |
if(!data.auth) { | |
log.debug "No data.auth" | |
return false | |
} | |
def now = new Date().getTime(); | |
return data.auth.expires_in > now | |
} | |
def cToF(temp) { | |
return temp * 1.8 + 32 | |
} | |
def fToC(temp) { | |
return (temp - 32) / 1.8 | |
} |
Question: How does one handle the case where 2 people live in the house, each having a SmartThings presence sensor (iPhone)? If one person leaves and the other remains - who 'wins' the away/present vote? Is this handled in the current release?
Thanks in advance!
-Shane
Question: Is it possible to use '+' and '-' tiles for the temperature instead of the slider? If so, how would this be written? The current way of altering the setpoint is the slider, and this is not really smooth. When I let go of the slider it ends up either a few degrees higher or lower then the temp I actually want, because of my big fingers. Also, the slider is hard to "grab" in both the iPhone and Android. (I tried but i'm kind of a noob to this language as I just got my hub a few days ago)
Great work, by the way, integrates with nest pretty much seamlessly.
Hey pickerin: I followed all the steps but the new devices in the app doesn't seem to be updating with any of the data from my Nest. Any thoughts?
Nevermind, I just needed to adjust the code for the Device Type a bit from how I had it. Thanks
dianoga - question:
I'm with you on steps 1 and 2 - but where do you do #3 at in the instructions?
Question, when I copy and paste it I get the following error.
Java.lang.IllegalArgumentException: Metadata definition not found
Dianoga: Just noticed that your weather method uses a hardcoded zip code for IA.
I modified my version to create a new setting called zip and then used that setting in the API call.
Probably worth a mod, I didn't think it warranted a fork.
Great work!