homebridge-smartthings-v2
Version:
SmartThings plugin for HomeBridge
168 lines (166 loc) • 7.31 kB
JSON
{
"pluginAlias": "SmartThings-v2",
"pluginType": "platform",
"singular": true,
"footerDisplay": "If you need help or have issues visit: [issues](https://github.com/tonesto7/homebridge-smartthings-v2/issues)",
"schema": {
"name": {
"title": "Name",
"description": "This should default to SmartThings-v2",
"type": "string",
"default": "SmartThings-v2",
"required": true
},
"app_url": {
"title": "App Url",
"description": "To get this information, open Homebridge (SmartThings) SmartApp in your SmartThings Classic Mobile App, and tap on 'View Configuration Data for Homebridge'",
"type": "string",
"required": true
},
"app_id": {
"title": "App ID",
"description": "To get this information, open Homebridge (SmartThings) SmartApp in your SmartThings Classic Mobile App, and tap on 'View Configuration Data for Homebridge'",
"type": "string",
"required": true
},
"access_token": {
"title": "App Token",
"description": "To get this information, open Homebridge (SmartThings) SmartApp in your SmartThings Classic Mobile App, and tap on 'View Configuration Data for Homebridge'",
"type": "string",
"required": true
},
"communityUserName": {
"title": "SmartThings Community Username",
"description": "Only need to set this when you are having issues with the plugin and you want me to be able to identify your reported exception errors.",
"type": "string",
"required": false
},
"direct_ip": {
"title": "Direct IP",
"description": "Most installations won't need this, but if for any reason it can't identify your ip address correctly, use this setting to force the IP presented to SmartThings for the hub to send to.",
"type": "string",
"required": false
},
"direct_port": {
"title": "Direct Port",
"description": "This is the port that the plugin will listen on for traffic from your hub. Make sure your firewall allows incoming traffic on this port from your hub's IP address. (This is now a dynamic port selection)",
"type": "integer",
"maximum": 65535,
"default": 8000,
"required": false
},
"temperature_unit": {
"title": "Define Temperature Unit",
"type": "string",
"default": "F",
"oneOf": [{
"title": "Fahrenheit",
"enum": [
"F"
]
},
{
"title": "Celcius",
"enum": [
"C"
]
}
]
},
"validateTokenId": {
"title": "Validate SmartApp Access Token and AppID?",
"description": "This will help secure your plugin by validating that the plugin is receiving data from the correct smartapp if you have multiple instances of the SmartApp.",
"type": "boolean",
"required": true,
"default": false
},
"logConfig": {
"type": "object",
"properties": {
"debug": {
"title": "Enable Debug logging?",
"description": "This will show just about every log output available.",
"type": "boolean",
"required": false,
"default": false
},
"showChanges": {
"title": "Show Device Events in the Logs?",
"description": "This will log device event changes received by SmartThings.",
"type": "boolean",
"required": false,
"default": true
},
"hideTimestamp": {
"title": "Hide TimeStamp Prefix inLogs?",
"description": "This will remove the prefix from all console log output.",
"type": "boolean",
"required": false,
"default": true
},
"hideNamePrefix": {
"title": "Hide Plugin Name Prefix in Logs?",
"description": "This will remove the prefix from all console log output.",
"type": "boolean",
"required": false,
"default": true
},
"file": {
"type": "object",
"properties": {
"enabled": {
"title": "Enable Logging to file",
"description": "This log will be created as homebridge-smartthings-v2.log in the same folder as this config.json file.",
"type": "boolean",
"required": false,
"default": true
},
"level": {
"title": "Log File Output Level",
"type": "string",
"default": "good",
"oneOf": [{
"title": "Debug",
"enum": [
"debug"
]
},
{
"title": "Good",
"enum": [
"good"
]
},
{
"title": "Notice",
"enum": [
"pink"
]
},
{
"title": "Alert",
"enum": [
"alert"
]
},
{
"title": "Warnings",
"enum": [
"warn"
]
},
{
"title": "Errors",
"enum": [
"error"
]
}
],
"required": false
}
}
}
}
}
}
}