[{"data":1,"prerenderedAt":4731},["ShallowReactive",2],{"docs-\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fcommon\u002Flink\u002F":3,"featureCatalog":3270,"docs-nav":3675,"node-red-help-common-60-link-link":4729},{"id":4,"title":5,"body":6,"description":17,"editUrl":3258,"extension":3259,"layout":3260,"meta":3261,"metaTitle":3262,"navGroup":3260,"navGroupOrder":3260,"navOrder":3263,"navTitle":13,"navigation":3264,"originalPath":3260,"path":3265,"redirect":3260,"seo":3266,"stem":3267,"updated":3268,"version":3260,"__hash__":3269},"docs\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fcommon\u002Flink.md","Node-RED Link node",{"type":7,"value":8,"toc":3242},"minimark",[9,14,18,23,26,30,33,38,41,45,48,52,55,59,62,65,68,71,75,79,82,1480,1484,1487,3234,3239],[10,11,13],"h1",{"id":12},"link","Link",[15,16,17],"p",{},"Creates virtual connections between nodes without visible wires, helping organize complex flows.",[19,20,22],"h2",{"id":21},"where-and-why-do-we-use-the-link-nodes","Where and why do we use the Link nodes?",[15,24,25],{},"The Link In and Link Out nodes help organize flows by creating virtual connections that aren't visible until selected. This is essential for managing complex flows where physical wires would create visual clutter or when you want to reuse logic across multiple locations. By connecting distant parts of your flow without drawing wires across the canvas, you can keep related nodes grouped together, reduce wire crossings, and make flows more maintainable and easier to understand.",[19,27,29],{"id":28},"modes-of-operation","Modes of operation",[15,31,32],{},"Link nodes work in pairs to create virtual connections:",[34,35,37],"h3",{"id":36},"link-out-node","Link Out Node",[15,39,40],{},"Sends messages to one or more Link In nodes. You can configure which Link In nodes receive the message by selecting them from a list. The Link Out node can send to Link In nodes on the same tab or on different tabs, enabling cross-flow communication.",[34,42,44],{"id":43},"link-in-node","Link In Node",[15,46,47],{},"Receives messages from Link Out nodes. When a Link Out node sends a message, all connected Link In nodes receive a copy. The Link In node acts as a starting point for a new branch of your flow.",[34,49,51],{"id":50},"link-call-node","Link Call Node",[15,53,54],{},"Sends messages to a Link In node and waits for a response, similar to calling a function. This enables request-response patterns where you need to process data and return results. The response comes from a Link Out node configured to return to the calling Link Call node.",[19,56,58],{"id":57},"how-the-nodes-handle-messages","How the nodes handle messages",[15,60,61],{},"Link Out nodes pass messages to their connected Link In nodes exactly as received - no modifications are made. When multiple Link In nodes are connected to a single Link Out, each receives an independent copy of the message.",[15,63,64],{},"Link In nodes emit the received message and start a new flow branch. Any nodes connected to a Link In node process the message as if it came from any other node.",[15,66,67],{},"Link Call nodes send messages and pause, waiting for a response. The called Link In node processes the message through its connected nodes until reaching a Link Out node configured to return responses. This creates synchronous, function-like behavior within otherwise asynchronous flows.",[15,69,70],{},"The virtual connections between Link nodes only become visible in the editor when you select either the Link In or Link Out node, showing which nodes are connected with dashed lines.",[19,72,74],{"id":73},"examples","Examples",[34,76,78],{"id":77},"organizing-flow-sections","Organizing flow sections",[15,80,81],{},"Link nodes separate different functional areas of a flow without cluttering the canvas with long wires. This example shows input processing separated from output handling, making each section easier to understand and maintain.",[83,84,85],"render-flow",{},[86,87,92],"pre",{"className":88,"code":89,"language":90,"meta":91,"style":91},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","[{\"id\":\"22ca6ef9668b5ddd\",\"type\":\"group\",\"z\":\"f77f61b90395f588\",\"style\":{\"stroke\":\"#b2b3bd\",\"stroke-opacity\":\"1\",\"fill\":\"#f2f3fb\",\"fill-opacity\":\"0.5\",\"label\":true,\"label-position\":\"nw\",\"color\":\"#32333b\"},\"nodes\":[\"input-inject\",\"process-input\",\"link-out-process\",\"link-in-output\",\"format-output\",\"output-debug\"],\"x\":334,\"y\":5299,\"w\":792,\"h\":202},{\"id\":\"input-inject\",\"type\":\"inject\",\"z\":\"f77f61b90395f588\",\"g\":\"22ca6ef9668b5ddd\",\"name\":\"Sensor Data\",\"props\":[{\"p\":\"payload\"}],\"repeat\":\"\",\"crontab\":\"\",\"once\":false,\"onceDelay\":0.1,\"topic\":\"\",\"payload\":\"{\\\"temperature\\\":22,\\\"humidity\\\":65}\",\"payloadType\":\"json\",\"x\":450,\"y\":5340,\"wires\":[[\"process-input\"]]},{\"id\":\"process-input\",\"type\":\"function\",\"z\":\"f77f61b90395f588\",\"g\":\"22ca6ef9668b5ddd\",\"name\":\"Validate Input\",\"func\":\"if (\\n    msg.payload &&\\n    msg.payload.temperature !== undefined &&\\n    msg.payload.humidity !== undefined\\n) {\\n    return msg;\\n}\\nreturn null;\",\"outputs\":1,\"x\":760,\"y\":5340,\"wires\":[[\"link-out-process\"]]},{\"id\":\"link-out-process\",\"type\":\"link out\",\"z\":\"f77f61b90395f588\",\"g\":\"22ca6ef9668b5ddd\",\"name\":\"To Output Handler\",\"mode\":\"link\",\"links\":[\"link-in-output\"],\"x\":935,\"y\":5340,\"wires\":[]},{\"id\":\"link-in-output\",\"type\":\"link in\",\"z\":\"f77f61b90395f588\",\"g\":\"22ca6ef9668b5ddd\",\"name\":\"From Input Process\",\"links\":[\"link-out-process\"],\"x\":515,\"y\":5460,\"wires\":[[\"format-output\"]]},{\"id\":\"format-output\",\"type\":\"function\",\"z\":\"f77f61b90395f588\",\"g\":\"22ca6ef9668b5ddd\",\"name\":\"Format for Display\",\"func\":\"msg.payload = `Temp: ${msg.payload.temperature}°C, Humidity: ${msg.payload.humidity}%`;\\nreturn msg;\",\"outputs\":1,\"x\":770,\"y\":5460,\"wires\":[[\"output-debug\"]]},{\"id\":\"output-debug\",\"type\":\"debug\",\"z\":\"f77f61b90395f588\",\"g\":\"22ca6ef9668b5ddd\",\"name\":\"Display Output\",\"active\":true,\"tosidebar\":true,\"complete\":\"payload\",\"x\":1000,\"y\":5460,\"wires\":[]}]\n","json","",[93,94,95],"code",{"__ignoreMap":91},[96,97,100,104,107,111,113,116,118,122,124,127,129,132,134,136,138,141,143,145,147,150,152,154,156,159,161,163,165,168,170,173,175,179,181,183,185,188,190,192,194,197,199,201,203,206,208,210,212,215,217,219,221,224,226,228,230,233,235,237,239,242,244,246,248,251,253,256,258,261,263,265,267,270,272,274,276,279,281,283,285,288,290,293,295,298,300,303,305,308,310,312,314,317,319,321,323,326,328,330,332,335,337,339,341,344,346,348,350,353,355,358,360,363,365,367,371,373,375,378,380,382,385,387,389,392,394,396,399,401,403,406,408,410,413,416,418,420,422,424,426,428,430,432,434,436,438,440,442,445,447,449,451,453,455,457,459,461,463,465,467,470,472,474,476,478,480,482,484,487,489,491,493,496,498,500,502,505,507,510,512,514,516,518,520,523,525,528,530,533,535,537,540,542,544,547,549,551,553,555,557,560,562,565,567,570,572,574,577,579,581,584,586,588,590,592,594,596,598,600,602,605,609,612,614,617,619,622,624,627,629,631,633,636,638,640,642,644,646,648,650,652,654,656,659,661,663,665,667,669,672,674,676,679,681,684,686,688,690,693,695,697,699,701,703,705,707,709,711,713,715,717,719,722,724,726,728,730,732,734,736,738,740,742,744,746,748,750,752,754,756,758,760,762,764,766,768,771,773,775,777,780,782,784,786,789,792,795,797,800,802,805,807,810,812,815,817,820,822,825,827,829,831,834,836,838,840,842,844,846,848,850,853,855,857,859,861,863,865,867,869,871,873,875,877,879,881,883,885,887,889,891,893,895,897,899,901,903,905,907,909,912,914,916,918,920,922,924,926,928,930,932,934,936,938,940,942,944,946,948,950,952,954,956,958,961,963,965,967,970,972,974,976,978,980,982,984,987,989,991,993,995,997,999,1001,1003,1005,1007,1010,1012,1014,1016,1018,1020,1022,1024,1026,1028,1030,1033,1035,1037,1039,1041,1043,1045,1047,1049,1051,1053,1055,1057,1059,1062,1064,1066,1068,1070,1072,1074,1076,1078,1080,1082,1084,1086,1088,1090,1092,1094,1096,1098,1100,1102,1104,1106,1108,1111,1113,1115,1117,1119,1121,1123,1125,1127,1129,1131,1133,1135,1137,1139,1142,1144,1146,1148,1150,1152,1155,1157,1159,1161,1163,1165,1167,1169,1171,1173,1175,1177,1179,1181,1183,1185,1187,1189,1191,1193,1195,1197,1199,1201,1203,1205,1207,1209,1211,1213,1215,1217,1219,1221,1223,1225,1227,1229,1231,1233,1235,1237,1239,1241,1243,1245,1247,1250,1252,1254,1256,1258,1260,1262,1264,1267,1269,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292,1294,1296,1299,1301,1303,1305,1307,1309,1311,1313,1315,1317,1319,1321,1323,1325,1327,1329,1331,1333,1335,1337,1339,1341,1343,1345,1347,1349,1351,1353,1355,1358,1360,1362,1364,1366,1368,1370,1372,1374,1376,1378,1380,1382,1384,1386,1388,1390,1392,1394,1396,1398,1400,1402,1404,1407,1409,1411,1413,1416,1418,1420,1422,1425,1427,1429,1431,1434,1436,1438,1440,1442,1444,1446,1448,1450,1452,1454,1457,1459,1461,1463,1465,1467,1469,1471,1473,1475,1477],"span",{"class":98,"line":99},"line",1,[96,101,103],{"class":102},"sMK4o","[{",[96,105,106],{"class":102},"\"",[96,108,110],{"class":109},"spNyl","id",[96,112,106],{"class":102},[96,114,115],{"class":102},":",[96,117,106],{"class":102},[96,119,121],{"class":120},"sfazB","22ca6ef9668b5ddd",[96,123,106],{"class":102},[96,125,126],{"class":102},",",[96,128,106],{"class":102},[96,130,131],{"class":109},"type",[96,133,106],{"class":102},[96,135,115],{"class":102},[96,137,106],{"class":102},[96,139,140],{"class":120},"group",[96,142,106],{"class":102},[96,144,126],{"class":102},[96,146,106],{"class":102},[96,148,149],{"class":109},"z",[96,151,106],{"class":102},[96,153,115],{"class":102},[96,155,106],{"class":102},[96,157,158],{"class":120},"f77f61b90395f588",[96,160,106],{"class":102},[96,162,126],{"class":102},[96,164,106],{"class":102},[96,166,167],{"class":109},"style",[96,169,106],{"class":102},[96,171,172],{"class":102},":{",[96,174,106],{"class":102},[96,176,178],{"class":177},"sBMFI","stroke",[96,180,106],{"class":102},[96,182,115],{"class":102},[96,184,106],{"class":102},[96,186,187],{"class":120},"#b2b3bd",[96,189,106],{"class":102},[96,191,126],{"class":102},[96,193,106],{"class":102},[96,195,196],{"class":177},"stroke-opacity",[96,198,106],{"class":102},[96,200,115],{"class":102},[96,202,106],{"class":102},[96,204,205],{"class":120},"1",[96,207,106],{"class":102},[96,209,126],{"class":102},[96,211,106],{"class":102},[96,213,214],{"class":177},"fill",[96,216,106],{"class":102},[96,218,115],{"class":102},[96,220,106],{"class":102},[96,222,223],{"class":120},"#f2f3fb",[96,225,106],{"class":102},[96,227,126],{"class":102},[96,229,106],{"class":102},[96,231,232],{"class":177},"fill-opacity",[96,234,106],{"class":102},[96,236,115],{"class":102},[96,238,106],{"class":102},[96,240,241],{"class":120},"0.5",[96,243,106],{"class":102},[96,245,126],{"class":102},[96,247,106],{"class":102},[96,249,250],{"class":177},"label",[96,252,106],{"class":102},[96,254,255],{"class":102},":true,",[96,257,106],{"class":102},[96,259,260],{"class":177},"label-position",[96,262,106],{"class":102},[96,264,115],{"class":102},[96,266,106],{"class":102},[96,268,269],{"class":120},"nw",[96,271,106],{"class":102},[96,273,126],{"class":102},[96,275,106],{"class":102},[96,277,278],{"class":177},"color",[96,280,106],{"class":102},[96,282,115],{"class":102},[96,284,106],{"class":102},[96,286,287],{"class":120},"#32333b",[96,289,106],{"class":102},[96,291,292],{"class":102},"},",[96,294,106],{"class":102},[96,296,297],{"class":109},"nodes",[96,299,106],{"class":102},[96,301,302],{"class":102},":[",[96,304,106],{"class":102},[96,306,307],{"class":120},"input-inject",[96,309,106],{"class":102},[96,311,126],{"class":102},[96,313,106],{"class":102},[96,315,316],{"class":120},"process-input",[96,318,106],{"class":102},[96,320,126],{"class":102},[96,322,106],{"class":102},[96,324,325],{"class":120},"link-out-process",[96,327,106],{"class":102},[96,329,126],{"class":102},[96,331,106],{"class":102},[96,333,334],{"class":120},"link-in-output",[96,336,106],{"class":102},[96,338,126],{"class":102},[96,340,106],{"class":102},[96,342,343],{"class":120},"format-output",[96,345,106],{"class":102},[96,347,126],{"class":102},[96,349,106],{"class":102},[96,351,352],{"class":120},"output-debug",[96,354,106],{"class":102},[96,356,357],{"class":102},"],",[96,359,106],{"class":102},[96,361,362],{"class":109},"x",[96,364,106],{"class":102},[96,366,115],{"class":102},[96,368,370],{"class":369},"sbssI","334",[96,372,126],{"class":102},[96,374,106],{"class":102},[96,376,377],{"class":109},"y",[96,379,106],{"class":102},[96,381,115],{"class":102},[96,383,384],{"class":369},"5299",[96,386,126],{"class":102},[96,388,106],{"class":102},[96,390,391],{"class":109},"w",[96,393,106],{"class":102},[96,395,115],{"class":102},[96,397,398],{"class":369},"792",[96,400,126],{"class":102},[96,402,106],{"class":102},[96,404,405],{"class":109},"h",[96,407,106],{"class":102},[96,409,115],{"class":102},[96,411,412],{"class":369},"202",[96,414,415],{"class":102},"},{",[96,417,106],{"class":102},[96,419,110],{"class":109},[96,421,106],{"class":102},[96,423,115],{"class":102},[96,425,106],{"class":102},[96,427,307],{"class":120},[96,429,106],{"class":102},[96,431,126],{"class":102},[96,433,106],{"class":102},[96,435,131],{"class":109},[96,437,106],{"class":102},[96,439,115],{"class":102},[96,441,106],{"class":102},[96,443,444],{"class":120},"inject",[96,446,106],{"class":102},[96,448,126],{"class":102},[96,450,106],{"class":102},[96,452,149],{"class":109},[96,454,106],{"class":102},[96,456,115],{"class":102},[96,458,106],{"class":102},[96,460,158],{"class":120},[96,462,106],{"class":102},[96,464,126],{"class":102},[96,466,106],{"class":102},[96,468,469],{"class":109},"g",[96,471,106],{"class":102},[96,473,115],{"class":102},[96,475,106],{"class":102},[96,477,121],{"class":120},[96,479,106],{"class":102},[96,481,126],{"class":102},[96,483,106],{"class":102},[96,485,486],{"class":109},"name",[96,488,106],{"class":102},[96,490,115],{"class":102},[96,492,106],{"class":102},[96,494,495],{"class":120},"Sensor Data",[96,497,106],{"class":102},[96,499,126],{"class":102},[96,501,106],{"class":102},[96,503,504],{"class":109},"props",[96,506,106],{"class":102},[96,508,509],{"class":102},":[{",[96,511,106],{"class":102},[96,513,15],{"class":177},[96,515,106],{"class":102},[96,517,115],{"class":102},[96,519,106],{"class":102},[96,521,522],{"class":120},"payload",[96,524,106],{"class":102},[96,526,527],{"class":102},"}],",[96,529,106],{"class":102},[96,531,532],{"class":109},"repeat",[96,534,106],{"class":102},[96,536,115],{"class":102},[96,538,539],{"class":102},"\"\"",[96,541,126],{"class":102},[96,543,106],{"class":102},[96,545,546],{"class":109},"crontab",[96,548,106],{"class":102},[96,550,115],{"class":102},[96,552,539],{"class":102},[96,554,126],{"class":102},[96,556,106],{"class":102},[96,558,559],{"class":109},"once",[96,561,106],{"class":102},[96,563,564],{"class":102},":false,",[96,566,106],{"class":102},[96,568,569],{"class":109},"onceDelay",[96,571,106],{"class":102},[96,573,115],{"class":102},[96,575,576],{"class":369},"0.1",[96,578,126],{"class":102},[96,580,106],{"class":102},[96,582,583],{"class":109},"topic",[96,585,106],{"class":102},[96,587,115],{"class":102},[96,589,539],{"class":102},[96,591,126],{"class":102},[96,593,106],{"class":102},[96,595,522],{"class":109},[96,597,106],{"class":102},[96,599,115],{"class":102},[96,601,106],{"class":102},[96,603,604],{"class":120},"{",[96,606,608],{"class":607},"sTEyZ","\\\"",[96,610,611],{"class":120},"temperature",[96,613,608],{"class":607},[96,615,616],{"class":120},":22,",[96,618,608],{"class":607},[96,620,621],{"class":120},"humidity",[96,623,608],{"class":607},[96,625,626],{"class":120},":65}",[96,628,106],{"class":102},[96,630,126],{"class":102},[96,632,106],{"class":102},[96,634,635],{"class":109},"payloadType",[96,637,106],{"class":102},[96,639,115],{"class":102},[96,641,106],{"class":102},[96,643,90],{"class":120},[96,645,106],{"class":102},[96,647,126],{"class":102},[96,649,106],{"class":102},[96,651,362],{"class":109},[96,653,106],{"class":102},[96,655,115],{"class":102},[96,657,658],{"class":369},"450",[96,660,126],{"class":102},[96,662,106],{"class":102},[96,664,377],{"class":109},[96,666,106],{"class":102},[96,668,115],{"class":102},[96,670,671],{"class":369},"5340",[96,673,126],{"class":102},[96,675,106],{"class":102},[96,677,678],{"class":109},"wires",[96,680,106],{"class":102},[96,682,683],{"class":102},":[[",[96,685,106],{"class":102},[96,687,316],{"class":120},[96,689,106],{"class":102},[96,691,692],{"class":102},"]]},{",[96,694,106],{"class":102},[96,696,110],{"class":109},[96,698,106],{"class":102},[96,700,115],{"class":102},[96,702,106],{"class":102},[96,704,316],{"class":120},[96,706,106],{"class":102},[96,708,126],{"class":102},[96,710,106],{"class":102},[96,712,131],{"class":109},[96,714,106],{"class":102},[96,716,115],{"class":102},[96,718,106],{"class":102},[96,720,721],{"class":120},"function",[96,723,106],{"class":102},[96,725,126],{"class":102},[96,727,106],{"class":102},[96,729,149],{"class":109},[96,731,106],{"class":102},[96,733,115],{"class":102},[96,735,106],{"class":102},[96,737,158],{"class":120},[96,739,106],{"class":102},[96,741,126],{"class":102},[96,743,106],{"class":102},[96,745,469],{"class":109},[96,747,106],{"class":102},[96,749,115],{"class":102},[96,751,106],{"class":102},[96,753,121],{"class":120},[96,755,106],{"class":102},[96,757,126],{"class":102},[96,759,106],{"class":102},[96,761,486],{"class":109},[96,763,106],{"class":102},[96,765,115],{"class":102},[96,767,106],{"class":102},[96,769,770],{"class":120},"Validate Input",[96,772,106],{"class":102},[96,774,126],{"class":102},[96,776,106],{"class":102},[96,778,779],{"class":109},"func",[96,781,106],{"class":102},[96,783,115],{"class":102},[96,785,106],{"class":102},[96,787,788],{"class":120},"if (",[96,790,791],{"class":607},"\\n",[96,793,794],{"class":120},"    msg.payload &&",[96,796,791],{"class":607},[96,798,799],{"class":120},"    msg.payload.temperature !== undefined &&",[96,801,791],{"class":607},[96,803,804],{"class":120},"    msg.payload.humidity !== undefined",[96,806,791],{"class":607},[96,808,809],{"class":120},") {",[96,811,791],{"class":607},[96,813,814],{"class":120},"    return msg;",[96,816,791],{"class":607},[96,818,819],{"class":120},"}",[96,821,791],{"class":607},[96,823,824],{"class":120},"return null;",[96,826,106],{"class":102},[96,828,126],{"class":102},[96,830,106],{"class":102},[96,832,833],{"class":109},"outputs",[96,835,106],{"class":102},[96,837,115],{"class":102},[96,839,205],{"class":369},[96,841,126],{"class":102},[96,843,106],{"class":102},[96,845,362],{"class":109},[96,847,106],{"class":102},[96,849,115],{"class":102},[96,851,852],{"class":369},"760",[96,854,126],{"class":102},[96,856,106],{"class":102},[96,858,377],{"class":109},[96,860,106],{"class":102},[96,862,115],{"class":102},[96,864,671],{"class":369},[96,866,126],{"class":102},[96,868,106],{"class":102},[96,870,678],{"class":109},[96,872,106],{"class":102},[96,874,683],{"class":102},[96,876,106],{"class":102},[96,878,325],{"class":120},[96,880,106],{"class":102},[96,882,692],{"class":102},[96,884,106],{"class":102},[96,886,110],{"class":109},[96,888,106],{"class":102},[96,890,115],{"class":102},[96,892,106],{"class":102},[96,894,325],{"class":120},[96,896,106],{"class":102},[96,898,126],{"class":102},[96,900,106],{"class":102},[96,902,131],{"class":109},[96,904,106],{"class":102},[96,906,115],{"class":102},[96,908,106],{"class":102},[96,910,911],{"class":120},"link out",[96,913,106],{"class":102},[96,915,126],{"class":102},[96,917,106],{"class":102},[96,919,149],{"class":109},[96,921,106],{"class":102},[96,923,115],{"class":102},[96,925,106],{"class":102},[96,927,158],{"class":120},[96,929,106],{"class":102},[96,931,126],{"class":102},[96,933,106],{"class":102},[96,935,469],{"class":109},[96,937,106],{"class":102},[96,939,115],{"class":102},[96,941,106],{"class":102},[96,943,121],{"class":120},[96,945,106],{"class":102},[96,947,126],{"class":102},[96,949,106],{"class":102},[96,951,486],{"class":109},[96,953,106],{"class":102},[96,955,115],{"class":102},[96,957,106],{"class":102},[96,959,960],{"class":120},"To Output Handler",[96,962,106],{"class":102},[96,964,126],{"class":102},[96,966,106],{"class":102},[96,968,969],{"class":109},"mode",[96,971,106],{"class":102},[96,973,115],{"class":102},[96,975,106],{"class":102},[96,977,12],{"class":120},[96,979,106],{"class":102},[96,981,126],{"class":102},[96,983,106],{"class":102},[96,985,986],{"class":109},"links",[96,988,106],{"class":102},[96,990,302],{"class":102},[96,992,106],{"class":102},[96,994,334],{"class":120},[96,996,106],{"class":102},[96,998,357],{"class":102},[96,1000,106],{"class":102},[96,1002,362],{"class":109},[96,1004,106],{"class":102},[96,1006,115],{"class":102},[96,1008,1009],{"class":369},"935",[96,1011,126],{"class":102},[96,1013,106],{"class":102},[96,1015,377],{"class":109},[96,1017,106],{"class":102},[96,1019,115],{"class":102},[96,1021,671],{"class":369},[96,1023,126],{"class":102},[96,1025,106],{"class":102},[96,1027,678],{"class":109},[96,1029,106],{"class":102},[96,1031,1032],{"class":102},":[]},{",[96,1034,106],{"class":102},[96,1036,110],{"class":109},[96,1038,106],{"class":102},[96,1040,115],{"class":102},[96,1042,106],{"class":102},[96,1044,334],{"class":120},[96,1046,106],{"class":102},[96,1048,126],{"class":102},[96,1050,106],{"class":102},[96,1052,131],{"class":109},[96,1054,106],{"class":102},[96,1056,115],{"class":102},[96,1058,106],{"class":102},[96,1060,1061],{"class":120},"link in",[96,1063,106],{"class":102},[96,1065,126],{"class":102},[96,1067,106],{"class":102},[96,1069,149],{"class":109},[96,1071,106],{"class":102},[96,1073,115],{"class":102},[96,1075,106],{"class":102},[96,1077,158],{"class":120},[96,1079,106],{"class":102},[96,1081,126],{"class":102},[96,1083,106],{"class":102},[96,1085,469],{"class":109},[96,1087,106],{"class":102},[96,1089,115],{"class":102},[96,1091,106],{"class":102},[96,1093,121],{"class":120},[96,1095,106],{"class":102},[96,1097,126],{"class":102},[96,1099,106],{"class":102},[96,1101,486],{"class":109},[96,1103,106],{"class":102},[96,1105,115],{"class":102},[96,1107,106],{"class":102},[96,1109,1110],{"class":120},"From Input Process",[96,1112,106],{"class":102},[96,1114,126],{"class":102},[96,1116,106],{"class":102},[96,1118,986],{"class":109},[96,1120,106],{"class":102},[96,1122,302],{"class":102},[96,1124,106],{"class":102},[96,1126,325],{"class":120},[96,1128,106],{"class":102},[96,1130,357],{"class":102},[96,1132,106],{"class":102},[96,1134,362],{"class":109},[96,1136,106],{"class":102},[96,1138,115],{"class":102},[96,1140,1141],{"class":369},"515",[96,1143,126],{"class":102},[96,1145,106],{"class":102},[96,1147,377],{"class":109},[96,1149,106],{"class":102},[96,1151,115],{"class":102},[96,1153,1154],{"class":369},"5460",[96,1156,126],{"class":102},[96,1158,106],{"class":102},[96,1160,678],{"class":109},[96,1162,106],{"class":102},[96,1164,683],{"class":102},[96,1166,106],{"class":102},[96,1168,343],{"class":120},[96,1170,106],{"class":102},[96,1172,692],{"class":102},[96,1174,106],{"class":102},[96,1176,110],{"class":109},[96,1178,106],{"class":102},[96,1180,115],{"class":102},[96,1182,106],{"class":102},[96,1184,343],{"class":120},[96,1186,106],{"class":102},[96,1188,126],{"class":102},[96,1190,106],{"class":102},[96,1192,131],{"class":109},[96,1194,106],{"class":102},[96,1196,115],{"class":102},[96,1198,106],{"class":102},[96,1200,721],{"class":120},[96,1202,106],{"class":102},[96,1204,126],{"class":102},[96,1206,106],{"class":102},[96,1208,149],{"class":109},[96,1210,106],{"class":102},[96,1212,115],{"class":102},[96,1214,106],{"class":102},[96,1216,158],{"class":120},[96,1218,106],{"class":102},[96,1220,126],{"class":102},[96,1222,106],{"class":102},[96,1224,469],{"class":109},[96,1226,106],{"class":102},[96,1228,115],{"class":102},[96,1230,106],{"class":102},[96,1232,121],{"class":120},[96,1234,106],{"class":102},[96,1236,126],{"class":102},[96,1238,106],{"class":102},[96,1240,486],{"class":109},[96,1242,106],{"class":102},[96,1244,115],{"class":102},[96,1246,106],{"class":102},[96,1248,1249],{"class":120},"Format for Display",[96,1251,106],{"class":102},[96,1253,126],{"class":102},[96,1255,106],{"class":102},[96,1257,779],{"class":109},[96,1259,106],{"class":102},[96,1261,115],{"class":102},[96,1263,106],{"class":102},[96,1265,1266],{"class":120},"msg.payload = `Temp: ${msg.payload.temperature}°C, Humidity: ${msg.payload.humidity}%`;",[96,1268,791],{"class":607},[96,1270,1271],{"class":120},"return msg;",[96,1273,106],{"class":102},[96,1275,126],{"class":102},[96,1277,106],{"class":102},[96,1279,833],{"class":109},[96,1281,106],{"class":102},[96,1283,115],{"class":102},[96,1285,205],{"class":369},[96,1287,126],{"class":102},[96,1289,106],{"class":102},[96,1291,362],{"class":109},[96,1293,106],{"class":102},[96,1295,115],{"class":102},[96,1297,1298],{"class":369},"770",[96,1300,126],{"class":102},[96,1302,106],{"class":102},[96,1304,377],{"class":109},[96,1306,106],{"class":102},[96,1308,115],{"class":102},[96,1310,1154],{"class":369},[96,1312,126],{"class":102},[96,1314,106],{"class":102},[96,1316,678],{"class":109},[96,1318,106],{"class":102},[96,1320,683],{"class":102},[96,1322,106],{"class":102},[96,1324,352],{"class":120},[96,1326,106],{"class":102},[96,1328,692],{"class":102},[96,1330,106],{"class":102},[96,1332,110],{"class":109},[96,1334,106],{"class":102},[96,1336,115],{"class":102},[96,1338,106],{"class":102},[96,1340,352],{"class":120},[96,1342,106],{"class":102},[96,1344,126],{"class":102},[96,1346,106],{"class":102},[96,1348,131],{"class":109},[96,1350,106],{"class":102},[96,1352,115],{"class":102},[96,1354,106],{"class":102},[96,1356,1357],{"class":120},"debug",[96,1359,106],{"class":102},[96,1361,126],{"class":102},[96,1363,106],{"class":102},[96,1365,149],{"class":109},[96,1367,106],{"class":102},[96,1369,115],{"class":102},[96,1371,106],{"class":102},[96,1373,158],{"class":120},[96,1375,106],{"class":102},[96,1377,126],{"class":102},[96,1379,106],{"class":102},[96,1381,469],{"class":109},[96,1383,106],{"class":102},[96,1385,115],{"class":102},[96,1387,106],{"class":102},[96,1389,121],{"class":120},[96,1391,106],{"class":102},[96,1393,126],{"class":102},[96,1395,106],{"class":102},[96,1397,486],{"class":109},[96,1399,106],{"class":102},[96,1401,115],{"class":102},[96,1403,106],{"class":102},[96,1405,1406],{"class":120},"Display Output",[96,1408,106],{"class":102},[96,1410,126],{"class":102},[96,1412,106],{"class":102},[96,1414,1415],{"class":109},"active",[96,1417,106],{"class":102},[96,1419,255],{"class":102},[96,1421,106],{"class":102},[96,1423,1424],{"class":109},"tosidebar",[96,1426,106],{"class":102},[96,1428,255],{"class":102},[96,1430,106],{"class":102},[96,1432,1433],{"class":109},"complete",[96,1435,106],{"class":102},[96,1437,115],{"class":102},[96,1439,106],{"class":102},[96,1441,522],{"class":120},[96,1443,106],{"class":102},[96,1445,126],{"class":102},[96,1447,106],{"class":102},[96,1449,362],{"class":109},[96,1451,106],{"class":102},[96,1453,115],{"class":102},[96,1455,1456],{"class":369},"1000",[96,1458,126],{"class":102},[96,1460,106],{"class":102},[96,1462,377],{"class":109},[96,1464,106],{"class":102},[96,1466,115],{"class":102},[96,1468,1154],{"class":369},[96,1470,126],{"class":102},[96,1472,106],{"class":102},[96,1474,678],{"class":109},[96,1476,106],{"class":102},[96,1478,1479],{"class":102},":[]}]\n",[34,1481,1483],{"id":1482},"reusable-processing-logic","Reusable processing logic",[15,1485,1486],{},"Link In nodes enable reusing the same processing logic from multiple sources without duplicating nodes. This example shows multiple inputs feeding into a single processing pipeline through Link nodes, useful for common transformations or validations.",[83,1488,1489],{},[86,1490,1492],{"className":88,"code":1491,"language":90,"meta":91,"style":91},"[{\"id\":\"source1-inject\",\"type\":\"inject\",\"z\":\"a1b2c3d4e5f6g7h8\",\"name\":\"Source 1\",\"props\":[{\"p\":\"payload\"},{\"p\":\"source\",\"v\":\"sensor-1\",\"vt\":\"str\"}],\"repeat\":\"\",\"crontab\":\"\",\"once\":false,\"onceDelay\":0.1,\"topic\":\"\",\"payload\":\"25\",\"payloadType\":\"num\",\"x\":180,\"y\":140,\"wires\":[[\"link-out-1\"]]},{\"id\":\"source2-inject\",\"type\":\"inject\",\"z\":\"a1b2c3d4e5f6g7h8\",\"name\":\"Source 2\",\"props\":[{\"p\":\"payload\"},{\"p\":\"source\",\"v\":\"sensor-2\",\"vt\":\"str\"}],\"repeat\":\"\",\"crontab\":\"\",\"once\":false,\"onceDelay\":0.1,\"topic\":\"\",\"payload\":\"30\",\"payloadType\":\"num\",\"x\":180,\"y\":200,\"wires\":[[\"link-out-2\"]]},{\"id\":\"source3-inject\",\"type\":\"inject\",\"z\":\"a1b2c3d4e5f6g7h8\",\"name\":\"Source 3\",\"props\":[{\"p\":\"payload\"},{\"p\":\"source\",\"v\":\"sensor-3\",\"vt\":\"str\"}],\"repeat\":\"\",\"crontab\":\"\",\"once\":false,\"onceDelay\":0.1,\"topic\":\"\",\"payload\":\"28\",\"payloadType\":\"num\",\"x\":180,\"y\":260,\"wires\":[[\"link-out-3\"]]},{\"id\":\"link-out-1\",\"type\":\"link out\",\"z\":\"a1b2c3d4e5f6g7h8\",\"name\":\"\",\"mode\":\"link\",\"links\":[\"link-in-process\"],\"x\":335,\"y\":140,\"wires\":[]},{\"id\":\"link-out-2\",\"type\":\"link out\",\"z\":\"a1b2c3d4e5f6g7h8\",\"name\":\"\",\"mode\":\"link\",\"links\":[\"link-in-process\"],\"x\":335,\"y\":200,\"wires\":[]},{\"id\":\"link-out-3\",\"type\":\"link out\",\"z\":\"a1b2c3d4e5f6g7h8\",\"name\":\"\",\"mode\":\"link\",\"links\":[\"link-in-process\"],\"x\":335,\"y\":260,\"wires\":[]},{\"id\":\"link-in-process\",\"type\":\"link in\",\"z\":\"a1b2c3d4e5f6g7h8\",\"name\":\"Common Processor\",\"links\":[\"link-out-1\",\"link-out-2\",\"link-out-3\"],\"x\":195,\"y\":380,\"wires\":[[\"process-data\"]]},{\"id\":\"process-data\",\"type\":\"function\",\"z\":\"a1b2c3d4e5f6g7h8\",\"name\":\"Convert to Fahrenheit\",\"func\":\"msg.payload = (msg.payload * 9\u002F5) + 32;\\nmsg.payload = `${msg.source}: ${msg.payload.toFixed(1)}°F`;\\nreturn msg;\",\"outputs\":1,\"timeout\":0,\"noerr\":0,\"initialize\":\"\",\"finalize\":\"\",\"libs\":[],\"x\":400,\"y\":380,\"wires\":[[\"result-debug\"]]},{\"id\":\"result-debug\",\"type\":\"debug\",\"z\":\"a1b2c3d4e5f6g7h8\",\"name\":\"Processed Results\",\"active\":true,\"tosidebar\":true,\"console\":false,\"tostatus\":false,\"complete\":\"payload\",\"targetType\":\"msg\",\"statusVal\":\"\",\"statusType\":\"auto\",\"x\":620,\"y\":380,\"wires\":[]}]\n",[93,1493,1494],{"__ignoreMap":91},[96,1495,1496,1498,1500,1502,1504,1506,1508,1511,1513,1515,1517,1519,1521,1523,1525,1527,1529,1531,1533,1535,1537,1539,1541,1544,1546,1548,1550,1552,1554,1556,1558,1561,1563,1565,1567,1569,1571,1573,1575,1577,1579,1581,1583,1585,1587,1589,1591,1593,1595,1597,1599,1602,1604,1606,1608,1611,1613,1615,1617,1620,1622,1624,1626,1629,1631,1633,1635,1638,1640,1642,1644,1646,1648,1650,1652,1654,1656,1658,1660,1662,1664,1666,1668,1670,1672,1674,1676,1678,1680,1682,1684,1686,1688,1690,1692,1694,1696,1698,1700,1702,1704,1706,1708,1711,1713,1715,1717,1719,1721,1723,1725,1728,1730,1732,1734,1736,1738,1740,1743,1745,1747,1749,1751,1753,1756,1758,1760,1762,1764,1766,1768,1771,1773,1775,1777,1779,1781,1783,1785,1788,1790,1792,1794,1796,1798,1800,1802,1804,1806,1808,1810,1812,1814,1816,1818,1820,1822,1824,1826,1828,1830,1832,1834,1837,1839,1841,1843,1845,1847,1849,1851,1853,1855,1857,1859,1861,1863,1865,1867,1869,1871,1873,1875,1877,1879,1881,1883,1885,1887,1889,1891,1894,1896,1898,1900,1902,1904,1906,1908,1910,1912,1914,1916,1918,1920,1922,1924,1926,1928,1930,1932,1934,1936,1938,1940,1942,1944,1946,1948,1950,1952,1954,1956,1958,1960,1962,1964,1966,1968,1970,1972,1974,1976,1978,1980,1983,1985,1987,1989,1991,1993,1995,1997,1999,2001,2003,2005,2007,2009,2011,2013,2015,2017,2019,2021,2023,2026,2028,2030,2032,2034,2036,2038,2041,2043,2045,2047,2049,2051,2053,2055,2058,2060,2062,2064,2066,2068,2070,2072,2074,2076,2078,2080,2082,2084,2086,2088,2090,2092,2094,2096,2098,2100,2102,2104,2107,2109,2111,2113,2115,2117,2119,2121,2123,2125,2127,2129,2131,2133,2135,2137,2139,2141,2143,2145,2147,2149,2151,2153,2155,2157,2159,2161,2164,2166,2168,2170,2172,2174,2176,2178,2180,2182,2184,2186,2188,2190,2192,2194,2196,2198,2200,2202,2204,2206,2208,2210,2212,2214,2216,2218,2220,2222,2224,2226,2228,2230,2232,2234,2236,2238,2240,2242,2244,2246,2248,2250,2253,2255,2257,2259,2261,2263,2265,2267,2269,2271,2273,2275,2277,2279,2281,2283,2285,2287,2289,2291,2293,2296,2298,2300,2302,2304,2306,2308,2311,2313,2315,2317,2319,2321,2323,2325,2327,2329,2331,2333,2335,2337,2339,2341,2343,2345,2347,2349,2351,2353,2355,2357,2359,2361,2363,2365,2367,2369,2371,2373,2375,2377,2379,2381,2383,2385,2387,2389,2391,2393,2395,2397,2399,2401,2404,2406,2408,2410,2412,2414,2416,2419,2421,2423,2425,2427,2429,2431,2433,2435,2437,2439,2441,2443,2445,2447,2449,2451,2453,2455,2457,2459,2461,2463,2465,2467,2469,2471,2473,2475,2477,2479,2481,2483,2485,2487,2489,2491,2493,2495,2497,2499,2501,2503,2505,2507,2509,2511,2513,2515,2517,2519,2521,2523,2525,2527,2529,2531,2533,2535,2537,2539,2541,2543,2545,2547,2549,2551,2553,2555,2557,2559,2561,2563,2565,2567,2569,2571,2573,2575,2577,2579,2581,2583,2585,2587,2589,2591,2593,2595,2597,2599,2601,2603,2605,2607,2609,2611,2613,2615,2617,2619,2621,2623,2625,2627,2629,2631,2633,2635,2637,2639,2641,2643,2645,2647,2649,2651,2653,2655,2657,2659,2661,2663,2665,2667,2669,2671,2673,2675,2677,2679,2681,2683,2685,2687,2689,2691,2693,2695,2697,2699,2701,2703,2705,2707,2709,2711,2713,2715,2717,2719,2721,2723,2725,2727,2729,2731,2733,2735,2737,2739,2741,2743,2745,2747,2750,2752,2754,2756,2758,2760,2762,2764,2766,2768,2770,2772,2774,2776,2778,2780,2782,2784,2786,2788,2790,2792,2794,2797,2799,2801,2803,2805,2807,2810,2812,2814,2816,2818,2820,2822,2825,2827,2829,2831,2833,2835,2837,2839,2841,2843,2845,2847,2849,2851,2853,2855,2857,2859,2861,2863,2865,2867,2869,2871,2873,2875,2877,2879,2881,2883,2885,2887,2890,2892,2894,2896,2898,2900,2902,2904,2907,2909,2912,2914,2916,2918,2920,2922,2924,2926,2928,2930,2932,2934,2937,2939,2941,2944,2946,2948,2951,2953,2955,2957,2959,2961,2964,2966,2968,2970,2972,2974,2977,2979,2981,2983,2985,2987,2990,2992,2995,2997,2999,3001,3003,3006,3008,3010,3012,3014,3016,3018,3020,3022,3024,3026,3028,3030,3033,3035,3037,3039,3041,3043,3045,3047,3049,3051,3053,3055,3057,3059,3061,3063,3065,3067,3069,3071,3073,3075,3077,3079,3081,3083,3085,3087,3089,3091,3093,3095,3098,3100,3102,3104,3106,3108,3110,3112,3114,3116,3118,3120,3123,3125,3127,3129,3132,3134,3136,3138,3140,3142,3144,3146,3148,3150,3152,3154,3157,3159,3161,3163,3166,3168,3170,3172,3175,3177,3179,3181,3183,3185,3188,3190,3192,3194,3197,3199,3201,3203,3205,3207,3209,3212,3214,3216,3218,3220,3222,3224,3226,3228,3230,3232],{"class":98,"line":99},[96,1497,103],{"class":102},[96,1499,106],{"class":102},[96,1501,110],{"class":109},[96,1503,106],{"class":102},[96,1505,115],{"class":102},[96,1507,106],{"class":102},[96,1509,1510],{"class":120},"source1-inject",[96,1512,106],{"class":102},[96,1514,126],{"class":102},[96,1516,106],{"class":102},[96,1518,131],{"class":109},[96,1520,106],{"class":102},[96,1522,115],{"class":102},[96,1524,106],{"class":102},[96,1526,444],{"class":120},[96,1528,106],{"class":102},[96,1530,126],{"class":102},[96,1532,106],{"class":102},[96,1534,149],{"class":109},[96,1536,106],{"class":102},[96,1538,115],{"class":102},[96,1540,106],{"class":102},[96,1542,1543],{"class":120},"a1b2c3d4e5f6g7h8",[96,1545,106],{"class":102},[96,1547,126],{"class":102},[96,1549,106],{"class":102},[96,1551,486],{"class":109},[96,1553,106],{"class":102},[96,1555,115],{"class":102},[96,1557,106],{"class":102},[96,1559,1560],{"class":120},"Source 1",[96,1562,106],{"class":102},[96,1564,126],{"class":102},[96,1566,106],{"class":102},[96,1568,504],{"class":109},[96,1570,106],{"class":102},[96,1572,509],{"class":102},[96,1574,106],{"class":102},[96,1576,15],{"class":177},[96,1578,106],{"class":102},[96,1580,115],{"class":102},[96,1582,106],{"class":102},[96,1584,522],{"class":120},[96,1586,106],{"class":102},[96,1588,415],{"class":102},[96,1590,106],{"class":102},[96,1592,15],{"class":177},[96,1594,106],{"class":102},[96,1596,115],{"class":102},[96,1598,106],{"class":102},[96,1600,1601],{"class":120},"source",[96,1603,106],{"class":102},[96,1605,126],{"class":102},[96,1607,106],{"class":102},[96,1609,1610],{"class":177},"v",[96,1612,106],{"class":102},[96,1614,115],{"class":102},[96,1616,106],{"class":102},[96,1618,1619],{"class":120},"sensor-1",[96,1621,106],{"class":102},[96,1623,126],{"class":102},[96,1625,106],{"class":102},[96,1627,1628],{"class":177},"vt",[96,1630,106],{"class":102},[96,1632,115],{"class":102},[96,1634,106],{"class":102},[96,1636,1637],{"class":120},"str",[96,1639,106],{"class":102},[96,1641,527],{"class":102},[96,1643,106],{"class":102},[96,1645,532],{"class":109},[96,1647,106],{"class":102},[96,1649,115],{"class":102},[96,1651,539],{"class":102},[96,1653,126],{"class":102},[96,1655,106],{"class":102},[96,1657,546],{"class":109},[96,1659,106],{"class":102},[96,1661,115],{"class":102},[96,1663,539],{"class":102},[96,1665,126],{"class":102},[96,1667,106],{"class":102},[96,1669,559],{"class":109},[96,1671,106],{"class":102},[96,1673,564],{"class":102},[96,1675,106],{"class":102},[96,1677,569],{"class":109},[96,1679,106],{"class":102},[96,1681,115],{"class":102},[96,1683,576],{"class":369},[96,1685,126],{"class":102},[96,1687,106],{"class":102},[96,1689,583],{"class":109},[96,1691,106],{"class":102},[96,1693,115],{"class":102},[96,1695,539],{"class":102},[96,1697,126],{"class":102},[96,1699,106],{"class":102},[96,1701,522],{"class":109},[96,1703,106],{"class":102},[96,1705,115],{"class":102},[96,1707,106],{"class":102},[96,1709,1710],{"class":120},"25",[96,1712,106],{"class":102},[96,1714,126],{"class":102},[96,1716,106],{"class":102},[96,1718,635],{"class":109},[96,1720,106],{"class":102},[96,1722,115],{"class":102},[96,1724,106],{"class":102},[96,1726,1727],{"class":120},"num",[96,1729,106],{"class":102},[96,1731,126],{"class":102},[96,1733,106],{"class":102},[96,1735,362],{"class":109},[96,1737,106],{"class":102},[96,1739,115],{"class":102},[96,1741,1742],{"class":369},"180",[96,1744,126],{"class":102},[96,1746,106],{"class":102},[96,1748,377],{"class":109},[96,1750,106],{"class":102},[96,1752,115],{"class":102},[96,1754,1755],{"class":369},"140",[96,1757,126],{"class":102},[96,1759,106],{"class":102},[96,1761,678],{"class":109},[96,1763,106],{"class":102},[96,1765,683],{"class":102},[96,1767,106],{"class":102},[96,1769,1770],{"class":120},"link-out-1",[96,1772,106],{"class":102},[96,1774,692],{"class":102},[96,1776,106],{"class":102},[96,1778,110],{"class":109},[96,1780,106],{"class":102},[96,1782,115],{"class":102},[96,1784,106],{"class":102},[96,1786,1787],{"class":120},"source2-inject",[96,1789,106],{"class":102},[96,1791,126],{"class":102},[96,1793,106],{"class":102},[96,1795,131],{"class":109},[96,1797,106],{"class":102},[96,1799,115],{"class":102},[96,1801,106],{"class":102},[96,1803,444],{"class":120},[96,1805,106],{"class":102},[96,1807,126],{"class":102},[96,1809,106],{"class":102},[96,1811,149],{"class":109},[96,1813,106],{"class":102},[96,1815,115],{"class":102},[96,1817,106],{"class":102},[96,1819,1543],{"class":120},[96,1821,106],{"class":102},[96,1823,126],{"class":102},[96,1825,106],{"class":102},[96,1827,486],{"class":109},[96,1829,106],{"class":102},[96,1831,115],{"class":102},[96,1833,106],{"class":102},[96,1835,1836],{"class":120},"Source 2",[96,1838,106],{"class":102},[96,1840,126],{"class":102},[96,1842,106],{"class":102},[96,1844,504],{"class":109},[96,1846,106],{"class":102},[96,1848,509],{"class":102},[96,1850,106],{"class":102},[96,1852,15],{"class":177},[96,1854,106],{"class":102},[96,1856,115],{"class":102},[96,1858,106],{"class":102},[96,1860,522],{"class":120},[96,1862,106],{"class":102},[96,1864,415],{"class":102},[96,1866,106],{"class":102},[96,1868,15],{"class":177},[96,1870,106],{"class":102},[96,1872,115],{"class":102},[96,1874,106],{"class":102},[96,1876,1601],{"class":120},[96,1878,106],{"class":102},[96,1880,126],{"class":102},[96,1882,106],{"class":102},[96,1884,1610],{"class":177},[96,1886,106],{"class":102},[96,1888,115],{"class":102},[96,1890,106],{"class":102},[96,1892,1893],{"class":120},"sensor-2",[96,1895,106],{"class":102},[96,1897,126],{"class":102},[96,1899,106],{"class":102},[96,1901,1628],{"class":177},[96,1903,106],{"class":102},[96,1905,115],{"class":102},[96,1907,106],{"class":102},[96,1909,1637],{"class":120},[96,1911,106],{"class":102},[96,1913,527],{"class":102},[96,1915,106],{"class":102},[96,1917,532],{"class":109},[96,1919,106],{"class":102},[96,1921,115],{"class":102},[96,1923,539],{"class":102},[96,1925,126],{"class":102},[96,1927,106],{"class":102},[96,1929,546],{"class":109},[96,1931,106],{"class":102},[96,1933,115],{"class":102},[96,1935,539],{"class":102},[96,1937,126],{"class":102},[96,1939,106],{"class":102},[96,1941,559],{"class":109},[96,1943,106],{"class":102},[96,1945,564],{"class":102},[96,1947,106],{"class":102},[96,1949,569],{"class":109},[96,1951,106],{"class":102},[96,1953,115],{"class":102},[96,1955,576],{"class":369},[96,1957,126],{"class":102},[96,1959,106],{"class":102},[96,1961,583],{"class":109},[96,1963,106],{"class":102},[96,1965,115],{"class":102},[96,1967,539],{"class":102},[96,1969,126],{"class":102},[96,1971,106],{"class":102},[96,1973,522],{"class":109},[96,1975,106],{"class":102},[96,1977,115],{"class":102},[96,1979,106],{"class":102},[96,1981,1982],{"class":120},"30",[96,1984,106],{"class":102},[96,1986,126],{"class":102},[96,1988,106],{"class":102},[96,1990,635],{"class":109},[96,1992,106],{"class":102},[96,1994,115],{"class":102},[96,1996,106],{"class":102},[96,1998,1727],{"class":120},[96,2000,106],{"class":102},[96,2002,126],{"class":102},[96,2004,106],{"class":102},[96,2006,362],{"class":109},[96,2008,106],{"class":102},[96,2010,115],{"class":102},[96,2012,1742],{"class":369},[96,2014,126],{"class":102},[96,2016,106],{"class":102},[96,2018,377],{"class":109},[96,2020,106],{"class":102},[96,2022,115],{"class":102},[96,2024,2025],{"class":369},"200",[96,2027,126],{"class":102},[96,2029,106],{"class":102},[96,2031,678],{"class":109},[96,2033,106],{"class":102},[96,2035,683],{"class":102},[96,2037,106],{"class":102},[96,2039,2040],{"class":120},"link-out-2",[96,2042,106],{"class":102},[96,2044,692],{"class":102},[96,2046,106],{"class":102},[96,2048,110],{"class":109},[96,2050,106],{"class":102},[96,2052,115],{"class":102},[96,2054,106],{"class":102},[96,2056,2057],{"class":120},"source3-inject",[96,2059,106],{"class":102},[96,2061,126],{"class":102},[96,2063,106],{"class":102},[96,2065,131],{"class":109},[96,2067,106],{"class":102},[96,2069,115],{"class":102},[96,2071,106],{"class":102},[96,2073,444],{"class":120},[96,2075,106],{"class":102},[96,2077,126],{"class":102},[96,2079,106],{"class":102},[96,2081,149],{"class":109},[96,2083,106],{"class":102},[96,2085,115],{"class":102},[96,2087,106],{"class":102},[96,2089,1543],{"class":120},[96,2091,106],{"class":102},[96,2093,126],{"class":102},[96,2095,106],{"class":102},[96,2097,486],{"class":109},[96,2099,106],{"class":102},[96,2101,115],{"class":102},[96,2103,106],{"class":102},[96,2105,2106],{"class":120},"Source 3",[96,2108,106],{"class":102},[96,2110,126],{"class":102},[96,2112,106],{"class":102},[96,2114,504],{"class":109},[96,2116,106],{"class":102},[96,2118,509],{"class":102},[96,2120,106],{"class":102},[96,2122,15],{"class":177},[96,2124,106],{"class":102},[96,2126,115],{"class":102},[96,2128,106],{"class":102},[96,2130,522],{"class":120},[96,2132,106],{"class":102},[96,2134,415],{"class":102},[96,2136,106],{"class":102},[96,2138,15],{"class":177},[96,2140,106],{"class":102},[96,2142,115],{"class":102},[96,2144,106],{"class":102},[96,2146,1601],{"class":120},[96,2148,106],{"class":102},[96,2150,126],{"class":102},[96,2152,106],{"class":102},[96,2154,1610],{"class":177},[96,2156,106],{"class":102},[96,2158,115],{"class":102},[96,2160,106],{"class":102},[96,2162,2163],{"class":120},"sensor-3",[96,2165,106],{"class":102},[96,2167,126],{"class":102},[96,2169,106],{"class":102},[96,2171,1628],{"class":177},[96,2173,106],{"class":102},[96,2175,115],{"class":102},[96,2177,106],{"class":102},[96,2179,1637],{"class":120},[96,2181,106],{"class":102},[96,2183,527],{"class":102},[96,2185,106],{"class":102},[96,2187,532],{"class":109},[96,2189,106],{"class":102},[96,2191,115],{"class":102},[96,2193,539],{"class":102},[96,2195,126],{"class":102},[96,2197,106],{"class":102},[96,2199,546],{"class":109},[96,2201,106],{"class":102},[96,2203,115],{"class":102},[96,2205,539],{"class":102},[96,2207,126],{"class":102},[96,2209,106],{"class":102},[96,2211,559],{"class":109},[96,2213,106],{"class":102},[96,2215,564],{"class":102},[96,2217,106],{"class":102},[96,2219,569],{"class":109},[96,2221,106],{"class":102},[96,2223,115],{"class":102},[96,2225,576],{"class":369},[96,2227,126],{"class":102},[96,2229,106],{"class":102},[96,2231,583],{"class":109},[96,2233,106],{"class":102},[96,2235,115],{"class":102},[96,2237,539],{"class":102},[96,2239,126],{"class":102},[96,2241,106],{"class":102},[96,2243,522],{"class":109},[96,2245,106],{"class":102},[96,2247,115],{"class":102},[96,2249,106],{"class":102},[96,2251,2252],{"class":120},"28",[96,2254,106],{"class":102},[96,2256,126],{"class":102},[96,2258,106],{"class":102},[96,2260,635],{"class":109},[96,2262,106],{"class":102},[96,2264,115],{"class":102},[96,2266,106],{"class":102},[96,2268,1727],{"class":120},[96,2270,106],{"class":102},[96,2272,126],{"class":102},[96,2274,106],{"class":102},[96,2276,362],{"class":109},[96,2278,106],{"class":102},[96,2280,115],{"class":102},[96,2282,1742],{"class":369},[96,2284,126],{"class":102},[96,2286,106],{"class":102},[96,2288,377],{"class":109},[96,2290,106],{"class":102},[96,2292,115],{"class":102},[96,2294,2295],{"class":369},"260",[96,2297,126],{"class":102},[96,2299,106],{"class":102},[96,2301,678],{"class":109},[96,2303,106],{"class":102},[96,2305,683],{"class":102},[96,2307,106],{"class":102},[96,2309,2310],{"class":120},"link-out-3",[96,2312,106],{"class":102},[96,2314,692],{"class":102},[96,2316,106],{"class":102},[96,2318,110],{"class":109},[96,2320,106],{"class":102},[96,2322,115],{"class":102},[96,2324,106],{"class":102},[96,2326,1770],{"class":120},[96,2328,106],{"class":102},[96,2330,126],{"class":102},[96,2332,106],{"class":102},[96,2334,131],{"class":109},[96,2336,106],{"class":102},[96,2338,115],{"class":102},[96,2340,106],{"class":102},[96,2342,911],{"class":120},[96,2344,106],{"class":102},[96,2346,126],{"class":102},[96,2348,106],{"class":102},[96,2350,149],{"class":109},[96,2352,106],{"class":102},[96,2354,115],{"class":102},[96,2356,106],{"class":102},[96,2358,1543],{"class":120},[96,2360,106],{"class":102},[96,2362,126],{"class":102},[96,2364,106],{"class":102},[96,2366,486],{"class":109},[96,2368,106],{"class":102},[96,2370,115],{"class":102},[96,2372,539],{"class":102},[96,2374,126],{"class":102},[96,2376,106],{"class":102},[96,2378,969],{"class":109},[96,2380,106],{"class":102},[96,2382,115],{"class":102},[96,2384,106],{"class":102},[96,2386,12],{"class":120},[96,2388,106],{"class":102},[96,2390,126],{"class":102},[96,2392,106],{"class":102},[96,2394,986],{"class":109},[96,2396,106],{"class":102},[96,2398,302],{"class":102},[96,2400,106],{"class":102},[96,2402,2403],{"class":120},"link-in-process",[96,2405,106],{"class":102},[96,2407,357],{"class":102},[96,2409,106],{"class":102},[96,2411,362],{"class":109},[96,2413,106],{"class":102},[96,2415,115],{"class":102},[96,2417,2418],{"class":369},"335",[96,2420,126],{"class":102},[96,2422,106],{"class":102},[96,2424,377],{"class":109},[96,2426,106],{"class":102},[96,2428,115],{"class":102},[96,2430,1755],{"class":369},[96,2432,126],{"class":102},[96,2434,106],{"class":102},[96,2436,678],{"class":109},[96,2438,106],{"class":102},[96,2440,1032],{"class":102},[96,2442,106],{"class":102},[96,2444,110],{"class":109},[96,2446,106],{"class":102},[96,2448,115],{"class":102},[96,2450,106],{"class":102},[96,2452,2040],{"class":120},[96,2454,106],{"class":102},[96,2456,126],{"class":102},[96,2458,106],{"class":102},[96,2460,131],{"class":109},[96,2462,106],{"class":102},[96,2464,115],{"class":102},[96,2466,106],{"class":102},[96,2468,911],{"class":120},[96,2470,106],{"class":102},[96,2472,126],{"class":102},[96,2474,106],{"class":102},[96,2476,149],{"class":109},[96,2478,106],{"class":102},[96,2480,115],{"class":102},[96,2482,106],{"class":102},[96,2484,1543],{"class":120},[96,2486,106],{"class":102},[96,2488,126],{"class":102},[96,2490,106],{"class":102},[96,2492,486],{"class":109},[96,2494,106],{"class":102},[96,2496,115],{"class":102},[96,2498,539],{"class":102},[96,2500,126],{"class":102},[96,2502,106],{"class":102},[96,2504,969],{"class":109},[96,2506,106],{"class":102},[96,2508,115],{"class":102},[96,2510,106],{"class":102},[96,2512,12],{"class":120},[96,2514,106],{"class":102},[96,2516,126],{"class":102},[96,2518,106],{"class":102},[96,2520,986],{"class":109},[96,2522,106],{"class":102},[96,2524,302],{"class":102},[96,2526,106],{"class":102},[96,2528,2403],{"class":120},[96,2530,106],{"class":102},[96,2532,357],{"class":102},[96,2534,106],{"class":102},[96,2536,362],{"class":109},[96,2538,106],{"class":102},[96,2540,115],{"class":102},[96,2542,2418],{"class":369},[96,2544,126],{"class":102},[96,2546,106],{"class":102},[96,2548,377],{"class":109},[96,2550,106],{"class":102},[96,2552,115],{"class":102},[96,2554,2025],{"class":369},[96,2556,126],{"class":102},[96,2558,106],{"class":102},[96,2560,678],{"class":109},[96,2562,106],{"class":102},[96,2564,1032],{"class":102},[96,2566,106],{"class":102},[96,2568,110],{"class":109},[96,2570,106],{"class":102},[96,2572,115],{"class":102},[96,2574,106],{"class":102},[96,2576,2310],{"class":120},[96,2578,106],{"class":102},[96,2580,126],{"class":102},[96,2582,106],{"class":102},[96,2584,131],{"class":109},[96,2586,106],{"class":102},[96,2588,115],{"class":102},[96,2590,106],{"class":102},[96,2592,911],{"class":120},[96,2594,106],{"class":102},[96,2596,126],{"class":102},[96,2598,106],{"class":102},[96,2600,149],{"class":109},[96,2602,106],{"class":102},[96,2604,115],{"class":102},[96,2606,106],{"class":102},[96,2608,1543],{"class":120},[96,2610,106],{"class":102},[96,2612,126],{"class":102},[96,2614,106],{"class":102},[96,2616,486],{"class":109},[96,2618,106],{"class":102},[96,2620,115],{"class":102},[96,2622,539],{"class":102},[96,2624,126],{"class":102},[96,2626,106],{"class":102},[96,2628,969],{"class":109},[96,2630,106],{"class":102},[96,2632,115],{"class":102},[96,2634,106],{"class":102},[96,2636,12],{"class":120},[96,2638,106],{"class":102},[96,2640,126],{"class":102},[96,2642,106],{"class":102},[96,2644,986],{"class":109},[96,2646,106],{"class":102},[96,2648,302],{"class":102},[96,2650,106],{"class":102},[96,2652,2403],{"class":120},[96,2654,106],{"class":102},[96,2656,357],{"class":102},[96,2658,106],{"class":102},[96,2660,362],{"class":109},[96,2662,106],{"class":102},[96,2664,115],{"class":102},[96,2666,2418],{"class":369},[96,2668,126],{"class":102},[96,2670,106],{"class":102},[96,2672,377],{"class":109},[96,2674,106],{"class":102},[96,2676,115],{"class":102},[96,2678,2295],{"class":369},[96,2680,126],{"class":102},[96,2682,106],{"class":102},[96,2684,678],{"class":109},[96,2686,106],{"class":102},[96,2688,1032],{"class":102},[96,2690,106],{"class":102},[96,2692,110],{"class":109},[96,2694,106],{"class":102},[96,2696,115],{"class":102},[96,2698,106],{"class":102},[96,2700,2403],{"class":120},[96,2702,106],{"class":102},[96,2704,126],{"class":102},[96,2706,106],{"class":102},[96,2708,131],{"class":109},[96,2710,106],{"class":102},[96,2712,115],{"class":102},[96,2714,106],{"class":102},[96,2716,1061],{"class":120},[96,2718,106],{"class":102},[96,2720,126],{"class":102},[96,2722,106],{"class":102},[96,2724,149],{"class":109},[96,2726,106],{"class":102},[96,2728,115],{"class":102},[96,2730,106],{"class":102},[96,2732,1543],{"class":120},[96,2734,106],{"class":102},[96,2736,126],{"class":102},[96,2738,106],{"class":102},[96,2740,486],{"class":109},[96,2742,106],{"class":102},[96,2744,115],{"class":102},[96,2746,106],{"class":102},[96,2748,2749],{"class":120},"Common Processor",[96,2751,106],{"class":102},[96,2753,126],{"class":102},[96,2755,106],{"class":102},[96,2757,986],{"class":109},[96,2759,106],{"class":102},[96,2761,302],{"class":102},[96,2763,106],{"class":102},[96,2765,1770],{"class":120},[96,2767,106],{"class":102},[96,2769,126],{"class":102},[96,2771,106],{"class":102},[96,2773,2040],{"class":120},[96,2775,106],{"class":102},[96,2777,126],{"class":102},[96,2779,106],{"class":102},[96,2781,2310],{"class":120},[96,2783,106],{"class":102},[96,2785,357],{"class":102},[96,2787,106],{"class":102},[96,2789,362],{"class":109},[96,2791,106],{"class":102},[96,2793,115],{"class":102},[96,2795,2796],{"class":369},"195",[96,2798,126],{"class":102},[96,2800,106],{"class":102},[96,2802,377],{"class":109},[96,2804,106],{"class":102},[96,2806,115],{"class":102},[96,2808,2809],{"class":369},"380",[96,2811,126],{"class":102},[96,2813,106],{"class":102},[96,2815,678],{"class":109},[96,2817,106],{"class":102},[96,2819,683],{"class":102},[96,2821,106],{"class":102},[96,2823,2824],{"class":120},"process-data",[96,2826,106],{"class":102},[96,2828,692],{"class":102},[96,2830,106],{"class":102},[96,2832,110],{"class":109},[96,2834,106],{"class":102},[96,2836,115],{"class":102},[96,2838,106],{"class":102},[96,2840,2824],{"class":120},[96,2842,106],{"class":102},[96,2844,126],{"class":102},[96,2846,106],{"class":102},[96,2848,131],{"class":109},[96,2850,106],{"class":102},[96,2852,115],{"class":102},[96,2854,106],{"class":102},[96,2856,721],{"class":120},[96,2858,106],{"class":102},[96,2860,126],{"class":102},[96,2862,106],{"class":102},[96,2864,149],{"class":109},[96,2866,106],{"class":102},[96,2868,115],{"class":102},[96,2870,106],{"class":102},[96,2872,1543],{"class":120},[96,2874,106],{"class":102},[96,2876,126],{"class":102},[96,2878,106],{"class":102},[96,2880,486],{"class":109},[96,2882,106],{"class":102},[96,2884,115],{"class":102},[96,2886,106],{"class":102},[96,2888,2889],{"class":120},"Convert to Fahrenheit",[96,2891,106],{"class":102},[96,2893,126],{"class":102},[96,2895,106],{"class":102},[96,2897,779],{"class":109},[96,2899,106],{"class":102},[96,2901,115],{"class":102},[96,2903,106],{"class":102},[96,2905,2906],{"class":120},"msg.payload = (msg.payload * 9\u002F5) + 32;",[96,2908,791],{"class":607},[96,2910,2911],{"class":120},"msg.payload = `${msg.source}: ${msg.payload.toFixed(1)}°F`;",[96,2913,791],{"class":607},[96,2915,1271],{"class":120},[96,2917,106],{"class":102},[96,2919,126],{"class":102},[96,2921,106],{"class":102},[96,2923,833],{"class":109},[96,2925,106],{"class":102},[96,2927,115],{"class":102},[96,2929,205],{"class":369},[96,2931,126],{"class":102},[96,2933,106],{"class":102},[96,2935,2936],{"class":109},"timeout",[96,2938,106],{"class":102},[96,2940,115],{"class":102},[96,2942,2943],{"class":369},"0",[96,2945,126],{"class":102},[96,2947,106],{"class":102},[96,2949,2950],{"class":109},"noerr",[96,2952,106],{"class":102},[96,2954,115],{"class":102},[96,2956,2943],{"class":369},[96,2958,126],{"class":102},[96,2960,106],{"class":102},[96,2962,2963],{"class":109},"initialize",[96,2965,106],{"class":102},[96,2967,115],{"class":102},[96,2969,539],{"class":102},[96,2971,126],{"class":102},[96,2973,106],{"class":102},[96,2975,2976],{"class":109},"finalize",[96,2978,106],{"class":102},[96,2980,115],{"class":102},[96,2982,539],{"class":102},[96,2984,126],{"class":102},[96,2986,106],{"class":102},[96,2988,2989],{"class":109},"libs",[96,2991,106],{"class":102},[96,2993,2994],{"class":102},":[],",[96,2996,106],{"class":102},[96,2998,362],{"class":109},[96,3000,106],{"class":102},[96,3002,115],{"class":102},[96,3004,3005],{"class":369},"400",[96,3007,126],{"class":102},[96,3009,106],{"class":102},[96,3011,377],{"class":109},[96,3013,106],{"class":102},[96,3015,115],{"class":102},[96,3017,2809],{"class":369},[96,3019,126],{"class":102},[96,3021,106],{"class":102},[96,3023,678],{"class":109},[96,3025,106],{"class":102},[96,3027,683],{"class":102},[96,3029,106],{"class":102},[96,3031,3032],{"class":120},"result-debug",[96,3034,106],{"class":102},[96,3036,692],{"class":102},[96,3038,106],{"class":102},[96,3040,110],{"class":109},[96,3042,106],{"class":102},[96,3044,115],{"class":102},[96,3046,106],{"class":102},[96,3048,3032],{"class":120},[96,3050,106],{"class":102},[96,3052,126],{"class":102},[96,3054,106],{"class":102},[96,3056,131],{"class":109},[96,3058,106],{"class":102},[96,3060,115],{"class":102},[96,3062,106],{"class":102},[96,3064,1357],{"class":120},[96,3066,106],{"class":102},[96,3068,126],{"class":102},[96,3070,106],{"class":102},[96,3072,149],{"class":109},[96,3074,106],{"class":102},[96,3076,115],{"class":102},[96,3078,106],{"class":102},[96,3080,1543],{"class":120},[96,3082,106],{"class":102},[96,3084,126],{"class":102},[96,3086,106],{"class":102},[96,3088,486],{"class":109},[96,3090,106],{"class":102},[96,3092,115],{"class":102},[96,3094,106],{"class":102},[96,3096,3097],{"class":120},"Processed Results",[96,3099,106],{"class":102},[96,3101,126],{"class":102},[96,3103,106],{"class":102},[96,3105,1415],{"class":109},[96,3107,106],{"class":102},[96,3109,255],{"class":102},[96,3111,106],{"class":102},[96,3113,1424],{"class":109},[96,3115,106],{"class":102},[96,3117,255],{"class":102},[96,3119,106],{"class":102},[96,3121,3122],{"class":109},"console",[96,3124,106],{"class":102},[96,3126,564],{"class":102},[96,3128,106],{"class":102},[96,3130,3131],{"class":109},"tostatus",[96,3133,106],{"class":102},[96,3135,564],{"class":102},[96,3137,106],{"class":102},[96,3139,1433],{"class":109},[96,3141,106],{"class":102},[96,3143,115],{"class":102},[96,3145,106],{"class":102},[96,3147,522],{"class":120},[96,3149,106],{"class":102},[96,3151,126],{"class":102},[96,3153,106],{"class":102},[96,3155,3156],{"class":109},"targetType",[96,3158,106],{"class":102},[96,3160,115],{"class":102},[96,3162,106],{"class":102},[96,3164,3165],{"class":120},"msg",[96,3167,106],{"class":102},[96,3169,126],{"class":102},[96,3171,106],{"class":102},[96,3173,3174],{"class":109},"statusVal",[96,3176,106],{"class":102},[96,3178,115],{"class":102},[96,3180,539],{"class":102},[96,3182,126],{"class":102},[96,3184,106],{"class":102},[96,3186,3187],{"class":109},"statusType",[96,3189,106],{"class":102},[96,3191,115],{"class":102},[96,3193,106],{"class":102},[96,3195,3196],{"class":120},"auto",[96,3198,106],{"class":102},[96,3200,126],{"class":102},[96,3202,106],{"class":102},[96,3204,362],{"class":109},[96,3206,106],{"class":102},[96,3208,115],{"class":102},[96,3210,3211],{"class":369},"620",[96,3213,126],{"class":102},[96,3215,106],{"class":102},[96,3217,377],{"class":109},[96,3219,106],{"class":102},[96,3221,115],{"class":102},[96,3223,2809],{"class":369},[96,3225,126],{"class":102},[96,3227,106],{"class":102},[96,3229,678],{"class":109},[96,3231,106],{"class":102},[96,3233,1479],{"class":102},[3235,3236],"node-red-help",{"category":3237,"file":3238,"name":13,"node":12},"common","60-link",[167,3240,3241],{},"html pre.shiki code .sMK4o, html code.shiki .sMK4o{--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF}html pre.shiki code .spNyl, html code.shiki .spNyl{--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA}html pre.shiki code .sfazB, html code.shiki .sfazB{--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D}html pre.shiki code .sBMFI, html code.shiki .sBMFI{--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B}html pre.shiki code .sbssI, html code.shiki .sbssI{--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C}html pre.shiki code .sTEyZ, html code.shiki .sTEyZ{--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8}html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"title":91,"searchDepth":3243,"depth":3243,"links":3244},4,[3245,3247,3253,3254],{"id":21,"depth":3246,"text":22},2,{"id":28,"depth":3246,"text":29,"children":3248},[3249,3251,3252],{"id":36,"depth":3250,"text":37},3,{"id":43,"depth":3250,"text":44},{"id":50,"depth":3250,"text":51},{"id":57,"depth":3246,"text":58},{"id":73,"depth":3246,"text":74,"children":3255},[3256,3257],{"id":77,"depth":3250,"text":78},{"id":1482,"depth":3250,"text":1483},"https:\u002F\u002Fgithub.com\u002FFlowFuse\u002Fwebsite\u002Fedit\u002Fmain\u002Fnuxt\u002Fcontent-guides\u002Fnode-red\u002Fcore-nodes\u002Fcommon\u002Flink.md","md",null,{},"Node-RED - Link Node",6,true,"\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fcommon\u002Flink",{"title":5,"description":17},"docs\u002Fnode-red\u002Fcore-nodes\u002Fcommon\u002Flink","2026-09-08 12:42:41 +0200","AXDvyPI6q5lqRnknwlCif5Q0eyW8TXzzYhl5bdhLUmA",{"id":3271,"extension":3272,"meta":3273,"sections":3274,"stem":3673,"__hash__":3674},"featureCatalog\u002Ffeature-catalog.yml","yml",{},[3275,3336,3437,3499,3576,3655],{"id":3276,"title":3277,"features":3278},"ai-automation","AI & Automation",[3279,3289,3299,3309,3315,3325,3331],{"id":3280,"title":3281,"description":3282,"docsLink":3283,"changelog":3284,"tiers":3288},"flowfuse-expert-ai","FlowFuse Expert AI","Build industrial apps with agents, and query the state of the factory with an agent. Adapt your current hardware and machines so agentic work can be done against them, without ripping and replacing what's already on the plant floor.","\u002Fdocs\u002Fuser\u002Fexpert\u002F",[3285],{"url":3286,"release":3287},"\u002Fchangelog\u002F2026\u002F02\u002Fff-expert-update-banner\u002F","2.28",{"edge":3264,"hub":3264,"fleet":3264},{"id":3290,"title":3291,"description":3292,"docsLink":3293,"changelog":3294,"subfeature":3264,"showOnPricing":3297,"tiers":3298},"flowfuse-expert-support-mode","Support Mode","Chat-based assistance for FlowFuse and Node-RED, including Node-RED instance management through natural language.","\u002Fdocs\u002Fuser\u002Fexpert\u002Fchat\u002F#support-mode",[3295],{"url":3296,"release":3287},"\u002Fchangelog\u002F2026\u002F02\u002Fff-expert-debug-log-context\u002F",false,{"edge":3264,"hub":3264,"fleet":3264},{"id":3300,"title":3301,"description":3302,"docsLink":3303,"changelog":3304,"subfeature":3264,"showOnPricing":3297,"tiers":3308},"flowfuse-expert-application-building","Application Building","Describe what you want to build and FlowFuse Expert assembles it on your workspace, adding tabs, wiring nodes, and configuring properties.","\u002Fdocs\u002Fuser\u002Fexpert\u002Fchat\u002F",[3305],{"url":3306,"release":3307},"\u002Fchangelog\u002F2026\u002F05\u002Fexpert-application-building\u002F","2.30",{"edge":3264,"hub":3264,"fleet":3264},{"id":3310,"title":3311,"description":3312,"docsLink":3313,"subfeature":3264,"beta":3264,"showOnPricing":3297,"tiers":3314},"flowfuse-expert-insights-mode","Insights Mode","Connects FlowFuse Expert to MCP servers in your Node-RED instances, enabling real-time data queries and actions through a single chat interface.","\u002Fdocs\u002Fuser\u002Fexpert\u002Fchat\u002F#insights-mode",{"edge":3264,"hub":3264,"fleet":3264},{"id":3316,"title":3317,"description":3318,"docsLink":3319,"changelog":3320,"tiers":3324},"third-party-agents","Connect Your Own AI Agent","Point the AI agent your company already uses at FlowFuse, so it can query your teams and instances and build Node-RED applications, with you deciding which teams it reaches and whether it can make changes.","\u002Fdocs\u002Fuser\u002Fexpert\u002Fthird-party-agents\u002F",[3321],{"url":3322,"release":3323},"\u002Fchangelog\u002F2026\u002F08\u002Fconnect-your-own-ai-agent\u002F","3.0",{"edge":3264,"hub":3264,"fleet":3264},{"id":3326,"title":3327,"description":3328,"docsLink":3329,"tiers":3330},"mcp-servers","Agentic Operations","Expose your Node-RED flows as tools an AI agent can call directly, so agents can query the state of the factory or trigger actions without custom integration work.","\u002Fdocs\u002Fflowfuse-nodes\u002Fmcp\u002F",{"edge":3264,"hub":3264,"fleet":3264},{"id":3332,"title":3333,"description":3334,"tiers":3335},"onnx-integration","ONNX Integration","Run trained machine learning models directly in your flows, including on edge hardware, without sending data out to an external inference service.",{"edge":3264,"hub":3264,"fleet":3264},{"id":3337,"title":3338,"features":3339},"build","Build",[3340,3346,3352,3362,3368,3374,3378,3384,3390,3398,3404,3408,3412,3421,3429],{"id":3341,"title":3342,"description":3343,"docsLink":3344,"tiers":3345},"edge-development","Edge Development","Develop and test Node-RED flows directly on edge devices with a remote editor proxy.","\u002Fdocs\u002Fdevice-agent\u002Fquickstart\u002F",{"edge":3264,"hub":3297,"fleet":3264},{"id":3347,"title":3348,"description":3349,"docsLink":3350,"tiers":3351},"private-npm-registry","Custom Node-RED Nodes","Create and manage your own private npm registry for Node-RED nodes, so you can share custom nodes across your team and devices without publishing them publicly.","\u002Fdocs\u002Fuser\u002Fcustom-npm-packages\u002F",{"edge":3264,"hub":3264,"fleet":3264},{"id":3353,"title":3354,"description":3355,"docsLink":3356,"changelog":3357,"tiers":3361},"flowfuse-tables","FlowFuse Tables","A managed PostgreSQL database for every application, so you can store and query structured data without standing up and maintaining your own database.","\u002Fdocs\u002Fuser\u002Fff-tables\u002F",[3358],{"url":3359,"release":3360},"\u002Fchangelog\u002F2026\u002F07\u002Fexpert-tables-automation\u002F","2.33",{"edge":3264,"hub":3264,"fleet":3264},{"id":3363,"title":3364,"description":3365,"docsLink":3366,"tiers":3367},"persistent-files","File Storage","Store and retrieve files from your Node-RED flows, with automatic replication and backup across your devices and hosted instances.","\u002Fdocs\u002Finstall\u002Ffile-storage\u002F",{"edge":3264,"hub":3264,"fleet":3264},{"id":3369,"title":3370,"description":3371,"docsLink":3372,"showOnPricing":3297,"tiers":3373},"persistent-context","Persistent Context","In-memory values defined in a Node-RED flow persist across project restarts and upgrades.","\u002Fdocs\u002Fuser\u002Fpersistent-context\u002F",{"edge":3264,"hub":3264,"fleet":3264},{"id":3375,"title":3376,"showOnPricing":3297,"tiers":3377},"static-assets","Static Assets",{"edge":3264,"hub":3264,"fleet":3264},{"id":3379,"title":3380,"description":3381,"docsLink":3382,"tiers":3383},"team-library","Team Library","Set up standard nodes and flows that can be shared with all team members across your organisation.","\u002Fdocs\u002Fuser\u002Fshared-library\u002F",{"edge":3264,"hub":3264,"fleet":3264},{"id":3385,"title":3386,"description":3387,"docsLink":3388,"tiers":3389},"personalised-multi-user-dashboards","Personalised Multi-User Dashboards","Build applications that provide unique data to each logged-in user using personalised multi-user dashboards.","https:\u002F\u002Fdashboard.flowfuse.com\u002Fuser\u002Fmulti-tenancy.html",{"edge":3264,"hub":3264,"fleet":3264},{"id":3391,"title":3392,"description":3393,"changelog":3394,"subfeature":3264,"showOnPricing":3297,"tiers":3397},"dashboards-view","Dashboards View","Browse and open every dashboard across your team from a dedicated Dashboards view, at both team and application level, without leaving FlowFuse.",[3395],{"url":3396,"release":3360},"\u002Fchangelog\u002F2026\u002F07\u002Fteam-and-application-dashboards\u002F",{"edge":3264,"hub":3264,"fleet":3264},{"id":3399,"title":3400,"description":3401,"docsLink":3402,"tiers":3403},"blueprints-converge","Blueprints","Ready-made starting points for your apps, from cross-team Converge templates to OT and IT specific blueprints.","\u002Fdocs\u002Fuser\u002Fconcepts\u002F#blueprint",{"edge":3264,"hub":3264,"fleet":3264},{"id":3405,"title":3406,"subfeature":3264,"showOnPricing":3297,"tiers":3407},"blueprints-ot-apps","Blueprints - OT APPS",{"edge":3264,"hub":3297,"fleet":3264},{"id":3409,"title":3410,"subfeature":3264,"showOnPricing":3297,"tiers":3411},"blueprints-it-apps","Blueprints - IT APPS",{"edge":3297,"hub":3264,"fleet":3297},{"id":3413,"title":3414,"description":3415,"changelog":3416,"showOnPricing":3297,"tiers":3420},"immersive-editor-snapshots","Snapshot Details in Immersive Editor","View and manage snapshot details directly inside the immersive editor without leaving your editing session.",[3417],{"url":3418,"release":3419},"\u002Fchangelog\u002F2026\u002F03\u002Fsnapshot-detail-modal-immersive-editor\u002F","2.29",{"edge":3264,"hub":3264,"fleet":3264},{"id":3422,"title":3423,"description":3424,"changelog":3425,"showOnPricing":3297,"tiers":3428},"immersive-editor-drawer","Customisable Immersive Editor Drawer","Pin, move, resize, or full-screen the immersive editor drawer. Your preferences are remembered between sessions.",[3426],{"url":3427,"release":3307},"\u002Fchangelog\u002F2026\u002F04\u002Fimmersive-editor-drawer\u002F",{"edge":3264,"hub":3264,"fleet":3264},{"id":3430,"title":3431,"description":3432,"changelog":3433,"showOnPricing":3297,"tiers":3436},"embedded-editor-tab-title","Embedded Editor Browser Tab Title","The browser tab title updates to reflect the active Node-RED canvas tab when working in the embedded editor.",[3434],{"url":3435,"release":3419},"\u002Fchangelog\u002F2026\u002F03\u002Fembedded-editor-tab-title\u002F",{"edge":3264,"hub":3264,"fleet":3264},{"id":3438,"title":3439,"features":3440},"deploy","Deploy",[3441,3447,3456,3462,3468,3474,3480,3486,3491],{"id":3442,"title":3443,"description":3444,"docsLink":3445,"tiers":3446},"hosted-instances","Cloud Instances","Run Node-RED instances managed and hosted by FlowFuse.","\u002Fdocs\u002Fuser\u002Fintroduction\u002F#creating-a-node-red-instance",{"edge":3264,"hub":3264,"fleet":3264},{"id":3448,"title":3449,"description":3450,"docsLink":3451,"changelog":3452,"tiers":3455},"edge-devices","Edge Instances","Deploy and mange your Node-RED instances on edge PLCs and gateways, with full visibility and control from the cloud.","\u002Fdocs\u002Fdevice-agent\u002Fintroduction\u002F",[3453],{"url":3454,"release":3287},"\u002Fchangelog\u002F2026\u002F02\u002Fdevice-agent-nodejs-options\u002F",{"edge":3264,"hub":3297,"fleet":3264},{"id":3457,"title":3458,"description":3459,"docsLink":3460,"tiers":3461},"custom-hostnames","Custom Hostnames","Access your Node-RED application via your own domain name.","\u002Fdocs\u002Fuser\u002Fcustom-hostnames\u002F",{"edge":3297,"hub":3264,"fleet":3297},{"id":3463,"title":3464,"description":3465,"docsLink":3466,"tiers":3467},"mqtt-broker","MQTT Broker","Manage and create MQTT clients to transport data for efficient messaging and communication within your applications.","\u002Fdocs\u002Fuser\u002Fteambroker\u002F",{"edge":3264,"hub":3297,"fleet":3264},{"id":3469,"title":3470,"description":3471,"docsLink":3472,"showOnPricing":3297,"tiers":3473},"project-nodes","Project Nodes aka seamless project comms","FlowFuse Project Nodes enable the passing of data and messages between your Node-RED projects.","\u002Fdocs\u002Fuser\u002Fprojectnodes\u002F",{"edge":3264,"hub":3264,"fleet":3264},{"id":3475,"title":3476,"description":3477,"docsLink":3478,"tiers":3479},"devops-pipelines","DevOps Pipelines","Set up different environments for development, testing, and production Node-RED instances to support a full software delivery lifecycle.","\u002Fdocs\u002Fuser\u002Fdevops-pipelines\u002F",{"edge":3264,"hub":3264,"fleet":3264},{"id":3481,"title":3482,"description":3483,"docsLink":3484,"tiers":3485},"git-integration","Git Integration","Back up your flows to a remote Git repository through a DevOps Pipeline. Supports GitHub and Azure DevOps repositories.","\u002Fdocs\u002Fuser\u002Fdevops-pipelines\u002F#git-repository-stage",{"edge":3297,"hub":3264,"fleet":3297},{"id":3487,"title":3488,"description":3489,"docsLink":3484,"subfeature":3264,"showOnPricing":3297,"tiers":3490},"git-integration-github","GitHub","Push and pull snapshots to GitHub repositories through DevOps Pipeline Git Stages.",{"edge":3297,"hub":3264,"fleet":3297},{"id":3492,"title":3493,"description":3494,"docsLink":3484,"changelog":3495,"subfeature":3264,"showOnPricing":3297,"tiers":3498},"git-integration-azure","Azure DevOps","Push and pull snapshots to Azure DevOps repositories through DevOps Pipeline Git Stages.",[3496],{"url":3497,"release":3419},"\u002Fchangelog\u002F2026\u002F03\u002Fazure-dev-ops-gitops\u002F",{"edge":3297,"hub":3264,"fleet":3297},{"id":3500,"title":3501,"features":3502},"operate-maintain","Operate & Maintain",[3503,3509,3515,3520,3528,3532,3536,3541,3547,3553,3558,3564,3568,3572],{"id":3504,"title":3505,"description":3506,"docsLink":3507,"tiers":3508},"snapshots","Snapshots & Version History","Automatic snapshots on remote devices and hosted instances, plus a full version history timeline so you can roll back to any prior state.","\u002Fdocs\u002Fuser\u002Fsnapshots\u002F",{"edge":3264,"hub":3264,"fleet":3264},{"id":3510,"title":3511,"description":3512,"docsLink":3513,"subfeature":3264,"showOnPricing":3297,"tiers":3514},"auto-snapshot-remote","Auto Snapshot (Remote)","Automatically capture a snapshot every time a remote instance is deployed, so you always have a recoverable history of what was running on each device.","\u002Fdocs\u002Fuser\u002Fsnapshots\u002F#auto-snapshots",{"edge":3264,"hub":3264,"fleet":3264},{"id":3516,"title":3517,"description":3518,"docsLink":3513,"subfeature":3264,"showOnPricing":3297,"tiers":3519},"auto-snapshot-hosted","Auto Snapshot (Hosted)","Automatically capture a snapshot every time a hosted instance is deployed, so you always have a recoverable history of what was running.",{"edge":3264,"hub":3264,"fleet":3264},{"id":3521,"title":3522,"description":3523,"changelog":3524,"subfeature":3264,"showOnPricing":3297,"tiers":3527},"snapshot-comparison","Snapshot Comparison","Compare two snapshots side-by-side with a navigable diff view. Step through every changed, added, or deleted node and see property and code diffs.",[3525],{"url":3526,"release":3419},"\u002Fchangelog\u002F2026\u002F04\u002Fsnapshot-diff-viewer\u002F",{"edge":3264,"hub":3264,"fleet":3264},{"id":3529,"title":3530,"subfeature":3264,"showOnPricing":3297,"tiers":3531},"version-history-timeline","Version History Timeline",{"edge":3264,"hub":3264,"fleet":3264},{"id":3533,"title":3534,"tiers":3535},"unlimited-workflow-executions","Unlimited Workflow Executions",{"edge":3264,"hub":3264,"fleet":3264},{"id":3537,"title":3538,"description":3539,"tiers":3540},"device-fleet-updates","Device Fleet Updates","Connect to edge devices to quickly assess and update logic. Debug one device and roll out improvements to your fleet in minutes, securely without requiring full device access for your whole organisation.",{"edge":3264,"hub":3297,"fleet":3264},{"id":3542,"title":3543,"description":3544,"docsLink":3545,"tiers":3546},"device-group-management","Device Group Management","Logically group devices assigned to an application and integrate device groups into your DevOps Pipeline for coordinated fleet updates.","\u002Fdocs\u002Fuser\u002Fdevice-groups\u002F",{"edge":3264,"hub":3297,"fleet":3264},{"id":3548,"title":3549,"description":3550,"docsLink":3551,"tiers":3552},"high-availability","High Availability","Leverage horizontal scaling for reliable and scalable processing of your data through Node-RED.","\u002Fdocs\u002Fuser\u002Fhigh-availability\u002F",{"edge":3297,"hub":3264,"fleet":3297},{"id":3554,"title":3555,"description":3556,"tiers":3557},"performance-monitoring","Performance Monitoring & Alerts","Track CPU, memory, and event loop performance across your instances and devices, with email alerts when something needs your attention.",{"edge":3264,"hub":3264,"fleet":3264},{"id":3559,"title":3560,"description":3561,"docsLink":3562,"subfeature":3264,"showOnPricing":3297,"tiers":3563},"instance-monitoring","Instance Monitoring","Enable alerts to be sent via email when your Node-RED instances encounter issues.","\u002Fdocs\u002Fuser\u002Finstance-settings\u002F#alerts",{"edge":3264,"hub":3264,"fleet":3264},{"id":3565,"title":3566,"subfeature":3264,"showOnPricing":3297,"tiers":3567},"email-alerts","Email Alerts",{"edge":3264,"hub":3264,"fleet":3264},{"id":3569,"title":3570,"showOnPricing":3297,"tiers":3571},"api-debug-length-limit","API\u002FDebug Length Limit",{"edge":3264,"hub":3264,"fleet":3264},{"id":3573,"title":3574,"tiers":3575},"protected-instances","Protected Instances",{"edge":3297,"hub":3264,"fleet":3297},{"id":3577,"title":3578,"features":3579},"govern-secure","Govern and Secure",[3580,3589,3595,3601,3606,3612,3618,3624,3632,3638,3644,3650],{"id":3581,"title":3582,"description":3583,"docsLink":3584,"changelog":3585,"tiers":3588},"single-sign-on","Single Sign-On (SSO)","Configure FlowFuse to work with your own SSO provider, allowing users to access FlowFuse with a single set of login credentials.","\u002Fdocs\u002Fadmin\u002Fsso\u002F",[3586],{"url":3587,"release":3360},"\u002Fchangelog\u002F2026\u002F07\u002Fapplication-sso-groups\u002F",{"edge":3264,"hub":3264,"fleet":3264},{"id":3590,"title":3591,"description":3592,"docsLink":3593,"tiers":3594},"two-factor-authentication","Two-Factor Authentication","Two-factor authentication adds an extra layer of security to your FlowFuse account.","\u002Fdocs\u002Fuser\u002Fuser-settings\u002F#two-factor-authentication",{"edge":3264,"hub":3264,"fleet":3264},{"id":3596,"title":3597,"description":3598,"docsLink":3599,"tiers":3600},"certified-nodes-it","Certified Nodes - IT","IT certified node bundle includes: Redis, MQTT, HTTP Request, AI nodes (Gemini, Claude, ChatGPT, Ollama), MCP Server","\u002Fblog\u002F2025\u002F07\u002Fcertified-nodes-v2\u002F",{"edge":3297,"hub":3264,"fleet":3264},{"id":3602,"title":3603,"description":3604,"tiers":3605},"certified-nodes-ot","Certified OT Connections - OPC-UA, Modbus, etc.","OT certified node bundle includes: OPC-UA, Modbus TCP & RTU, RTSP, EtherNet\u002FIP, AI nodes (Gemini, Claude, ChatGPT, Ollama), MCP Server",{"edge":3264,"hub":3297,"fleet":3297},{"id":3607,"title":3608,"description":3609,"docsLink":3610,"tiers":3611},"audit-log","Audit Log","Keep track of everything going on in your Node-RED instances and FlowFuse. Audit Logs provide details on what actions have taken place, when they happened, and who did them.","\u002Fdocs\u002Fuser\u002Flogs\u002F#audit-log",{"edge":3264,"hub":3264,"fleet":3264},{"id":3613,"title":3614,"description":3615,"docsLink":3616,"tiers":3617},"role-based-access-control","Role-Based Access Control","Control who can do what at both the team and application level, from viewers to admins.","\u002Fdocs\u002Fuser\u002Frole-based-access-control\u002F",{"edge":3264,"hub":3264,"fleet":3264},{"id":3619,"title":3620,"description":3621,"docsLink":3622,"subfeature":3264,"showOnPricing":3297,"tiers":3623},"application-level-rbac","Application-Level RBAC","Fine-grained access control per application, allowing team members to have different permission levels across different applications without requiring separate teams.","\u002Fdocs\u002Fuser\u002Frole-based-access-control\u002F#application-level-rbac",{"edge":3264,"hub":3264,"fleet":3264},{"id":3625,"title":3626,"description":3627,"changelog":3628,"subfeature":3264,"showOnPricing":3297,"tiers":3631},"scoped-personal-access-tokens","Scoped Personal Access Tokens","Restrict a Personal Access Token to specific teams, limit it to read-only operations, or control whether it carries admin privileges.",[3629],{"url":3630,"release":3360},"\u002Fchangelog\u002F2026\u002F07\u002Fscoped-pats\u002F",{"edge":3264,"hub":3264,"fleet":3264},{"id":3633,"title":3634,"description":3635,"docsLink":3636,"showOnPricing":3297,"tiers":3637},"team-members","Team Members","Invite multiple team members to collaborate on the same Node-RED flows.","\u002Fdocs\u002Fuser\u002Fteam\u002F#teams",{"edge":3264,"hub":3264,"fleet":3264},{"id":3639,"title":3640,"description":3641,"docsLink":3642,"showOnPricing":3297,"tiers":3643},"endpoint-security","Endpoint Security","Secure HTTP endpoints for hosted Node-RED instances using FlowFuse credentials.","\u002Fdocs\u002Fuser\u002Finstance-settings\u002F#security",{"edge":3264,"hub":3264,"fleet":3264},{"id":3645,"title":3646,"description":3647,"docsLink":3648,"tiers":3649},"baa-for-hipaa","BAA for HIPAA","FlowFuse can sign a Business Associate Agreement to ensure proper safeguarding of protected health information handled on your behalf.","\u002Fhandbook\u002Fsales\u002Fsubscription-agreement-1.6\u002F",{"edge":3297,"hub":3264,"fleet":3297},{"id":3651,"title":3652,"description":3653,"tiers":3654},"sbom","Software Bill of Materials","A complete list of all software components used in your Node-RED instances and hosted applications, including version numbers and license information.",{"edge":3297,"hub":3264,"fleet":3297},{"id":3656,"title":3657,"features":3658},"support","Support",[3659,3664,3668],{"id":3660,"title":3661,"docsLink":3662,"tiers":3663},"installation-support","Installation Support","\u002Fdocs\u002Finstall\u002Fintroduction\u002F#do-you-need-help-installation-service",{"edge":3264,"hub":3264,"fleet":3264},{"id":3665,"title":3666,"showOnPricing":3297,"tiers":3667},"live-chat-support","Live Chat Support",{"edge":3264,"hub":3264,"fleet":3264},{"id":3669,"title":3670,"docsLink":3671,"tiers":3672},"enterprise-support","Enterprise Support","\u002Fdocs\u002Fpremium-support\u002F",{"edge":3264,"hub":3264,"fleet":3264},"feature-catalog","v5NjPsqOkQexQ0Fk82nqY6ZEXj128lclDvrIkmsKbpM",[3676,3763,4002,4072,4085,4225,4235,4316],{"name":3677,"order":3678,"children":3679},"Application Guide",0,[3680,3729],{"title":3681,"path":3682,"group":3677,"groupOrder":3678,"order":99,"children":3683},"Building FlowFuse applications","\u002Fdocs\u002Fapplication-guide",[3684,3688,3700,3704,3720],{"title":3685,"path":3686,"order":99,"children":3687},"Foundations","\u002Fdocs\u002Fapplication-guide\u002Ffoundations",[],{"title":3689,"path":3690,"order":3246,"children":3691},"App delivery methods","\u002Fdocs\u002Fapplication-guide\u002Fapp-delivery-methods",[3692,3696],{"title":3693,"path":3694,"order":99,"children":3695},"Hardware apps","\u002Fdocs\u002Fapplication-guide\u002Fapp-delivery-methods\u002Fhardware-apps",[],{"title":3697,"path":3698,"order":3246,"children":3699},"Software apps","\u002Fdocs\u002Fapplication-guide\u002Fapp-delivery-methods\u002Fsoftware-apps",[],{"title":3701,"path":3702,"order":3250,"children":3703},"Data plane","\u002Fdocs\u002Fapplication-guide\u002Fdata-plane",[],{"title":3705,"path":3706,"order":3243,"children":3707},"Architectures","\u002Fdocs\u002Fapplication-guide\u002Farchitectures",[3708,3712,3716],{"title":3709,"path":3710,"order":99,"children":3711},"IT architectures","\u002Fdocs\u002Fapplication-guide\u002Farchitectures\u002Fit",[],{"title":3713,"path":3714,"order":3246,"children":3715},"OT architectures","\u002Fdocs\u002Fapplication-guide\u002Farchitectures\u002Fot",[],{"title":3717,"path":3718,"order":3250,"children":3719},"IIoT architectures","\u002Fdocs\u002Fapplication-guide\u002Farchitectures\u002Fiiot",[],{"title":3721,"path":3722,"order":3723,"children":3724},"Worked examples","\u002Fdocs\u002Fapplication-guide\u002Fworked-examples",5,[3725],{"title":3726,"path":3727,"order":99,"children":3728},"OEE, end to end","\u002Fdocs\u002Fapplication-guide\u002Fworked-examples\u002Foee",[],{"title":3730,"path":3731,"group":3677,"groupOrder":3678,"order":3246,"children":3732},"Designing Node-RED flows","\u002Fdocs\u002Fnode-red-guide",[3733,3736,3752],{"title":3685,"path":3734,"order":99,"children":3735},"\u002Fdocs\u002Fnode-red-guide\u002Ffoundations",[],{"title":3737,"path":3738,"order":3246,"children":3739},"Patterns","\u002Fdocs\u002Fnode-red-guide\u002Fpatterns",[3740,3744,3748],{"title":3741,"path":3742,"order":99,"children":3743},"Design patterns","\u002Fdocs\u002Fnode-red-guide\u002Fpatterns\u002Fdesign-patterns",[],{"title":3745,"path":3746,"order":3246,"children":3747},"Handling data","\u002Fdocs\u002Fnode-red-guide\u002Fpatterns\u002Fhandling-data",[],{"title":3749,"path":3750,"order":3250,"children":3751},"Good form","\u002Fdocs\u002Fnode-red-guide\u002Fpatterns\u002Fgood-form",[],{"title":3721,"path":3753,"order":3250,"children":3754},"\u002Fdocs\u002Fnode-red-guide\u002Fworked-examples",[3755,3759],{"title":3756,"path":3757,"order":99,"children":3758},"OEE - Edge Aggregator","\u002Fdocs\u002Fnode-red-guide\u002Fworked-examples\u002Foee-edge-aggregator",[],{"title":3760,"path":3761,"order":3246,"children":3762},"OEE - Central Dashboard","\u002Fdocs\u002Fnode-red-guide\u002Fworked-examples\u002Foee-central-dashboard",[],{"name":3764,"order":99,"children":3765},"FlowFuse User Manuals",[3766,3891,3895,3907],{"title":3767,"path":3768,"group":3764,"groupOrder":99,"order":99,"children":3769,"link":3297},"Using FlowFuse","\u002Fdocs\u002Fuser",[3770,3774,3778,3782,3786,3791,3795,3798,3802,3806,3809,3813,3829,3833,3837,3841,3845,3848,3852,3856,3860,3864,3868,3871,3875,3879,3883,3887],{"title":3771,"path":3772,"order":99,"children":3773},"Getting Started","\u002Fdocs\u002Fuser\u002Fintroduction",[],{"title":3775,"path":3776,"order":99,"children":3777},"Static asset service","\u002Fdocs\u002Fuser\u002Fstatic-asset-service",[],{"title":3779,"path":3780,"order":3246,"children":3781},"Bill of Materials","\u002Fdocs\u002Fuser\u002Fbill-of-materials",[],{"title":3783,"path":3784,"order":3246,"children":3785},"FlowFuse Concepts","\u002Fdocs\u002Fuser\u002Fconcepts",[],{"title":3787,"path":3788,"order":3789,"children":3790},"Instance States","\u002Fdocs\u002Fuser\u002Finstance-states",10,[],{"title":3792,"path":3793,"order":3260,"children":3794},"Changing the Stack","\u002Fdocs\u002Fuser\u002Fchangestack",[],{"title":3458,"path":3796,"order":3260,"children":3797},"\u002Fdocs\u002Fuser\u002Fcustom-hostnames",[],{"title":3799,"path":3800,"order":3260,"children":3801},"Custom Node Packages","\u002Fdocs\u002Fuser\u002Fcustom-npm-packages",[],{"title":3803,"path":3804,"order":3260,"children":3805},"Dashboards","\u002Fdocs\u002Fuser\u002Fdashboards",[],{"title":3476,"path":3807,"order":3260,"children":3808},"\u002Fdocs\u002Fuser\u002Fdevops-pipelines",[],{"title":3810,"path":3811,"order":3260,"children":3812},"Environment Variables","\u002Fdocs\u002Fuser\u002Fenvvar",[],{"title":3814,"path":3815,"order":3260,"children":3816},"FlowFuse Expert","\u002Fdocs\u002Fuser\u002Fexpert",[3817,3821,3825],{"title":3818,"path":3819,"order":3260,"children":3820},"AI in Node-RED","\u002Fdocs\u002Fuser\u002Fexpert\u002Fnode-red-embedded-ai",[],{"title":3822,"path":3823,"order":3260,"children":3824},"Chat Interface","\u002Fdocs\u002Fuser\u002Fexpert\u002Fchat",[],{"title":3826,"path":3827,"order":3260,"children":3828},"Connect Your Own Agent","\u002Fdocs\u002Fuser\u002Fexpert\u002Fthird-party-agents",[],{"title":3830,"path":3831,"order":3260,"children":3832},"FlowFuse File Nodes","\u002Fdocs\u002Fuser\u002Ffilenodes",[],{"title":3834,"path":3835,"order":3260,"children":3836},"FlowFuse MQTT Nodes","\u002Fdocs\u002Fuser\u002Fmqtt-nodes",[],{"title":3838,"path":3839,"order":3260,"children":3840},"FlowFuse Persistent Context","\u002Fdocs\u002Fuser\u002Fpersistent-context",[],{"title":3842,"path":3843,"order":3260,"children":3844},"FlowFuse Project Nodes","\u002Fdocs\u002Fuser\u002Fprojectnodes",[],{"title":3354,"path":3846,"order":3260,"children":3847},"\u002Fdocs\u002Fuser\u002Fff-tables",[],{"title":3849,"path":3850,"order":3260,"children":3851},"Groups","\u002Fdocs\u002Fuser\u002Fdevice-groups",[],{"title":3853,"path":3854,"order":3260,"children":3855},"High Availability mode","\u002Fdocs\u002Fuser\u002Fhigh-availability",[],{"title":3857,"path":3858,"order":3260,"children":3859},"HTTP Access Tokens","\u002Fdocs\u002Fuser\u002Fhttp-access-tokens",[],{"title":3861,"path":3862,"order":3260,"children":3863},"Instance Settings","\u002Fdocs\u002Fuser\u002Finstance-settings",[],{"title":3865,"path":3866,"order":3260,"children":3867},"Logging","\u002Fdocs\u002Fuser\u002Flogs",[],{"title":3614,"path":3869,"order":3260,"children":3870},"\u002Fdocs\u002Fuser\u002Frole-based-access-control",[],{"title":3872,"path":3873,"order":3260,"children":3874},"Shared Team Library","\u002Fdocs\u002Fuser\u002Fshared-library",[],{"title":3876,"path":3877,"order":3260,"children":3878},"Snapshots","\u002Fdocs\u002Fuser\u002Fsnapshots",[],{"title":3880,"path":3881,"order":3260,"children":3882},"Team Broker","\u002Fdocs\u002Fuser\u002Fteambroker",[],{"title":3884,"path":3885,"order":3260,"children":3886},"Teams","\u002Fdocs\u002Fuser\u002Fteam",[],{"title":3888,"path":3889,"order":3260,"children":3890},"User Settings","\u002Fdocs\u002Fuser\u002Fuser-settings",[],{"title":3892,"path":3893,"group":3764,"groupOrder":99,"order":3246,"children":3894},"FlowFuse API","\u002Fdocs\u002Fapi",[],{"title":3896,"path":3897,"group":3764,"groupOrder":99,"order":3250,"children":3898,"link":3297},"Migrating a Node-RED project to FlowFuse","\u002Fdocs\u002Fmigration",[3899,3903],{"title":3900,"path":3901,"order":99,"children":3902},"Introduction","\u002Fdocs\u002Fmigration\u002Fintroduction",[],{"title":3904,"path":3905,"order":3260,"children":3906},"Node-RED Tools plugin","\u002Fdocs\u002Fmigration\u002Fnode-red-tools",[],{"title":3908,"path":3909,"group":3764,"groupOrder":99,"order":3243,"children":3910},"FlowFuse Node-RED nodes","\u002Fdocs\u002Fflowfuse-nodes",[3911,3936,3956,3963,3983,3994],{"title":3912,"path":3913,"order":99,"children":3914},"AI","\u002Fdocs\u002Fflowfuse-nodes\u002Fai",[3915,3919,3924,3928,3932],{"title":3916,"path":3917,"order":3723,"children":3918},"LLM Nodes","\u002Fdocs\u002Fflowfuse-nodes\u002Fai\u002Fllm-nodes",[],{"title":3920,"path":3921,"order":3922,"children":3923},"Depth Estimation","\u002Fdocs\u002Fflowfuse-nodes\u002Fai\u002Fdepth-estimation",50,[],{"title":3925,"path":3926,"order":3922,"children":3927},"Image Classification","\u002Fdocs\u002Fflowfuse-nodes\u002Fai\u002Fimage-classification",[],{"title":3929,"path":3930,"order":3922,"children":3931},"Object Detection","\u002Fdocs\u002Fflowfuse-nodes\u002Fai\u002Fobject-detection",[],{"title":3933,"path":3934,"order":3922,"children":3935},"ONXX","\u002Fdocs\u002Fflowfuse-nodes\u002Fai\u002Fonxx",[],{"title":3937,"path":3938,"order":3246,"children":3939},"MCP","\u002Fdocs\u002Fflowfuse-nodes\u002Fmcp",[3940,3944,3948,3952],{"title":3941,"path":3942,"order":3922,"children":3943},"MCP Prompt","\u002Fdocs\u002Fflowfuse-nodes\u002Fmcp\u002Fmcp-prompt",[],{"title":3945,"path":3946,"order":3922,"children":3947},"MCP Resource","\u002Fdocs\u002Fflowfuse-nodes\u002Fmcp\u002Fmcp-resource",[],{"title":3949,"path":3950,"order":3922,"children":3951},"MCP Responses","\u002Fdocs\u002Fflowfuse-nodes\u002Fmcp\u002Fmcp-response",[],{"title":3953,"path":3954,"order":3922,"children":3955},"MCP Tool","\u002Fdocs\u002Fflowfuse-nodes\u002Fmcp\u002Fmcp-tool",[],{"title":3354,"path":3957,"order":3250,"children":3958},"\u002Fdocs\u002Fflowfuse-nodes\u002Fflowfuse-tables",[3959],{"title":3960,"path":3961,"order":3922,"children":3962},"Query","\u002Fdocs\u002Fflowfuse-nodes\u002Fflowfuse-tables\u002Fquery",[],{"title":3964,"path":3965,"order":3243,"children":3966},"Edge","\u002Fdocs\u002Fflowfuse-nodes\u002Fedge",[3967,3971,3975,3979],{"title":3968,"path":3969,"order":99,"children":3970},"RTSP Video Feed","\u002Fdocs\u002Fflowfuse-nodes\u002Fedge\u002Frtsp",[],{"title":3972,"path":3973,"order":3246,"children":3974},"CIP Suite, EtherNet\u002FIP Nodes","\u002Fdocs\u002Fflowfuse-nodes\u002Fedge\u002Fcip-suite",[],{"title":3976,"path":3977,"order":3250,"children":3978},"Modbus","\u002Fdocs\u002Fflowfuse-nodes\u002Fedge\u002Fmodbus",[],{"title":3980,"path":3981,"order":3922,"children":3982},"OPC UA","\u002Fdocs\u002Fflowfuse-nodes\u002Fedge\u002Fopcua",[],{"title":3834,"path":3984,"order":3723,"children":3985},"\u002Fdocs\u002Fflowfuse-nodes\u002Fmqtt",[3986,3990],{"title":3987,"path":3988,"order":3922,"children":3989},"MQTT In","\u002Fdocs\u002Fflowfuse-nodes\u002Fmqtt\u002Fmqtt-in",[],{"title":3991,"path":3992,"order":3922,"children":3993},"MQTT Out","\u002Fdocs\u002Fflowfuse-nodes\u002Fmqtt\u002Fmqtt-out",[],{"title":3995,"path":3996,"order":3723,"children":3997},"Hub","\u002Fdocs\u002Fflowfuse-nodes\u002Fhub",[3998],{"title":3999,"path":4000,"order":99,"children":4001},"Redis","\u002Fdocs\u002Fflowfuse-nodes\u002Fhub\u002Fredis",[],{"name":4003,"order":3246,"children":4004},"Device Agent",[4005,4053],{"title":4003,"path":4006,"group":4003,"groupOrder":3246,"order":99,"children":4007,"link":3297},"\u002Fdocs\u002Fdevice-agent",[4008,4012,4016,4041,4045,4049],{"title":4009,"path":4010,"order":99,"children":4011},"FlowFuse Device Agent Introduction","\u002Fdocs\u002Fdevice-agent\u002Fintroduction",[],{"title":4013,"path":4014,"order":3246,"children":4015},"Quick Start","\u002Fdocs\u002Fdevice-agent\u002Fquickstart",[],{"title":4017,"path":4018,"group":4019,"order":3250,"children":4020,"link":3297},"Installation","\u002Fdocs\u002Fdevice-agent\u002Finstall","DeviceAgentInstallation",[4021,4025,4029,4033,4037],{"title":4022,"path":4023,"group":4019,"order":99,"children":4024},"Overview","\u002Fdocs\u002Fdevice-agent\u002Finstall\u002Foverview",[],{"title":4026,"path":4027,"group":4019,"order":3246,"children":4028},"Device Agent Installer","\u002Fdocs\u002Fdevice-agent\u002Finstall\u002Fdevice-agent-installer",[],{"title":4030,"path":4031,"group":4019,"order":3250,"children":4032},"Docker Install","\u002Fdocs\u002Fdevice-agent\u002Finstall\u002Fdocker",[],{"title":4034,"path":4035,"group":4019,"order":3243,"children":4036},"Kubernetes Install","\u002Fdocs\u002Fdevice-agent\u002Finstall\u002Fkubernetes",[],{"title":4038,"path":4039,"group":4019,"order":3723,"children":4040},"Manual Install with NPM","\u002Fdocs\u002Fdevice-agent\u002Finstall\u002Fmanual",[],{"title":4042,"path":4043,"order":3243,"children":4044},"Register your Remote Instance","\u002Fdocs\u002Fdevice-agent\u002Fregister",[],{"title":4046,"path":4047,"order":3723,"children":4048},"Running the Agent","\u002Fdocs\u002Fdevice-agent\u002Frunning",[],{"title":4050,"path":4051,"order":3263,"children":4052},"Deploying your Flows","\u002Fdocs\u002Fdevice-agent\u002Fdeploy",[],{"title":4054,"path":4055,"group":4003,"groupOrder":3246,"order":3246,"children":4056,"link":3297},"Hardware Guides","\u002Fdocs\u002Fhardware",[4057,4060,4064,4068],{"title":4022,"path":4058,"order":99,"children":4059},"\u002Fdocs\u002Fhardware\u002Fintroduction",[],{"title":4061,"path":4062,"order":3246,"children":4063},"ctrlX - Node-RED","\u002Fdocs\u002Fhardware\u002Fctrlx-node-red",[],{"title":4065,"path":4066,"order":3250,"children":4067},"ctrlX - Device Agent","\u002Fdocs\u002Fhardware\u002Fctrlx-device-agent",[],{"title":4069,"path":4070,"order":3250,"children":4071},"Raspberry Pi with Raspbian","\u002Fdocs\u002Fhardware\u002Fraspbian",[],{"name":4073,"order":3250,"children":4074},"FlowFuse Cloud",[4075],{"title":4073,"path":4076,"group":4073,"groupOrder":3250,"order":3250,"children":4077,"link":3297},"\u002Fdocs\u002Fcloud",[4078,4081],{"title":3900,"path":4079,"order":99,"children":4080},"\u002Fdocs\u002Fcloud\u002Fintroduction",[],{"title":4082,"path":4083,"order":3260,"children":4084},"FlowFuse Cloud Billing","\u002Fdocs\u002Fcloud\u002Fbilling",[],{"name":4086,"order":3243,"children":4087},"FlowFuse Self-Hosted",[4088,4091,4166,4178],{"title":4013,"path":4089,"group":4086,"groupOrder":3243,"order":99,"children":4090},"\u002Fdocs\u002Fquick-start",[],{"title":4092,"path":4093,"group":4086,"groupOrder":3243,"order":3246,"children":4094,"link":3297},"Installing FlowFuse","\u002Fdocs\u002Finstall",[4095,4098,4102,4106,4126,4130,4134,4138],{"title":4022,"path":4096,"order":99,"children":4097},"\u002Fdocs\u002Finstall\u002Fintroduction",[],{"title":4099,"path":4100,"order":3260,"children":4101},"Configuring FlowFuse","\u002Fdocs\u002Finstall\u002Fconfiguration",[],{"title":4103,"path":4104,"order":3260,"children":4105},"DNS Setup","\u002Fdocs\u002Finstall\u002Fdns-setup",[],{"title":4107,"path":4108,"order":3260,"children":4109},"Docker install","\u002Fdocs\u002Finstall\u002Fdocker",[4110,4114,4118,4122],{"title":4111,"path":4112,"order":3260,"children":4113},"Add Project Stacks on Docker","\u002Fdocs\u002Finstall\u002Fdocker\u002Fstacks",[],{"title":4115,"path":4116,"order":3260,"children":4117},"Docker Engine on Windows","\u002Fdocs\u002Finstall\u002Fdocker\u002Fwindows-docker-ce",[],{"title":4119,"path":4120,"order":3260,"children":4121},"Docker from AWS Market Place","\u002Fdocs\u002Finstall\u002Fdocker\u002Faws-marketplace",[],{"title":4123,"path":4124,"order":3260,"children":4125},"Docker on Digital Ocean","\u002Fdocs\u002Finstall\u002Fdocker\u002Fdigital-ocean",[],{"title":4127,"path":4128,"order":3260,"children":4129},"Email configuration","\u002Fdocs\u002Finstall\u002Femail-providers",[],{"title":4131,"path":4132,"order":3260,"children":4133},"First Run Setup","\u002Fdocs\u002Finstall\u002Ffirst-run",[],{"title":4135,"path":4136,"order":3260,"children":4137},"FlowFuse File Storage","\u002Fdocs\u002Finstall\u002Ffile-storage",[],{"title":4139,"path":4140,"order":3260,"children":4141},"Install FlowFuse on Kubernetes","\u002Fdocs\u002Finstall\u002Fkubernetes",[4142,4146,4150,4154,4158,4162],{"title":4143,"path":4144,"order":3260,"children":4145},"AWS EKS Installation","\u002Fdocs\u002Finstall\u002Fkubernetes\u002Faws",[],{"title":4147,"path":4148,"order":3260,"children":4149},"AWS EKS Installation with Terraform and Helm","\u002Fdocs\u002Finstall\u002Fkubernetes\u002Faws-terraform",[],{"title":4151,"path":4152,"order":3260,"children":4153},"Digital Ocean Kubernetes Installation","\u002Fdocs\u002Finstall\u002Fkubernetes\u002Fdigital-ocean",[],{"title":4155,"path":4156,"order":3260,"children":4157},"Ingress Controller Migration","\u002Fdocs\u002Finstall\u002Fkubernetes\u002Fingress-controller-migration",[],{"title":4159,"path":4160,"order":3260,"children":4161},"Kubernetes Project Stacks","\u002Fdocs\u002Finstall\u002Fkubernetes\u002Fstacks",[],{"title":4163,"path":4164,"order":3260,"children":4165},"OpenShift Installation","\u002Fdocs\u002Finstall\u002Fkubernetes\u002Fopenshift",[],{"title":4167,"path":4168,"group":4086,"groupOrder":3243,"order":3250,"children":4169},"Upgrading FlowFuse","\u002Fdocs\u002Fupgrade",[4170,4174],{"title":4171,"path":4172,"order":3260,"children":4173},"Installing a license","\u002Fdocs\u002Fupgrade\u002Fopen-source-to-premium",[],{"title":4175,"path":4176,"order":3260,"children":4177},"Upgrading the Node-RED version","\u002Fdocs\u002Fupgrade\u002Fnodered-version",[],{"title":4179,"path":4180,"group":4086,"groupOrder":3243,"order":3243,"children":4181,"link":3297},"Administering FlowFuse","\u002Fdocs\u002Fadmin",[4182,4185,4197,4205,4209,4213,4217,4221],{"title":4179,"path":4183,"order":99,"children":4184},"\u002Fdocs\u002Fadmin\u002Fintroduction",[],{"title":4186,"path":4187,"order":3260,"children":4188},"Configuring Single Sign-On (SSO)","\u002Fdocs\u002Fadmin\u002Fsso",[4189,4193],{"title":4190,"path":4191,"order":3260,"children":4192},"LDAP SSO","\u002Fdocs\u002Fadmin\u002Fsso\u002Fldap",[],{"title":4194,"path":4195,"order":3260,"children":4196},"SAML SSO","\u002Fdocs\u002Fadmin\u002Fsso\u002Fsaml",[],{"title":4198,"path":4199,"order":3260,"children":4200,"link":3297},"Hardening","\u002Fdocs\u002Fadmin\u002Fhardening",[4201],{"title":4202,"path":4203,"order":3260,"children":4204},"Kubernetes Hardening","\u002Fdocs\u002Fadmin\u002Fhardening\u002Fkubernetes",[],{"title":4206,"path":4207,"order":3260,"children":4208},"Monitoring","\u002Fdocs\u002Fadmin\u002Fmonitoring",[],{"title":4210,"path":4211,"order":3260,"children":4212},"Observability","\u002Fdocs\u002Fadmin\u002Fobservability",[],{"title":4214,"path":4215,"order":3260,"children":4216},"Soft Launch Enablement","\u002Fdocs\u002Fadmin\u002Ffeature-flags",[],{"title":4218,"path":4219,"order":3260,"children":4220},"Telemetry","\u002Fdocs\u002Fadmin\u002Ftelemetry",[],{"title":4222,"path":4223,"order":3260,"children":4224},"User Management","\u002Fdocs\u002Fadmin\u002Fuser-management",[],{"name":3657,"order":3723,"children":4226},[4227,4231],{"title":4228,"path":4229,"group":3657,"groupOrder":3723,"order":3250,"children":4230},"Premium Support","\u002Fdocs\u002Fpremium-support",[],{"title":4232,"path":4233,"group":3657,"groupOrder":3723,"order":3260,"children":4234},"Debugging Node-RED issues","\u002Fdocs\u002Fdebugging",[],{"name":4236,"order":3263,"children":4237},"Contributing",[4238],{"title":4239,"path":4240,"group":4236,"groupOrder":3263,"order":3260,"children":4241,"link":3297},"Contributing to FlowFuse","\u002Fdocs\u002Fcontribute",[4242,4245,4249,4253,4257,4261,4265,4273,4309,4312],{"title":3900,"path":4243,"order":99,"children":4244},"\u002Fdocs\u002Fcontribute\u002Fintroduction",[],{"title":4246,"path":4247,"order":3260,"children":4248},"Adding Template Settings","\u002Fdocs\u002Fcontribute\u002Fadding-template-settings",[],{"title":4250,"path":4251,"order":3260,"children":4252},"API Design","\u002Fdocs\u002Fcontribute\u002Fapi-design",[],{"title":4254,"path":4255,"order":3260,"children":4256},"Creating debug stack containers","\u002Fdocs\u002Fcontribute\u002Fcreating-debug-stack-containers",[],{"title":4258,"path":4259,"order":3260,"children":4260},"Database migrations","\u002Fdocs\u002Fcontribute\u002Fdb-migrations",[],{"title":4262,"path":4263,"order":3260,"children":4264},"FlowFuse Architecture","\u002Fdocs\u002Fcontribute\u002Farchitecture",[],{"title":4266,"path":4267,"order":3260,"children":4268},"Local Install","\u002Fdocs\u002Fcontribute\u002Flocal",[4269],{"title":4270,"path":4271,"order":3260,"children":4272},"Local Stacks","\u002Fdocs\u002Fcontribute\u002Flocal\u002Fstacks",[],{"title":4274,"path":4275,"order":3260,"children":4276},"State Flows","\u002Fdocs\u002Fcontribute\u002Fworkflows",[4277,4281,4285,4289,4293,4297,4301,4305],{"title":4278,"path":4279,"order":3260,"children":4280},"Device Editor","\u002Fdocs\u002Fcontribute\u002Fworkflows\u002Fdevice-editor",[],{"title":4282,"path":4283,"order":3260,"children":4284},"Instance states","\u002Fdocs\u002Fcontribute\u002Fworkflows\u002Fproject-states",[],{"title":4286,"path":4287,"order":3260,"children":4288},"Invite External Users","\u002Fdocs\u002Fcontribute\u002Fworkflows\u002Finvite-external-user",[],{"title":4290,"path":4291,"order":3260,"children":4292},"Project Creation","\u002Fdocs\u002Fcontribute\u002Fworkflows\u002Fproject-create",[],{"title":4294,"path":4295,"order":3260,"children":4296},"Reset Password Flow","\u002Fdocs\u002Fcontribute\u002Fworkflows\u002Fpassword-reset",[],{"title":4298,"path":4299,"order":3260,"children":4300},"Team creation Flow","\u002Fdocs\u002Fcontribute\u002Fworkflows\u002Fteam-create",[],{"title":4302,"path":4303,"order":3260,"children":4304},"User Login Flows","\u002Fdocs\u002Fcontribute\u002Fworkflows\u002Flogin",[],{"title":4306,"path":4307,"order":3260,"children":4308},"User Sign up Flow","\u002Fdocs\u002Fcontribute\u002Fworkflows\u002Fsignup",[],{"title":3880,"path":4310,"order":3260,"children":4311},"\u002Fdocs\u002Fcontribute\u002Fteam-broker",[],{"title":4313,"path":4314,"order":3260,"children":4315},"Working with Feature Flags","\u002Fdocs\u002Fcontribute\u002Ffeature-flags",[],{"name":4317,"order":4318,"children":4319},"Node-RED",7,[4320],{"title":4321,"path":4322,"group":4317,"groupOrder":4318,"order":99,"children":4323},"Using Node-RED","\u002Fdocs\u002Fnode-red",[4324,4397,4574,4601,4640,4656,4672,4700,4720,4724],{"title":4325,"path":4326,"order":3246,"children":4327},"Getting started","\u002Fdocs\u002Fnode-red\u002Fgetting-started",[4328,4348,4352,4356,4360,4364,4368,4372,4376],{"title":4329,"path":4330,"order":99,"children":4331},"Editor","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Feditor",[4332,4336,4340,4344],{"title":4333,"path":4334,"order":3922,"children":4335},"Header","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Feditor\u002Fheader",[],{"title":4337,"path":4338,"order":3922,"children":4339},"Palette","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Feditor\u002Fpalette",[],{"title":4341,"path":4342,"order":3922,"children":4343},"Sidebar","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Feditor\u002Fsidebar",[],{"title":4345,"path":4346,"order":3922,"children":4347},"Workspace","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Feditor\u002Fworkspace",[],{"title":4349,"path":4350,"order":3246,"children":4351},"Port Configuration","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Fnode-red-port",[],{"title":4353,"path":4354,"order":3250,"children":4355},"Node-RED Library","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Flibrary",[],{"title":4357,"path":4358,"order":3250,"children":4359},"Update Node-RED","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Fupdate-node-red",[],{"title":4361,"path":4362,"order":3243,"children":4363},"Node-RED On Android","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Fnode-red-android",[],{"title":4365,"path":4366,"order":3723,"children":4367},"Working with Messages","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Fnode-red-messages",[],{"title":4369,"path":4370,"order":3263,"children":4371},"String","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Fstring",[],{"title":4373,"path":4374,"order":4318,"children":4375},"Date & Time","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Fdate-and-time",[],{"title":4377,"path":4378,"order":4379,"children":4380},"Programming","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Fprogramming",8,[4381,4385,4389,4393],{"title":4382,"path":4383,"order":3922,"children":4384},"Data Tranformation","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Fprogramming\u002Fdata-tranformation",[],{"title":4386,"path":4387,"order":3922,"children":4388},"Debugging","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Fprogramming\u002Fdebugging-flows",[],{"title":4390,"path":4391,"order":3922,"children":4392},"If-Else","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Fprogramming\u002Fif-else",[],{"title":4394,"path":4395,"order":3922,"children":4396},"Loop","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Fprogramming\u002Floop",[],{"title":4398,"path":4399,"order":3250,"children":4400},"Core nodes","\u002Fdocs\u002Fnode-red\u002Fcore-nodes",[4401,4435,4476,4518,4538,4562],{"title":4402,"path":4403,"order":99,"children":4404},"Common nodes","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fcommon",[4405,4409,4413,4417,4421,4425,4427,4431],{"title":4406,"path":4407,"order":99,"children":4408},"Inject","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fcommon\u002Finject",[],{"title":4410,"path":4411,"order":3246,"children":4412},"Debug","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fcommon\u002Fdebug",[],{"title":4414,"path":4415,"order":3250,"children":4416},"Complete","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fcommon\u002Fcomplete",[],{"title":4418,"path":4419,"order":3243,"children":4420},"Catch","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fcommon\u002Fcatch",[],{"title":4422,"path":4423,"order":3723,"children":4424},"Status","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fcommon\u002Fstatus",[],{"title":13,"path":3265,"order":3263,"children":4426},[],{"title":4428,"path":4429,"order":4318,"children":4430},"Comment","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fcommon\u002Fcomment",[],{"title":4432,"path":4433,"order":4379,"children":4434},"Unknown","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fcommon\u002Funknown",[],{"title":4436,"path":4437,"order":3246,"children":4438},"Function nodes","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Ffunction",[4439,4443,4447,4451,4455,4459,4463,4467,4471],{"title":4440,"path":4441,"order":99,"children":4442},"Function","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Ffunction\u002Ffunction",[],{"title":4444,"path":4445,"order":3246,"children":4446},"Switch","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Ffunction\u002Fswitch",[],{"title":4448,"path":4449,"order":3250,"children":4450},"Change","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Ffunction\u002Fchange",[],{"title":4452,"path":4453,"order":3243,"children":4454},"Range","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Ffunction\u002Frange",[],{"title":4456,"path":4457,"order":3723,"children":4458},"Template","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Ffunction\u002Ftemplate",[],{"title":4460,"path":4461,"order":3263,"children":4462},"Delay","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Ffunction\u002Fdelay",[],{"title":4464,"path":4465,"order":4318,"children":4466},"Trigger","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Ffunction\u002Ftrigger",[],{"title":4468,"path":4469,"order":4379,"children":4470},"Exec","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Ffunction\u002Fexec",[],{"title":4472,"path":4473,"order":4474,"children":4475},"Filter","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Ffunction\u002Ffilter",9,[],{"title":4477,"path":4478,"order":3250,"children":4479},"Network nodes","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fnetwork",[4480,4484,4488,4491,4494,4498,4502,4506,4510,4514],{"title":4481,"path":4482,"order":99,"children":4483},"TLS","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fnetwork\u002Ftls",[],{"title":4485,"path":4486,"order":3246,"children":4487},"HTTP Proxy","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fnetwork\u002Fhttp-proxy",[],{"title":3987,"path":4489,"order":3250,"children":4490},"\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fnetwork\u002Fmqtt-in",[],{"title":3991,"path":4492,"order":3243,"children":4493},"\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fnetwork\u002Fmqtt-out",[],{"title":4495,"path":4496,"order":3723,"children":4497},"HTTP in","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fnetwork\u002Fhttp-in",[],{"title":4499,"path":4500,"order":3263,"children":4501},"HTTP request","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fnetwork\u002Fhttp-request",[],{"title":4503,"path":4504,"order":4318,"children":4505},"WebSocket","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fnetwork\u002Fwebsocket",[],{"title":4507,"path":4508,"order":4379,"children":4509},"TCP in","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fnetwork\u002Ftcp-in",[],{"title":4511,"path":4512,"order":4474,"children":4513},"UDP In","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fnetwork\u002Fudp-in",[],{"title":4515,"path":4516,"order":3789,"children":4517},"UDP Out","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fnetwork\u002Fudp-out",[],{"title":4519,"path":4520,"order":3243,"children":4521},"Sequence nodes","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fsequence",[4522,4526,4530,4534],{"title":4523,"path":4524,"order":99,"children":4525},"Split","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fsequence\u002Fsplit",[],{"title":4527,"path":4528,"order":3246,"children":4529},"Sort","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fsequence\u002Fsort",[],{"title":4531,"path":4532,"order":3250,"children":4533},"Batch","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fsequence\u002Fbatch",[],{"title":4535,"path":4536,"order":3243,"children":4537},"Join","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fsequence\u002Fjoin",[],{"title":4539,"path":4540,"order":3723,"children":4541},"Parser nodes","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fparsers",[4542,4546,4550,4554,4558],{"title":4543,"path":4544,"order":99,"children":4545},"CSV","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fparsers\u002Fcsv",[],{"title":4547,"path":4548,"order":3246,"children":4549},"HTML","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fparsers\u002Fhtml",[],{"title":4551,"path":4552,"order":3250,"children":4553},"JSON","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fparsers\u002Fjson",[],{"title":4555,"path":4556,"order":3243,"children":4557},"XML","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fparsers\u002Fxml",[],{"title":4559,"path":4560,"order":3723,"children":4561},"YAML","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fparsers\u002Fyaml",[],{"title":4563,"path":4564,"order":3263,"children":4565},"Storage nodes","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fstorage",[4566,4570],{"title":4567,"path":4568,"order":99,"children":4569},"Write File","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fstorage\u002Fwrite-file",[],{"title":4571,"path":4572,"order":3246,"children":4573},"Read File","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fstorage\u002Fread-file",[],{"title":4575,"path":4576,"order":3243,"children":4577},"Communication protocols","\u002Fdocs\u002Fnode-red\u002Fprotocol",[4578,4582,4586,4589,4593,4597],{"title":4579,"path":4580,"order":3922,"children":4581},"AMQP","\u002Fdocs\u002Fnode-red\u002Fprotocol\u002Famqp",[],{"title":4583,"path":4584,"order":3922,"children":4585},"LwM2M","\u002Fdocs\u002Fnode-red\u002Fprotocol\u002Flwm2m",[],{"title":3976,"path":4587,"order":3922,"children":4588},"\u002Fdocs\u002Fnode-red\u002Fprotocol\u002Fmodbus",[],{"title":4590,"path":4591,"order":3922,"children":4592},"MQTT","\u002Fdocs\u002Fnode-red\u002Fprotocol\u002Fmqtt",[],{"title":4594,"path":4595,"order":3922,"children":4596},"OPC-UA","\u002Fdocs\u002Fnode-red\u002Fprotocol\u002Fopc-ua",[],{"title":4598,"path":4599,"order":3922,"children":4600},"Websocket","\u002Fdocs\u002Fnode-red\u002Fprotocol\u002Fwebsocket",[],{"title":4602,"path":4603,"order":3723,"children":4604},"Databases","\u002Fdocs\u002Fnode-red\u002Fdatabase",[4605,4609,4613,4617,4621,4625,4629,4632,4636],{"title":4606,"path":4607,"order":3922,"children":4608},"DynamoDB","\u002Fdocs\u002Fnode-red\u002Fdatabase\u002Fdynamodb",[],{"title":4610,"path":4611,"order":3922,"children":4612},"Firebase","\u002Fdocs\u002Fnode-red\u002Fdatabase\u002Ffirebase",[],{"title":4614,"path":4615,"order":3922,"children":4616},"InfluxDB","\u002Fdocs\u002Fnode-red\u002Fdatabase\u002Finfluxdb",[],{"title":4618,"path":4619,"order":3922,"children":4620},"MongoDB","\u002Fdocs\u002Fnode-red\u002Fdatabase\u002Fmongodb",[],{"title":4622,"path":4623,"order":3922,"children":4624},"MySQL","\u002Fdocs\u002Fnode-red\u002Fdatabase\u002Fmysql",[],{"title":4626,"path":4627,"order":3922,"children":4628},"PostgreSQL","\u002Fdocs\u002Fnode-red\u002Fdatabase\u002Fpostgresql",[],{"title":3999,"path":4630,"order":3922,"children":4631},"\u002Fdocs\u002Fnode-red\u002Fdatabase\u002Fredis",[],{"title":4633,"path":4634,"order":3922,"children":4635},"SQLite","\u002Fdocs\u002Fnode-red\u002Fdatabase\u002Fsqlite",[],{"title":4637,"path":4638,"order":3922,"children":4639},"TimescaleDB","\u002Fdocs\u002Fnode-red\u002Fdatabase\u002Ftimescaledb",[],{"title":4641,"path":4642,"order":3263,"children":4643},"Integration technologies","\u002Fdocs\u002Fnode-red\u002Fintegration-technologies",[4644,4648,4652],{"title":4645,"path":4646,"order":3922,"children":4647},"GraphQL API","\u002Fdocs\u002Fnode-red\u002Fintegration-technologies\u002Fgraphql",[],{"title":4649,"path":4650,"order":3922,"children":4651},"REST API","\u002Fdocs\u002Fnode-red\u002Fintegration-technologies\u002Frest",[],{"title":4653,"path":4654,"order":3922,"children":4655},"Webhook","\u002Fdocs\u002Fnode-red\u002Fintegration-technologies\u002Fwebhook",[],{"title":4657,"path":4658,"order":4318,"children":4659},"Notification services","\u002Fdocs\u002Fnode-red\u002Fnotification",[4660,4664,4668],{"title":4661,"path":4662,"order":3922,"children":4663},"Discord","\u002Fdocs\u002Fnode-red\u002Fnotification\u002Fdiscord",[],{"title":4665,"path":4666,"order":3922,"children":4667},"Email","\u002Fdocs\u002Fnode-red\u002Fnotification\u002Femail",[],{"title":4669,"path":4670,"order":3922,"children":4671},"Telegram","\u002Fdocs\u002Fnode-red\u002Fnotification\u002Ftelegram",[],{"title":4673,"path":4674,"order":4379,"children":4675},"Hardware","\u002Fdocs\u002Fnode-red\u002Fhardware",[4676,4680,4684,4688,4692,4696],{"title":4677,"path":4678,"order":3922,"children":4679},"BLIIOT ARMxy BL340","\u002Fdocs\u002Fnode-red\u002Fhardware\u002Farmxy-bl340",[],{"title":4681,"path":4682,"order":3922,"children":4683},"Opto-22 Groov Epic","\u002Fdocs\u002Fnode-red\u002Fhardware\u002Fopto-22-groove-rio-7-mm2001-10",[],{"title":4685,"path":4686,"order":3922,"children":4687},"Raspberry Pi 4","\u002Fdocs\u002Fnode-red\u002Fhardware\u002Fraspberry-pi-4",[],{"title":4689,"path":4690,"order":3922,"children":4691},"Raspberry Pi 5","\u002Fdocs\u002Fnode-red\u002Fhardware\u002Fraspberry-pi-5",[],{"title":4693,"path":4694,"order":3922,"children":4695},"Robustel EG5120","\u002Fdocs\u002Fnode-red\u002Fhardware\u002Frobustel-eg5120",[],{"title":4697,"path":4698,"order":3922,"children":4699},"Siemens IoT2050","\u002Fdocs\u002Fnode-red\u002Fhardware\u002Fsiemens-iot-2050",[],{"title":4701,"path":4702,"order":4474,"children":4703},"Peripheral devices","\u002Fdocs\u002Fnode-red\u002Fperipheral",[4704,4708,4712,4716],{"title":4705,"path":4706,"order":3922,"children":4707},"Arduino","\u002Fdocs\u002Fnode-red\u002Fperipheral\u002Fardiuno",[],{"title":4709,"path":4710,"order":3922,"children":4711},"Barcode Scanner","\u002Fdocs\u002Fnode-red\u002Fperipheral\u002Fbarcodescanner",[],{"title":4713,"path":4714,"order":3922,"children":4715},"ESP32","\u002Fdocs\u002Fnode-red\u002Fperipheral\u002Fesp32",[],{"title":4717,"path":4718,"order":3922,"children":4719},"Webcam","\u002Fdocs\u002Fnode-red\u002Fperipheral\u002Fwebcam",[],{"title":4721,"path":4722,"order":3789,"children":4723},"Terminology","\u002Fdocs\u002Fnode-red\u002Fterminology",[],{"title":4725,"path":4726,"order":4727,"children":4728},"Keyboard shortcuts","\u002Fdocs\u002Fnode-red\u002Fkeyboard",11,[],{"html":4730},"\u003Cp>Create virtual wires between flows.\u003C\u002Fp>\n    \u003Ch3>Details\u003C\u002Fh3>\n    \u003Cp>The node can be connected to any \u003Ccode>link out\u003C\u002Fcode> node that exists on any tab.\n       Once connected, they behave as if they were wired together.\u003C\u002Fp>\n    \u003Cp>The wires between link nodes are only displayed when a link node is selected.\n       If there are any wires to other tabs, a virtual node is shown that can be clicked\n       on to jump to the appropriate tab.\u003C\u002Fp>\n    \u003Cp>\u003Cb>Note: \u003C\u002Fb>Links cannot be created going into, or out of, a subflow.\u003C\u002Fp>\n\n\u003Cp>Create virtual wires between flows.\u003C\u002Fp>\n    \u003Ch3>Details\u003C\u002Fh3>\n    \u003Cp>This node can be configured to either send messages to all \u003Ccode>link in\u003C\u002Fcode>\n       nodes it is connected to, or to send a response back to the \u003Ccode>link call\u003C\u002Fcode>\n       node that triggered the flow.\u003C\u002Fp>\n    \u003Cp>When in 'send to all' mode, the wires between link nodes are only displayed when\n       the node is selected. If there are any wires to other tabs, a virtual node\n       is shown that can be clicked on to jump to the appropriate tab.\u003C\u002Fp>\n    \u003Cp>\u003Cb>Note: \u003C\u002Fb>Links cannot be created going into, or out of, a subflow.\u003C\u002Fp>\n\n\u003Cp>Calls a flow that starts with a \u003Ccode>link in\u003C\u002Fcode> node and passes on the response.\u003C\u002Fp>\n    \u003Ch3>Inputs\u003C\u002Fh3>\n    \u003Cdl class=\"message-properties\">\n      \u003Cdt class=\"optional\">target\u003Cspan class=\"property-type\">string\u003C\u002Fspan>\u003C\u002Fdt>\n      \u003Cdd>When the option \u003Cb>Link Type\u003C\u002Fb> is set to \"Dynamic target\", set \u003Ccode>msg.target\u003C\u002Fcode> to the name of the\n          \u003Ccode>link in\u003C\u002Fcode> node you wish to call.\u003C\u002Fdd>\n    \u003C\u002Fdl>\n    \u003Ch3>Details\u003C\u002Fh3>\n    \u003Cp>This node can be connected to a \u003Ccode>link in\u003C\u002Fcode> node that exists on any tab.\u003C\u002Fp>\n    \u003Cp>The flow connected to that node must end with a \u003Ccode>link out\u003C\u002Fcode> node configured\n       in 'return' mode.\u003C\u002Fp>\n    \u003Cp>When this node receives a message, it is passed to the connected \u003Ccode>link in\u003C\u002Fcode> node.\n       It then waits for a response which it then sends on.\u003C\u002Fp>\n    \u003Cp>If no response is received within the configured timeout, default 30 seconds, the node\n       will log an error that can be caught using the \u003Ccode>catch\u003C\u002Fcode> node.\u003C\u002Fp>\n    \u003Cp>When the option \u003Cb>Link Type\u003C\u002Fb> is set to \"Dynamic target\" \u003Ccode>msg.target\u003C\u002Fcode> can be used to call a\n       \u003Ccode>link in\u003C\u002Fcode> by name or id:\u003C\u002Fp>\n    \u003Cul>\n      \u003Cli>If there is a \u003Ccode>link in\u003C\u002Fcode> nodes with the same id, it will be called\u003C\u002Fli>\n      \u003Cli>If there are two or more \u003Ccode>link in\u003C\u002Fcode> nodes with the same name, an error will be raised\u003C\u002Fli>\n      \u003Cli>A \u003Ccode>link call\u003C\u002Fcode> cannot call a \u003Ccode>link in\u003C\u002Fcode> node inside a subflow\u003C\u002Fli>\n    \u003C\u002Ful>",1788888658587]