2
0

refactor(gateway): rewrite the gateway part

This commit is contained in:
Pierre CLEMENT
2018-02-18 22:30:25 +01:00
parent c1299336cb
commit f4d54d714b
73 changed files with 1652 additions and 1171 deletions

View File

@@ -0,0 +1,33 @@
<%# ---------------------------------- read ---------------------------------- %>
<%- include('./Action', {
type: "read",
label: "read",
icon: "mi-read",
docTitle: "Ask the gateway to read the report of the input device."
}) %>
<%# ---------------------------------- get_id_list ---------------------------------- %>
<%- include('./Action', {
type: "get_id_list",
label: "get id list",
icon: "mi-list",
docTitle: "Ask the gateway to the list of devices ids."
}) %>
<%# ---------------------------------- click ---------------------------------- %>
<%- include('./Action', {
type: "click",
label: "click",
icon: "mi-click",
docTitle: "Virtual single click for switch."
}) %>
<%# ---------------------------------- double_click ---------------------------------- %>
<%- include('./Action', {
type: "double_click",
label: "double click",
icon: "double-click",
docTitle: "Virtual double click for switch."
}) %>
<%- include('./GatewayLight', {}) %>