2
0

doc(main): update documentation and flows

This commit is contained in:
Pierre CLEMENT
2018-03-21 23:29:36 +01:00
parent c850ca9536
commit d04f5c1196
65 changed files with 2990 additions and 4 deletions

11
dist/nodes/gateway-subdevices/index.js vendored Normal file
View File

@@ -0,0 +1,11 @@
"use strict";
const All_1 = require("./All");
const Plug_1 = require("./Plug");
const GatewaySubdevice_1 = require("./GatewaySubdevice");
module.exports = (RED) => {
All_1.default(RED);
Plug_1.default(RED);
["magnet", "motion", "sensor", "switch"].forEach((subdeviceType) => {
GatewaySubdevice_1.default(RED, subdeviceType);
});
};