-
Notifications
You must be signed in to change notification settings - Fork 278
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from dvanwinkle/feature/cleanup
Feature/cleanup
- Loading branch information
Showing
2 changed files
with
6 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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" | ||
|