Skip to content
This repository has been archived by the owner on Apr 25, 2021. It is now read-only.

Commit

Permalink
Merge pull request #64 from ilcato/ES6
Browse files Browse the repository at this point in the history
2.0.0 with TypeScript rewriting and refactoring
  • Loading branch information
ilcato authored May 22, 2017
2 parents 07244e4 + 4419476 commit e0a9e7f
Show file tree
Hide file tree
Showing 26 changed files with 2,521 additions and 1,359 deletions.
43 changes: 6 additions & 37 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,46 +1,15 @@
{
// Utilizzare IntelliSense per esplorare possibili attributi di debug di Node.js .
// Al passaggio del mouse vengono visualizzate le descrizioni degli attributi esistenti.
// Per ulteriori informazioni, visitare: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/index.js",
"stopOnEntry": false,
"args": [],
"cwd": "${workspaceRoot}",
"preLaunchTask": null,
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
],
"env": {
"NODE_ENV": "development"
},
"console": "internalConsole",
"sourceMaps": false,
"outDir": null
},
{
"name": "Attach",
"type": "node",
"request": "attach",
"port": 5858,
"address": "localhost",
"restart": false,
"sourceMaps": false,
"outDir": null,
"localRoot": "${workspaceRoot}",
"remoteRoot": null
},
{
"name": "Collega a processo",
"type": "node",
"request": "attach",
"processId": "${command.PickProcess}",
"port": 5858,
"sourceMaps": false,
"outDir": null
"protocol": "inspector",
"name": "Attach",
"port": 9229
}
]
}
541 changes: 201 additions & 340 deletions LICENSE

Large diffs are not rendered by default.

8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,14 @@ The plugin is published through [NPM](https://www.npmjs.com/package/homebridge-f
npm install -g homebridge-fibaro-hc2

# Release notes
Version 2.0.0
+ Rewritten in TypeScript
+ Fixed Security System management (see updated Wiki)
+ Removed room grouping support
+ Better maintainability and extensibility

Version 1.1.2
+ Fix RGBW
+ Fixed RGBW

Version 1.1.1
+ Security system accessory fixed reading current status
Expand Down
1 change: 0 additions & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
"host": "PUT IP ADDRESS OF YOUR HC2 HERE",
"username": "PUT USERNAME OF YOUR HC2 HERE",
"password": "PUT PASSWORD OF YOUR HC2 HERE",
"grouping": "PUT none OR room",
"pollerperiod": "PUT 0 FOR DISABLING POLLING, 1 - 100 INTERVAL IN SECONDS. 2 SECONDS IS THE DEFAULT",
"securitysystem": "PUT enabled OR disabled IN ORDER TO MANAGE THE AVAILABILITY OF THE SECURITY SYSTEM"
}
Expand Down
166 changes: 166 additions & 0 deletions dist/fibaro-api.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/fibaro-api.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit e0a9e7f

Please sign in to comment.