Advertisement
NittyGritty

Dimmer-Beispiel

Dec 17th, 2021
1,221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 21.16 KB | None | 0 0
  1. [
  2.     {
  3.         "id": "3b579211e4193673",
  4.         "type": "function",
  5.         "z": "98537bea.1dd4b8",
  6.         "name": "Brightness up",
  7.         "func": "var step = global.get(\"Step\");\nvar brightness =  global.get(\"Osram-Kueche-Brightness\");\nvar ColorTemp = global.get(\"Osram-Kueche-ColorTemp\");\n\nif(brightness > 0){\n    brightness = brightness + step;\n    global.set(\"Osram-Kueche-Brightness\",brightness);\n\t}\n\t\nif(brightness >= 255){\n    brightness = 254;\n    flow.set('press', false);\n    global.set(\"Osram-Kueche-Brightness\",brightness);\n    }\n\nmsg.topic = \"/home/zigbee/Osram-Kueche/set\"\nmsg.payload = {\"state\":\"ON\",\"brightness\":brightness,\"color_temp\":ColorTemp};\nnode.status({fill:\"blue\",shape:\"ring\",text:\"Brightness: \" + brightness });\nreturn msg;",
  8.         "outputs": 1,
  9.         "noerr": 0,
  10.         "initialize": "",
  11.         "finalize": "",
  12.         "libs": [],
  13.         "x": 740,
  14.         "y": 1080,
  15.         "wires": [
  16.             [
  17.                 "39764d730d87c8a8",
  18.                 "d2168f3d5bfa673f"
  19.             ]
  20.         ]
  21.     },
  22.     {
  23.         "id": "3ab62d5d0fc69c27",
  24.         "type": "function",
  25.         "z": "98537bea.1dd4b8",
  26.         "name": "Brightness down",
  27.         "func": "var step = global.get(\"Step\");\nvar brightness =  global.get(\"Osram-Kueche-Brightness\");\nvar ColorTemp = global.get(\"Osram-Kueche-ColorTemp\");\n\nif(brightness <= 255){\n    brightness = brightness - step; \n    global.set(\"Osram-Kueche-Brightness\",brightness);\n\t}\n\t\nif(brightness <= 0){\n    brightness = 1;\n    flow.set('press', false);\n    global.set(\"Osram-Kueche-Brightness\",brightness);\n    }\n    \nmsg.topic = \"/home/zigbee/Osram-Kueche/set\"\nmsg.payload = {\"state\":\"ON\",\"brightness\":brightness,\"color_temp\":ColorTemp};\nnode.status({fill:\"blue\",shape:\"ring\",text:\"Brightness: \" + brightness });\nreturn msg;",
  28.         "outputs": 1,
  29.         "noerr": 0,
  30.         "initialize": "",
  31.         "finalize": "",
  32.         "libs": [],
  33.         "x": 730,
  34.         "y": 1160,
  35.         "wires": [
  36.             [
  37.                 "39764d730d87c8a8",
  38.                 "dadfb7b9050f4850"
  39.             ]
  40.         ]
  41.     },
  42.     {
  43.         "id": "4d2e6dc3bb4fdb86",
  44.         "type": "switch",
  45.         "z": "98537bea.1dd4b8",
  46.         "name": "Control loop",
  47.         "property": "press",
  48.         "propertyType": "flow",
  49.         "rules": [
  50.             {
  51.                 "t": "true"
  52.             }
  53.         ],
  54.         "checkall": "true",
  55.         "repair": false,
  56.         "outputs": 1,
  57.         "x": 1150,
  58.         "y": 1080,
  59.         "wires": [
  60.             [
  61.                 "3ab62d5d0fc69c27"
  62.             ]
  63.         ]
  64.     },
  65.     {
  66.         "id": "81658a69cc85d85b",
  67.         "type": "switch",
  68.         "z": "98537bea.1dd4b8",
  69.         "name": "Control loop",
  70.         "property": "press",
  71.         "propertyType": "flow",
  72.         "rules": [
  73.             {
  74.                 "t": "true"
  75.             }
  76.         ],
  77.         "checkall": "true",
  78.         "repair": false,
  79.         "outputs": 1,
  80.         "x": 1150,
  81.         "y": 1160,
  82.         "wires": [
  83.             [
  84.                 "3b579211e4193673"
  85.             ]
  86.         ]
  87.     },
  88.     {
  89.         "id": "d2168f3d5bfa673f",
  90.         "type": "delay",
  91.         "z": "98537bea.1dd4b8",
  92.         "name": "",
  93.         "pauseType": "delay",
  94.         "timeout": "100",
  95.         "timeoutUnits": "milliseconds",
  96.         "rate": "1",
  97.         "nbRateUnits": "1",
  98.         "rateUnits": "second",
  99.         "randomFirst": "1",
  100.         "randomLast": "5",
  101.         "randomUnits": "seconds",
  102.         "drop": false,
  103.         "outputs": 1,
  104.         "x": 970,
  105.         "y": 1160,
  106.         "wires": [
  107.             [
  108.                 "81658a69cc85d85b"
  109.             ]
  110.         ]
  111.     },
  112.     {
  113.         "id": "dadfb7b9050f4850",
  114.         "type": "delay",
  115.         "z": "98537bea.1dd4b8",
  116.         "name": "",
  117.         "pauseType": "delay",
  118.         "timeout": "100",
  119.         "timeoutUnits": "milliseconds",
  120.         "rate": "1",
  121.         "nbRateUnits": "1",
  122.         "rateUnits": "second",
  123.         "randomFirst": "1",
  124.         "randomLast": "5",
  125.         "randomUnits": "seconds",
  126.         "drop": false,
  127.         "outputs": 1,
  128.         "x": 970,
  129.         "y": 1080,
  130.         "wires": [
  131.             [
  132.                 "4d2e6dc3bb4fdb86"
  133.             ]
  134.         ]
  135.     },
  136.     {
  137.         "id": "2860bb1b36d8e137",
  138.         "type": "change",
  139.         "z": "98537bea.1dd4b8",
  140.         "name": "start",
  141.         "rules": [
  142.             {
  143.                 "t": "set",
  144.                 "p": "payload",
  145.                 "pt": "msg",
  146.                 "to": "true",
  147.                 "tot": "bool"
  148.             }
  149.         ],
  150.         "action": "",
  151.         "property": "",
  152.         "from": "",
  153.         "to": "",
  154.         "reg": false,
  155.         "x": 770,
  156.         "y": 960,
  157.         "wires": [
  158.             [
  159.                 "45913c7235f0f154"
  160.             ]
  161.         ]
  162.     },
  163.     {
  164.         "id": "d1fe0f19ab2df11f",
  165.         "type": "change",
  166.         "z": "98537bea.1dd4b8",
  167.         "name": "stop",
  168.         "rules": [
  169.             {
  170.                 "t": "set",
  171.                 "p": "payload",
  172.                 "pt": "msg",
  173.                 "to": "false",
  174.                 "tot": "bool"
  175.             }
  176.         ],
  177.         "action": "",
  178.         "property": "",
  179.         "from": "",
  180.         "to": "",
  181.         "reg": false,
  182.         "x": 770,
  183.         "y": 1000,
  184.         "wires": [
  185.             [
  186.                 "45913c7235f0f154"
  187.             ]
  188.         ]
  189.     },
  190.     {
  191.         "id": "45913c7235f0f154",
  192.         "type": "change",
  193.         "z": "98537bea.1dd4b8",
  194.         "name": "Control the loop",
  195.         "rules": [
  196.             {
  197.                 "t": "set",
  198.                 "p": "press",
  199.                 "pt": "flow",
  200.                 "to": "payload",
  201.                 "tot": "msg"
  202.             }
  203.         ],
  204.         "action": "",
  205.         "property": "",
  206.         "from": "",
  207.         "to": "",
  208.         "reg": false,
  209.         "x": 1160,
  210.         "y": 980,
  211.         "wires": [
  212.             []
  213.         ]
  214.     },
  215.     {
  216.         "id": "39764d730d87c8a8",
  217.         "type": "mqtt out",
  218.         "z": "98537bea.1dd4b8",
  219.         "name": "Osram-Küche",
  220.         "topic": "",
  221.         "qos": "",
  222.         "retain": "",
  223.         "respTopic": "",
  224.         "contentType": "",
  225.         "userProps": "",
  226.         "correl": "",
  227.         "expiry": "",
  228.         "broker": "595dfa51.2c1224",
  229.         "x": 1160,
  230.         "y": 820,
  231.         "wires": []
  232.     },
  233.     {
  234.         "id": "69f647dd88c9c3e7",
  235.         "type": "function",
  236.         "z": "98537bea.1dd4b8",
  237.         "name": "ON",
  238.         "func": "var brightness =  global.get(\"Osram-Kueche-Brightness\");\nvar ColorTemp = global.get(\"Osram-Kueche-ColorTemp\");\n\nmsg.topic = \"/home/zigbee/Osram-Kueche/set\"\nmsg.payload = {\"state\":\"ON\",\"brightness\":brightness,\"color_temp\":ColorTemp};\nnode.status({fill:\"blue\",shape:\"ring\",text:\"Brightness: \" + brightness });\nreturn msg;\n",
  239.         "outputs": 1,
  240.         "noerr": 0,
  241.         "initialize": "",
  242.         "finalize": "",
  243.         "libs": [],
  244.         "x": 770,
  245.         "y": 800,
  246.         "wires": [
  247.             [
  248.                 "39764d730d87c8a8"
  249.             ]
  250.         ]
  251.     },
  252.     {
  253.         "id": "c3d7fd7c9b059963",
  254.         "type": "function",
  255.         "z": "98537bea.1dd4b8",
  256.         "name": "OFF",
  257.         "func": "var step = global.get(\"Step\");\nvar brightness =  global.get(\"Osram-Kueche-Brightness\");\nvar ColorTemp = global.get(\"Osram-Kueche-ColorTemp\");\n\nmsg.topic = \"/home/zigbee/Osram-Kueche/set\"\nmsg.payload = {\"state\":\"OFF\",\"brightness\":brightness,\"color_temp\":ColorTemp};\nnode.status({fill:\"blue\",shape:\"ring\",text:\"Brightness: \" + brightness });\nreturn msg;\n",
  258.         "outputs": 1,
  259.         "noerr": 0,
  260.         "initialize": "",
  261.         "finalize": "",
  262.         "libs": [],
  263.         "x": 770,
  264.         "y": 860,
  265.         "wires": [
  266.             [
  267.                 "39764d730d87c8a8"
  268.             ]
  269.         ]
  270.     },
  271.     {
  272.         "id": "7d706109166b7846",
  273.         "type": "inject",
  274.         "z": "98537bea.1dd4b8",
  275.         "name": "Osram-Kueche",
  276.         "props": [
  277.             {
  278.                 "p": "payload"
  279.             },
  280.             {
  281.                 "p": "topic",
  282.                 "vt": "str"
  283.             }
  284.         ],
  285.         "repeat": "",
  286.         "crontab": "",
  287.         "once": false,
  288.         "onceDelay": 0.1,
  289.         "topic": "/home/zigbee/Osram-Kueche/get",
  290.         "payload": "{\"state\": \"\"}",
  291.         "payloadType": "str",
  292.         "x": 940,
  293.         "y": 1320,
  294.         "wires": [
  295.             [
  296.                 "39764d730d87c8a8"
  297.             ]
  298.         ]
  299.     },
  300.     {
  301.         "id": "f584c5871638c238",
  302.         "type": "switch",
  303.         "z": "98537bea.1dd4b8",
  304.         "name": "",
  305.         "property": "payload",
  306.         "propertyType": "msg",
  307.         "rules": [
  308.             {
  309.                 "t": "eq",
  310.                 "v": "ON",
  311.                 "vt": "str"
  312.             },
  313.             {
  314.                 "t": "eq",
  315.                 "v": "OFF",
  316.                 "vt": "str"
  317.             }
  318.         ],
  319.         "checkall": "true",
  320.         "repair": false,
  321.         "outputs": 2,
  322.         "x": 390,
  323.         "y": 840,
  324.         "wires": [
  325.             [
  326.                 "69f647dd88c9c3e7"
  327.             ],
  328.             [
  329.                 "c3d7fd7c9b059963"
  330.             ]
  331.         ]
  332.     },
  333.     {
  334.         "id": "da3c903a549e06ba",
  335.         "type": "inject",
  336.         "z": "98537bea.1dd4b8",
  337.         "name": "On",
  338.         "props": [
  339.             {
  340.                 "p": "payload"
  341.             },
  342.             {
  343.                 "p": "topic",
  344.                 "vt": "str"
  345.             }
  346.         ],
  347.         "repeat": "",
  348.         "crontab": "",
  349.         "once": false,
  350.         "onceDelay": 0.1,
  351.         "topic": "",
  352.         "payload": "ON",
  353.         "payloadType": "str",
  354.         "x": 150,
  355.         "y": 820,
  356.         "wires": [
  357.             [
  358.                 "f584c5871638c238"
  359.             ]
  360.         ]
  361.     },
  362.     {
  363.         "id": "63e536f00a4a2a63",
  364.         "type": "inject",
  365.         "z": "98537bea.1dd4b8",
  366.         "name": "Off",
  367.         "props": [
  368.             {
  369.                 "p": "payload"
  370.             },
  371.             {
  372.                 "p": "topic",
  373.                 "vt": "str"
  374.             }
  375.         ],
  376.         "repeat": "",
  377.         "crontab": "",
  378.         "once": false,
  379.         "onceDelay": 0.1,
  380.         "topic": "",
  381.         "payload": "OFF",
  382.         "payloadType": "str",
  383.         "x": 150,
  384.         "y": 860,
  385.         "wires": [
  386.             [
  387.                 "f584c5871638c238"
  388.             ]
  389.         ]
  390.     },
  391.     {
  392.         "id": "08f4db8c8e3bf0c6",
  393.         "type": "link in",
  394.         "z": "98537bea.1dd4b8",
  395.         "name": "Licht Küche-On-Off",
  396.         "links": [
  397.             "156b8eb58ea47b97",
  398.             "3db617d9c19542c9",
  399.             "cfd097d97aea7ec1",
  400.             "88dbc163876b9940",
  401.             "ec234b4c2c6ac997"
  402.         ],
  403.         "x": 185,
  404.         "y": 780,
  405.         "wires": [
  406.             [
  407.                 "f584c5871638c238"
  408.             ]
  409.         ]
  410.     },
  411.     {
  412.         "id": "f77bde811d3513b2",
  413.         "type": "switch",
  414.         "z": "98537bea.1dd4b8",
  415.         "name": "Messages",
  416.         "property": "payload.action",
  417.         "propertyType": "msg",
  418.         "rules": [
  419.             {
  420.                 "t": "eq",
  421.                 "v": "arrow_right_click",
  422.                 "vt": "str"
  423.             },
  424.             {
  425.                 "t": "eq",
  426.                 "v": "arrow_right_hold",
  427.                 "vt": "str"
  428.             },
  429.             {
  430.                 "t": "eq",
  431.                 "v": "arrow_right_release",
  432.                 "vt": "str"
  433.             },
  434.             {
  435.                 "t": "eq",
  436.                 "v": "arrow_left_click",
  437.                 "vt": "str"
  438.             },
  439.             {
  440.                 "t": "eq",
  441.                 "v": "arrow_left_hold",
  442.                 "vt": "str"
  443.             },
  444.             {
  445.                 "t": "eq",
  446.                 "v": "arrow_left_release",
  447.                 "vt": "str"
  448.             }
  449.         ],
  450.         "checkall": "true",
  451.         "repair": false,
  452.         "outputs": 6,
  453.         "x": 370,
  454.         "y": 1060,
  455.         "wires": [
  456.             [
  457.                 "69f647dd88c9c3e7"
  458.             ],
  459.             [
  460.                 "2860bb1b36d8e137",
  461.                 "3b579211e4193673"
  462.             ],
  463.             [
  464.                 "d1fe0f19ab2df11f"
  465.             ],
  466.             [
  467.                 "c3d7fd7c9b059963"
  468.             ],
  469.             [
  470.                 "3ab62d5d0fc69c27",
  471.                 "2860bb1b36d8e137"
  472.             ],
  473.             [
  474.                 "d1fe0f19ab2df11f"
  475.             ]
  476.         ]
  477.     },
  478.     {
  479.         "id": "787bcbc8a4615f34",
  480.         "type": "mqtt in",
  481.         "z": "98537bea.1dd4b8",
  482.         "name": "IKEA Button",
  483.         "topic": "/home/zigbee/Ikea-Button",
  484.         "qos": "1",
  485.         "datatype": "json",
  486.         "broker": "595dfa51.2c1224",
  487.         "inputs": 0,
  488.         "x": 170,
  489.         "y": 1060,
  490.         "wires": [
  491.             [
  492.                 "f77bde811d3513b2"
  493.             ]
  494.         ]
  495.     },
  496.     {
  497.         "id": "47d625f8e76bbf6c",
  498.         "type": "mqtt in",
  499.         "z": "98537bea.1dd4b8",
  500.         "name": "",
  501.         "topic": "/home/zigbee/Osram-Kueche",
  502.         "qos": "2",
  503.         "datatype": "auto",
  504.         "broker": "595dfa51.2c1224",
  505.         "nl": false,
  506.         "rap": false,
  507.         "inputs": 0,
  508.         "x": 200,
  509.         "y": 1620,
  510.         "wires": [
  511.             [
  512.                 "028c42e493ec4756"
  513.             ]
  514.         ]
  515.     },
  516.     {
  517.         "id": "30f17fecfd960cb4",
  518.         "type": "debug",
  519.         "z": "98537bea.1dd4b8",
  520.         "name": "",
  521.         "active": false,
  522.         "tosidebar": true,
  523.         "console": false,
  524.         "tostatus": false,
  525.         "complete": "false",
  526.         "statusVal": "",
  527.         "statusType": "auto",
  528.         "x": 910,
  529.         "y": 1640,
  530.         "wires": []
  531.     },
  532.     {
  533.         "id": "028c42e493ec4756",
  534.         "type": "json",
  535.         "z": "98537bea.1dd4b8",
  536.         "name": "",
  537.         "property": "payload",
  538.         "action": "",
  539.         "pretty": false,
  540.         "x": 430,
  541.         "y": 1620,
  542.         "wires": [
  543.             [
  544.                 "8dc5feb5120ad76c",
  545.                 "0f055ee4396e48d0"
  546.             ]
  547.         ]
  548.     },
  549.     {
  550.         "id": "8dc5feb5120ad76c",
  551.         "type": "function",
  552.         "z": "98537bea.1dd4b8",
  553.         "name": "",
  554.         "func": "var Knoten = \"Osram-Kueche\"\n\nvar brightness = msg.payload.brightness\nvar qual = msg.payload.linkquality\nvar state = msg.payload.state\n\nmsg.payload = [{\n    Room: Knoten,\n    Bright: brightness,\n    Qual: qual,\n    State: state\n}]\n\nvar newMsg1 = {payload:brightness};\nvar newMsg2 = {payload:state};\nvar newMsg3 = {payload:qual};\nvar newMsg4 = {payload:msg};\n\nnode.status({fill:\"blue\",shape:\"ring\",text:\"Brightness: \" + brightness + \", Qual: \" + qual + \"%, State: \" + state });\n\nreturn [newMsg1, newMsg2, newMsg3, newMsg4];",
  555.         "outputs": 4,
  556.         "noerr": 0,
  557.         "initialize": "",
  558.         "finalize": "",
  559.         "libs": [],
  560.         "x": 640,
  561.         "y": 1620,
  562.         "wires": [
  563.             [
  564.                 "53e238e062753512"
  565.             ],
  566.             [
  567.                 "8f9aaeb045867d4b",
  568.                 "d933792c7a1313d1"
  569.             ],
  570.             [
  571.                 "4d2e235f11be354a"
  572.             ],
  573.             [
  574.                 "30f17fecfd960cb4"
  575.             ]
  576.         ]
  577.     },
  578.     {
  579.         "id": "8f9aaeb045867d4b",
  580.         "type": "ui_led",
  581.         "z": "98537bea.1dd4b8",
  582.         "order": 3,
  583.         "group": "4097eeeffb6bf15d",
  584.         "width": "0",
  585.         "height": "0",
  586.         "label": "Ein / Aus LED",
  587.         "labelPlacement": "left",
  588.         "labelAlignment": "left",
  589.         "colorForValue": [
  590.             {
  591.                 "color": "#ff0000",
  592.                 "value": "OFF",
  593.                 "valueType": "str"
  594.             },
  595.             {
  596.                 "color": "#008000",
  597.                 "value": "ON",
  598.                 "valueType": "str"
  599.             }
  600.         ],
  601.         "allowColorForValueInMessage": false,
  602.         "shape": "circle",
  603.         "showGlow": true,
  604.         "name": "",
  605.         "x": 890,
  606.         "y": 1500,
  607.         "wires": []
  608.     },
  609.     {
  610.         "id": "4d2e235f11be354a",
  611.         "type": "ui_gauge",
  612.         "z": "98537bea.1dd4b8",
  613.         "name": "Link Quality",
  614.         "group": "4097eeeffb6bf15d",
  615.         "order": 4,
  616.         "width": "0",
  617.         "height": "0",
  618.         "gtype": "gage",
  619.         "title": "Link Quality",
  620.         "label": "%",
  621.         "format": "{{value}}",
  622.         "min": 0,
  623.         "max": "100",
  624.         "colors": [
  625.             "#ff0000",
  626.             "#e6e600",
  627.             "#00ff01"
  628.         ],
  629.         "seg1": "",
  630.         "seg2": "",
  631.         "x": 910,
  632.         "y": 1600,
  633.         "wires": []
  634.     },
  635.     {
  636.         "id": "d933792c7a1313d1",
  637.         "type": "ui_switch",
  638.         "z": "98537bea.1dd4b8",
  639.         "name": "",
  640.         "label": "Ein / Ausschalter",
  641.         "tooltip": "",
  642.         "group": "4097eeeffb6bf15d",
  643.         "order": 2,
  644.         "width": "0",
  645.         "height": "0",
  646.         "passthru": false,
  647.         "decouple": "true",
  648.         "topic": "/home/zigbee/IKEA-Schlazi/set",
  649.         "topicType": "str",
  650.         "style": "",
  651.         "onvalue": "ON",
  652.         "onvalueType": "str",
  653.         "onicon": "",
  654.         "oncolor": "",
  655.         "offvalue": "OFF",
  656.         "offvalueType": "str",
  657.         "officon": "",
  658.         "offcolor": "",
  659.         "animate": false,
  660.         "x": 930,
  661.         "y": 1540,
  662.         "wires": [
  663.             [
  664.                 "ec234b4c2c6ac997"
  665.             ]
  666.         ]
  667.     },
  668.     {
  669.         "id": "0f055ee4396e48d0",
  670.         "type": "debug",
  671.         "z": "98537bea.1dd4b8",
  672.         "name": "",
  673.         "active": false,
  674.         "tosidebar": true,
  675.         "console": false,
  676.         "tostatus": false,
  677.         "complete": "false",
  678.         "statusVal": "",
  679.         "statusType": "auto",
  680.         "x": 660,
  681.         "y": 1700,
  682.         "wires": []
  683.     },
  684.     {
  685.         "id": "53e238e062753512",
  686.         "type": "range",
  687.         "z": "98537bea.1dd4b8",
  688.         "minin": "2",
  689.         "maxin": "254",
  690.         "minout": "2",
  691.         "maxout": "100",
  692.         "action": "scale",
  693.         "round": true,
  694.         "property": "payload",
  695.         "name": "",
  696.         "x": 740,
  697.         "y": 1400,
  698.         "wires": [
  699.             [
  700.                 "3d26906748764bca"
  701.             ]
  702.         ]
  703.     },
  704.     {
  705.         "id": "3d26906748764bca",
  706.         "type": "ui_slider",
  707.         "z": "98537bea.1dd4b8",
  708.         "name": "Helligkeit",
  709.         "label": "Helligkeit",
  710.         "tooltip": "",
  711.         "group": "4097eeeffb6bf15d",
  712.         "order": 1,
  713.         "width": 0,
  714.         "height": 0,
  715.         "passthru": false,
  716.         "outs": "end",
  717.         "topic": "/home/zigbee/IKEA-Schlazi/set",
  718.         "topicType": "str",
  719.         "min": "1",
  720.         "max": "100",
  721.         "step": "2",
  722.         "x": 840,
  723.         "y": 1460,
  724.         "wires": [
  725.             [
  726.                 "c630d0195e3bb8c4"
  727.             ]
  728.         ]
  729.     },
  730.     {
  731.         "id": "4b9fcb6aac104767",
  732.         "type": "debug",
  733.         "z": "98537bea.1dd4b8",
  734.         "name": "",
  735.         "active": false,
  736.         "tosidebar": true,
  737.         "console": false,
  738.         "tostatus": false,
  739.         "complete": "payload",
  740.         "targetType": "msg",
  741.         "statusVal": "",
  742.         "statusType": "auto",
  743.         "x": 1170,
  744.         "y": 1400,
  745.         "wires": []
  746.     },
  747.     {
  748.         "id": "c630d0195e3bb8c4",
  749.         "type": "range",
  750.         "z": "98537bea.1dd4b8",
  751.         "minin": "1",
  752.         "maxin": "100",
  753.         "minout": "1",
  754.         "maxout": "255",
  755.         "action": "scale",
  756.         "round": true,
  757.         "property": "payload",
  758.         "name": "",
  759.         "x": 940,
  760.         "y": 1400,
  761.         "wires": [
  762.             [
  763.                 "4b9fcb6aac104767"
  764.             ]
  765.         ]
  766.     },
  767.     {
  768.         "id": "ec234b4c2c6ac997",
  769.         "type": "link out",
  770.         "z": "98537bea.1dd4b8",
  771.         "name": "",
  772.         "links": [
  773.             "08f4db8c8e3bf0c6"
  774.         ],
  775.         "x": 1135,
  776.         "y": 1540,
  777.         "wires": []
  778.     },
  779.     {
  780.         "id": "595dfa51.2c1224",
  781.         "type": "mqtt-broker",
  782.         "name": "",
  783.         "broker": "192.168.123.16",
  784.         "port": "1883",
  785.         "clientid": "",
  786.         "usetls": false,
  787.         "compatmode": true,
  788.         "keepalive": "60",
  789.         "cleansession": true,
  790.         "birthTopic": "",
  791.         "birthQos": "0",
  792.         "birthPayload": "",
  793.         "closeTopic": "",
  794.         "closePayload": "",
  795.         "willTopic": "",
  796.         "willQos": "0",
  797.         "willPayload": ""
  798.     },
  799.     {
  800.         "id": "4097eeeffb6bf15d",
  801.         "type": "ui_group",
  802.         "name": "Küche",
  803.         "tab": "67152ec1.2f63e",
  804.         "order": 6,
  805.         "disp": true,
  806.         "width": "5",
  807.         "collapse": false
  808.     },
  809.     {
  810.         "id": "67152ec1.2f63e",
  811.         "type": "ui_tab",
  812.         "name": "Licht",
  813.         "icon": "dashboard",
  814.         "order": 5,
  815.         "disabled": false,
  816.         "hidden": false
  817.     }
  818. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement