Skip to content

Commit

Permalink
[BACKUP]
Browse files Browse the repository at this point in the history
  • Loading branch information
fbeek committed Jan 25, 2016
1 parent b175e7e commit 1fe1c15
Show file tree
Hide file tree
Showing 4 changed files with 455 additions and 66 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,3 +1,4 @@
node_modules
doc/*
.js
*.log
67 changes: 67 additions & 0 deletions maxcul-device-config-schema.coffee
@@ -0,0 +1,67 @@
module.exports = {
title: "pimatic-maxcul device config schemas"
MaxculShutterContact:{
title: "Config options for the Maxcul ShutterContact"
type: "object"
properties: {
id:
description: "ID of the Device"
type: "string"
default: ""
deviceId:
description: "ID of the Device in the MAX! Network"
type: "string"
default: "000000"
name:
description: "Name of the Device"
type: "string"
default: "000000"
groupId:
description : "Group/Room id of the Device"
type: "string"
default: "00"
}
},
MaxculHeatingThermostat:{
title: "Config options for the Maxcul HeatingThermostat"
type: "object"
properties: {
id:
description: "ID of the Device"
type: "string"
default: ""
deviceId:
description: "ID of the Device in the MAX! Network"
type: "string"
default: "000000"
name:
description: "Name of the Device"
type: "string"
default: "000000"
groupId:
description : "Group/Room id of the Device"
type: "string"
default: "00"
comfyTemp:
description: "The defined comfort mode temperature"
type: "number"
default: 21
ecoTemp:
description: "The defined eco mode temperature"
type: "number"
default: 17
guiShowTemperatueInput:
description: "Show the temperature input spinbox in the gui"
type: "boolean"
default: true
guiShowModeControl:
description: "Show the mode buttons in the gui"
type: "boolean"
default: true
guiShowPresetControl:
description: "Show the preset temperatures in the gui"
type: "boolean"
default: true
}
}
}

0 comments on commit 1fe1c15

Please sign in to comment.