Commit 8063a6d7 authored by Administrator's avatar Administrator 👑

Initial commit

parents
Pipeline #42 canceled with stages
# homebridge-slide-bridge
\ No newline at end of file
var Accessory, hap, UUIDGen;
module.exports = function (homebridge) {
Accessory = homebridge.platformAccessory;
hap = homebridge.hap;
UUIDGen = homebridge.hap.uuid;
homebridge.registerPlatform("homebridge-slide-bridge", "slide-bridge", SlideBridge, true);
}
function SlideBridge(log, config, api) {
var self = this;
self.log = log;
self.config = config || {};
}
SlideBridge.prototype.configureAccessory = function (accessory) {
// Won't be invoked
}
SlideBridge.prototype.didFinishLaunching = function () {
self.log("Hello I am a running app");
}
{
"name": "homebridge-slide-bridge",
"version": "0.0.2",
"description": "Slide bridge plugin for Homebridge : http://gitstash.nl/homebridge/homebridge-slide-bridge",
"license": "ISC",
"keywords": [
"homebridge-plugin"
],
"repository": {
"type": "git",
"url": "git://gitstash.nl/homebridge/homebridge-slide-bridge.git"
},
"bugs": {
"url": "http://gitstash.nl/homebridge/homebridge-slide-bridge/issues"
},
"engines": {
"node": ">=0.12.0",
"homebridge": ">=0.2.0"
},
"homepage": "http://gitstash.nl/homebridge/homebridge-slide-bridge/blob/master/README.md",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Robin Timman"
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment