Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/cleanup #14

Merged
merged 3 commits into from
Oct 5, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,19 @@ Note: this is technically against the Nest TOS. So use at your own risk.
1. Create a new device type (https://graph.api.smartthings.com/ide/devices)
* Name: Nest
* Author: [email protected]
* Namespace: smartthings-users
* Capabilities:
* Polling
* Relative Humidity Measurement
* Thermostat
* Temperature Measurement
* Custom Attributes:
* presence
* Custom Commands:
* away
* present
* setPresence
* range

1. Publish the device type (next to Save button) > For Me

Expand Down
4 changes: 3 additions & 1 deletion nest.devicetype.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,14 @@
* Polling
* Relative Humidity Measurement
* Thermostat
* Temperature Measurement
* Custom Attributes:
* presence
* Custom Commands:
* away
* present
* setPresence
* range
*
* 2) Create a new device (https://graph.api.smartthings.com/device/list)
* Name: Your Choice
Expand Down Expand Up @@ -62,7 +64,7 @@ preferences {

// for the UI
metadata {
definition (name: "Nest Thermostat", author: "[email protected]") {
definition (name: "Nest", namespace: "smartthings-users", author: "[email protected]") {
capability "Polling"
capability "Relative Humidity Measurement"
capability "Thermostat"
Expand Down