[{"data":1,"prerenderedAt":5638},["ShallowReactive",2],{"blog-\u002Fblog\u002F2026\u002F07\u002Fcontrol-and-track-factory-floor-machines":3,"featureCatalog":2614,"changelog-titles":3008,"blog-all-for-related":3542},{"id":4,"title":5,"authors":6,"body":8,"cta":2590,"date":2594,"description":2595,"extension":2596,"features":2597,"image":2598,"lastUpdated":2597,"meta":2599,"navigation":1561,"path":2606,"release":2597,"seo":2607,"stem":2608,"subtitle":2609,"tags":2610,"tldr":2612,"video":2597,"__hash__":2613},"blog\u002Fblog\u002F2026\u002F07\u002Fcontrol-and-track-factory-floor-machines.md","Control and Track Machines on the Factory Floor",[7],"sumit-shinde",{"type":9,"value":10,"toc":2565},"minimark",[11,15,18,24,29,32,84,90,94,97,111,122,125,128,131,142,146,149,155,160,175,178,223,226,235,238,242,245,257,316,323,326,335,339,345,369,384,393,396,400,403,431,434,526,529,538,542,545,552,555,559,562,565,568,616,620,623,672,681,687,698,702,705,708,751,754,760,769,773,776,779,797,800,804,807,817,820,824,834,841,860,1052,1064,1067,1087,1090,1099,1103,1106,1127,1130,1133,1137,1140,1164,1199,1204,1210,1213,1217,1224,1228,1251,1263,1266,1360,1371,1375,1391,1405,2528,2540,2549,2556,2559,2562],[12,13,14],"p",{},"Operators need more than buttons to control machines - they also need visibility into what's actually happening on the factory floor. Knowing whether a motor is running is useful, but knowing how long it has been running helps with maintenance, production tracking, and troubleshooting.",[12,16,17],{},"In this tutorial, you'll connect FlowFuse to a Siemens S7 PLC, build an operator dashboard to control a motor and stack light, and automatically track the runtime of each device. By the end, you'll have a dashboard that not only sends commands to the PLC but also displays live operating time for every connected device.",[19,20],"lite-youtube",{"videoid":21,"style":22,"title":23},"kiOufj0ghxg","width: 100%; aspect-ratio: 16\u002F9; background-image: url('\u002Fblog\u002F2026\u002F07\u002Fimages\u002Fdemo-thumbnail.jpg'); background-size: cover; background-position: center;","Control and Track the Shopfloor Machines",[25,26,28],"h2",{"id":27},"prerequisites","Prerequisites",[12,30,31],{},"Before you begin, make sure you have the following:",[33,34,35,44,60,81],"ul",{},[36,37,38,39,43],"li",{},"A Siemens S7 PLC, or ",[40,41,42],"strong",{},"S7-PLCSIM"," if you're using a simulated PLC.",[36,45,46,47,54,55,59],{},"A FlowFuse instance running on your edge device with the Device Agent installed. If you don't already have one, ",[48,49,53],"a",{"href":50,"rel":51},"https:\u002F\u002Fapp.flowfuse.com\u002Faccount\u002Fcreate",[52],"nofollow","sign up"," and follow the ",[48,56,58],{"href":57},"\u002Fdocs\u002Fdevice-agent\u002Fquickstart\u002F","Device Agent Quick Start guide"," to connect your first device.",[36,61,62,63],{},"The following packages installed:\n",[33,64,65,71,76],{},[36,66,67],{},[68,69,70],"code",{},"@flowfuse\u002Fnode-red-dashboard",[36,72,73],{},[68,74,75],{},"node-red-contrib-s7",[36,77,78],{},[68,79,80],{},"node-red-contrib-hourglass",[36,82,83],{},"A motor and stack light connected to the PLC, or simulated outputs.",[85,86,87],"blockquote",{},[12,88,89],{},"Note: This tutorial uses a Siemens S7 PLC and the node-red-contrib-s7 package, but FlowFuse isn't limited to S7 PLCs. It has community nodes for most major PLC brands and protocols, including Allen-Bradley\u002FRockwell (EtherNet\u002FIP), Modbus, OPC UA, Mitsubishi, and more, so you can follow the same pattern with whichever PLC and connection node matches your hardware.",[25,91,93],{"id":92},"example-plc-logic","Example PLC Logic",[12,95,96],{},"The demo above uses a simple example PLC program with four normally open contacts stored inside a data block, each controlling a PLC output:",[33,98,99,102,105,108],{},[36,100,101],{},"Motor",[36,103,104],{},"RedLightCmd",[36,106,107],{},"YellowLightCmd",[36,109,110],{},"GreenLightCmd",[12,112,113,114,117,118,121],{},"Whenever one of these data block values is set to ",[68,115,116],{},"TRUE",", the PLC energizes the corresponding output. Setting the value back to ",[68,119,120],{},"FALSE"," turns the output off again.",[12,123,124],{},"Throughout this tutorial, FlowFuse writes to these data block variables whenever an operator interacts with the dashboard. At the same time, it continuously reads those same variables so it always knows the current state of each device. We'll later use those live values to calculate runtime automatically.",[12,126,127],{},"If your PLC program is structured differently, that's fine: you just need to know which data block(s) and addresses correspond to the outputs you want to control, and adjust the variable configuration in the following sections accordingly.",[12,129,130],{},"The example ladder logic used in this tutorial is shown below.",[12,132,133,138],{},[134,135],"img",{"alt":136,"src":137},"Example ladder logic with four normally open contacts controlling the motor, red light, yellow light, and green light outputs","\u002Fblog\u002F2026\u002F07\u002Fimages\u002Fplc-program-runtime.png",[139,140,141],"em",{},"The example ladder logic used in this tutorial: four contacts controlling the motor and the three stack light colors.",[25,143,145],{"id":144},"connecting-flowfuse-to-the-plc","Connecting FlowFuse to the PLC",[12,147,148],{},"With an example PLC program in mind, let's establish communication between FlowFuse and the controller.",[12,150,151,152,154],{},"We'll use the ",[68,153,75],{}," package to communicate with the PLC. The first task is creating an S7 endpoint, which stores the connection details that every S7 node in the flow will reuse.",[156,157,159],"h3",{"id":158},"configure-the-s7-endpoint","Configure the S7 Endpoint",[12,161,162,163,166,167,170,171,174],{},"Drag either an ",[40,164,165],{},"S7 In"," or ",[40,168,169],{},"S7 Out"," node onto the workspace and create a new ",[40,172,173],{},"S7 Endpoint",".",[12,176,177],{},"Configure it as follows:",[179,180,181,188,191,197,203,213],"ol",{},[36,182,183,184,187],{},"Select ",[40,185,186],{},"Ethernet (ISO on TCP)"," as the transport.",[36,189,190],{},"Enter the PLC's IP address.",[36,192,193,194,174],{},"Leave the port set to ",[40,195,196],{},"102",[36,198,199,200,174],{},"Set the connection mode to ",[40,201,202],{},"Rack",[36,204,205,206,208,209,212],{},"Enter the appropriate ",[40,207,202],{}," and ",[40,210,211],{},"Slot"," values for your PLC.",[36,214,215,216,208,219,222],{},"Set the ",[40,217,218],{},"Cycle Time",[40,220,221],{},"Timeout"," values according to your application's requirements.",[12,224,225],{},"Your configuration should look similar to the example below.",[12,227,228,232],{},[134,229],{"alt":230,"src":231},"S7 Endpoint configuration showing transport, IP address, rack, slot, and cycle time fields","\u002Fblog\u002F2026\u002F07\u002Fimages\u002Fplc-config.png",[139,233,234],{},"S7 Endpoint configuration used to connect FlowFuse to the PLC over Ethernet (ISO on TCP).",[12,236,237],{},"The endpoint now manages communication with the PLC, allowing every S7 node in the flow to reuse the same connection rather than creating multiple independent PLC connections.",[156,239,241],{"id":240},"add-the-plc-variables","Add the PLC Variables",[12,243,244],{},"Next, tell the endpoint which PLC variables it should read and write.",[179,246,247,254],{},[36,248,249,250,253],{},"Open the ",[40,251,252],{},"Variables"," tab.",[36,255,256],{},"Add the following variables.",[258,259,260,273],"table",{},[261,262,263],"thead",{},[264,265,266,270],"tr",{},[267,268,269],"th",{},"Variable",[267,271,272],{},"Address",[274,275,276,286,296,306],"tbody",{},[264,277,278,281],{},[279,280,101],"td",{},[279,282,283],{},[68,284,285],{},"DB1,X0.0",[264,287,288,291],{},[279,289,290],{},"Red Light",[279,292,293],{},[68,294,295],{},"DB1,X0.1",[264,297,298,301],{},[279,299,300],{},"Yellow Light",[279,302,303],{},[68,304,305],{},"DB1,X0.2",[264,307,308,311],{},[279,309,310],{},"Green Light",[279,312,313],{},[68,314,315],{},"DB1,X0.3",[12,317,318,319,174],{},"These addresses correspond to the example ladder logic used in this tutorial. Replace them with the data block and address values that match the outputs on your own PLC. If you'd like to learn more about how variable addresses are defined for the S7 nodes, see our guide on ",[48,320,322],{"href":321},"\u002Fblog\u002F2025\u002F01\u002Fintegrating-siemens-s7-plcs-with-node-red-guide\u002F#addressing-scheme-for-variables-in-node-red-with-the-s7-node","Addressing Scheme for Variables in FlowFuse with the S7 Node",[12,324,325],{},"After adding them, your configuration should resemble the following.",[12,327,328,332],{},[134,329],{"alt":330,"src":331},"S7 Endpoint Variables tab listing Motor, Red Light, Yellow Light, and Green Light with their data block addresses","\u002Fblog\u002F2026\u002F07\u002Fimages\u002Fs7-config-variables-counter.png",[139,333,334],{},"The four PLC variables mapped to their data block addresses in the S7 Endpoint.",[156,336,338],{"id":337},"add-the-output-nodes","Add the Output Nodes",[12,340,341,342,344],{},"The dashboard will control each PLC output independently, so we'll create one ",[40,343,169],{}," node per Output.",[179,346,347,353,356],{},[36,348,349,350,352],{},"Drag four ",[40,351,169],{}," nodes onto the workspace.",[36,354,355],{},"Configure each node to use the endpoint created earlier.",[36,357,358,359],{},"Assign one PLC variable to each node:\n",[33,360,361,363,365,367],{},[36,362,101],{},[36,364,290],{},[36,366,300],{},[36,368,310],{},[12,370,371,372,374,375,377,378,380,381,383],{},"All four nodes are configured the same way: only the assigned variable changes. For reference, here's the configuration for the ",[40,373,101],{}," node; configure the other three the same way, assigning ",[40,376,290],{},", ",[40,379,300],{},", and ",[40,382,310],{}," respectively.",[12,385,386,390],{},[134,387],{"alt":388,"src":389},"S7 Out node configured to write to the Motor variable using the S7 Endpoint","\u002Fblog\u002F2026\u002F07\u002Fimages\u002Fmotor-s7-out.png",[139,391,392],{},"Reference configuration for the Motor S7 Out node. Repeat this setup for Red Light, Yellow Light, and Green Light, changing only the assigned variable.",[12,394,395],{},"Each node is now responsible for updating a single PLC variable whenever it receives a new value.",[156,397,399],{"id":398},"read-the-plc-status","Read the PLC Status",[12,401,402],{},"Writing values to the PLC is only half of the solution. We also need to monitor the current output states so the dashboard always reflects what's happening inside the controller.",[179,404,405,411,414,421,428],{},[36,406,407,408,410],{},"Drag an ",[40,409,165],{}," node onto the workspace.",[36,412,413],{},"Select the same S7 Endpoint.",[36,415,416,417,420],{},"Set the node to ",[40,418,419],{},"All Variables"," mode.",[36,422,423,424,427],{},"Connect a ",[40,425,426],{},"Debug"," node to its output.",[36,429,430],{},"Deploy the flow.",[12,432,433],{},"Whenever one of the configured variables changes, the S7 In node publishes the latest state of every PLC variable as a single object.",[435,436,441],"pre",{"className":437,"code":438,"language":439,"meta":440,"style":440},"language-javascript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n    \"Motor\": true,\n    \"Red Light\": false,\n    \"Yellow Light\": false,\n    \"Green Light\": true\n}\n","javascript","",[68,442,443,452,475,491,506,520],{"__ignoreMap":440},[444,445,448],"span",{"class":446,"line":447},"line",1,[444,449,451],{"class":450},"sMK4o","{\n",[444,453,455,458,461,464,468,472],{"class":446,"line":454},2,[444,456,457],{"class":450},"    \"",[444,459,101],{"class":460},"sfazB",[444,462,463],{"class":450},"\"",[444,465,467],{"class":466},"swJcz",": ",[444,469,471],{"class":470},"sfNiH","true",[444,473,474],{"class":450},",\n",[444,476,478,480,482,484,486,489],{"class":446,"line":477},3,[444,479,457],{"class":450},[444,481,290],{"class":460},[444,483,463],{"class":450},[444,485,467],{"class":466},[444,487,488],{"class":470},"false",[444,490,474],{"class":450},[444,492,494,496,498,500,502,504],{"class":446,"line":493},4,[444,495,457],{"class":450},[444,497,300],{"class":460},[444,499,463],{"class":450},[444,501,467],{"class":466},[444,503,488],{"class":470},[444,505,474],{"class":450},[444,507,509,511,513,515,517],{"class":446,"line":508},5,[444,510,457],{"class":450},[444,512,310],{"class":460},[444,514,463],{"class":450},[444,516,467],{"class":466},[444,518,519],{"class":470},"true\n",[444,521,523],{"class":446,"line":522},6,[444,524,525],{"class":450},"}\n",[12,527,528],{},"This message represents the live state of the PLC. Later in the tutorial we'll use these values to synchronize the dashboard and determine when each runtime timer should start or stop.",[12,530,531,535],{},[134,532],{"alt":533,"src":534},"S7 In node set to All Variables mode connected to a Debug node, with the Debug panel showing the live PLC state object","\u002Fblog\u002F2026\u002F07\u002Fimages\u002Fread-all-s7-in.png",[139,536,537],{},"S7 In node reading all PLC variables at once and publishing the combined state to a Debug node.",[156,539,541],{"id":540},"verify-the-connection","Verify the Connection",[12,543,544],{},"Once everything has been configured, deploy the flow one final time.",[12,546,547,548,551],{},"If the connection is successful, every S7 node should display an ",[40,549,550],{},"Online"," status.",[12,553,554],{},"At this point, FlowFuse can both control the PLC outputs and continuously monitor their current state. In the next section, we'll use these S7 nodes to build an operator dashboard for controlling the motor and stack light.",[25,556,558],{"id":557},"building-the-dashboard","Building the Dashboard",[12,560,561],{},"With communication to the PLC established, we can now build the operator interface.",[12,563,564],{},"For this tutorial, the dashboard provides controls for both the motor and the stack light. The motor uses two buttons: one to start it and another to stop it, while each stack light color is controlled using its own switch.",[12,566,567],{},"The finished dashboard will contain the following widgets.",[258,569,570,580],{},[261,571,572],{},[264,573,574,577],{},[267,575,576],{},"Widget",[267,578,579],{},"Purpose",[274,581,582,590,597,604,610],{},[264,583,584,587],{},[279,585,586],{},"Button",[279,588,589],{},"Start Motor",[264,591,592,594],{},[279,593,586],{},[279,595,596],{},"Stop Motor",[264,598,599,602],{},[279,600,601],{},"Switch",[279,603,290],{},[264,605,606,608],{},[279,607,601],{},[279,609,300],{},[264,611,612,614],{},[279,613,601],{},[279,615,310],{},[156,617,619],{"id":618},"control-the-motor","Control the Motor",[12,621,622],{},"Let's start by creating the controls for the motor.",[179,624,625,631,650,666],{},[36,626,627,628,630],{},"Add two ",[40,629,586],{}," widgets to the dashboard.",[36,632,633,634],{},"Configure the first button with:\n",[33,635,636,642],{},[36,637,638,641],{},[40,639,640],{},"Label:"," Start Motor",[36,643,644,647,648],{},[40,645,646],{},"Payload:"," ",[68,649,471],{},[36,651,652,653],{},"Configure the second button with:\n",[33,654,655,660],{},[36,656,657,659],{},[40,658,640],{}," Stop Motor",[36,661,662,647,664],{},[40,663,646],{},[68,665,488],{},[36,667,668,669,671],{},"Connect both buttons to the ",[40,670,101],{}," S7 Out node.",[12,673,674,675,677,678,680],{},"Whenever an operator presses one of these buttons, the corresponding Boolean value is written to the PLC. Writing ",[68,676,471],{}," starts the motor, while writing ",[68,679,488],{}," stops it.",[12,682,683,684,686],{},"Configure each button the same way, changing only the label and payload. For example, here's the configuration for the ",[40,685,589],{}," button:",[12,688,689,693],{},[134,690],{"alt":691,"src":692},"Button widget configuration with label \"Start Motor\" and payload set to true","\u002Fblog\u002F2026\u002F07\u002Fimages\u002Fmotor-on-button-config.png",[139,694,695,696,174],{},"Example Button widget configuration for Start Motor. Use the same setup for Stop Motor, with the payload set to ",[68,697,488],{},[156,699,701],{"id":700},"control-the-stack-light","Control the Stack Light",[12,703,704],{},"Next, create controls for each color of the stack light.",[12,706,707],{},"Rather than using buttons, switches are a better choice because they clearly indicate whether each light is currently enabled or disabled.",[179,709,710,715,726,745],{},[36,711,712,713,630],{},"Add three ",[40,714,601],{},[36,716,717,718],{},"Label them:\n",[33,719,720,722,724],{},[36,721,290],{},[36,723,300],{},[36,725,310],{},[36,727,728,729],{},"Configure each switch with:\n",[33,730,731,738],{},[36,732,733,647,736],{},[40,734,735],{},"ON Payload:",[68,737,471],{},[36,739,740,647,743],{},[40,741,742],{},"OFF Payload:",[68,744,488],{},[36,746,747,748,750],{},"Connect each switch to its corresponding ",[40,749,169],{}," node.",[12,752,753],{},"When a switch changes state, FlowFuse immediately writes the updated value to the PLC, turning the selected light on or off.",[12,755,756,757,759],{},"Configure each switch the same way, changing only the label and connected node. For example, here's the configuration for the ",[40,758,290],{}," switch:",[12,761,762,766],{},[134,763],{"alt":764,"src":765},"Switch widget configuration for Red Light with ON payload true and OFF payload false","\u002Fblog\u002F2026\u002F07\u002Fimages\u002Fred-led-switch.png",[139,767,768],{},"Example Switch widget configuration for Red Light. Use the same setup for Yellow Light and Green Light.",[156,770,772],{"id":771},"test-the-dashboard","Test the Dashboard",[12,774,775],{},"At this point the dashboard is fully wired to the PLC.",[12,777,778],{},"Deploy the flow and open the dashboard in your browser. Verify that:",[33,780,781,787,791,794],{},[36,782,783,784,786],{},"Pressing ",[40,785,589],{}," starts the motor.",[36,788,783,789,680],{},[40,790,596],{},[36,792,793],{},"Each switch controls the correct stack light output.",[36,795,796],{},"Changes made from the dashboard are immediately reflected in the PLC.",[12,798,799],{},"You now have a functional PLC control dashboard that can operate each connected device independently.",[25,801,803],{"id":802},"tracking-device-runtime","Tracking Device Runtime",[12,805,806],{},"The dashboard can now control the PLC, but it still doesn't provide any information about how long each device has been operating.",[12,808,809,810,812,813,816],{},"Since the ",[40,811,165],{}," node continuously reports the state of every PLC output, we can use those values to determine when a device starts and stops running. We'll use the ",[40,814,815],{},"Hourglass"," node to maintain an independent runtime counter for each device.",[12,818,819],{},"Before connecting the Hourglass nodes, we first need to convert the PLC states into the commands they expect.",[156,821,823],{"id":822},"convert-plc-states-into-timer-commands","Convert PLC States into Timer Commands",[12,825,826,827,166,830,833],{},"The S7 In node outputs all configured variables as a single object. The Hourglass node, however, expects individual messages containing either a ",[68,828,829],{},"start",[68,831,832],{},"stop"," command.",[12,835,836,837,840],{},"We'll use a ",[40,838,839],{},"Function"," node to bridge this gap.",[179,842,843,851,857],{},[36,844,845,846,848,849,750],{},"Drag a ",[40,847,839],{}," node onto the workspace after the ",[40,850,165],{},[36,852,853,854,174],{},"Configure the node with ",[40,855,856],{},"four outputs",[36,858,859],{},"Replace the default code with the following:",[435,861,863],{"className":437,"code":862,"language":439,"meta":440,"style":440},"return [\n    { command: msg.payload.Motor ? \"start\" : \"stop\" },\n    { command: msg.payload[\"Red Light\"] ? \"start\" : \"stop\" },\n    { command: msg.payload[\"Yellow Light\"] ? \"start\" : \"stop\" },\n    { command: msg.payload[\"Green Light\"] ? \"start\" : \"stop\" }\n];\n",[68,864,865,875,921,963,1003,1044],{"__ignoreMap":440},[444,866,867,871],{"class":446,"line":447},[444,868,870],{"class":869},"s7zQu","return",[444,872,874],{"class":873},"sTEyZ"," [\n",[444,876,877,880,883,886,889,891,894,896,899,902,905,907,909,912,914,916,918],{"class":446,"line":454},[444,878,879],{"class":450},"    {",[444,881,882],{"class":466}," command",[444,884,885],{"class":450},":",[444,887,888],{"class":873}," msg",[444,890,174],{"class":450},[444,892,893],{"class":873},"payload",[444,895,174],{"class":450},[444,897,898],{"class":873},"Motor ",[444,900,901],{"class":450},"?",[444,903,904],{"class":450}," \"",[444,906,829],{"class":460},[444,908,463],{"class":450},[444,910,911],{"class":450}," :",[444,913,904],{"class":450},[444,915,832],{"class":460},[444,917,463],{"class":450},[444,919,920],{"class":450}," },\n",[444,922,923,925,927,929,931,933,936,938,940,942,945,947,949,951,953,955,957,959,961],{"class":446,"line":477},[444,924,879],{"class":450},[444,926,882],{"class":466},[444,928,885],{"class":450},[444,930,888],{"class":873},[444,932,174],{"class":450},[444,934,935],{"class":873},"payload[",[444,937,463],{"class":450},[444,939,290],{"class":460},[444,941,463],{"class":450},[444,943,944],{"class":873},"] ",[444,946,901],{"class":450},[444,948,904],{"class":450},[444,950,829],{"class":460},[444,952,463],{"class":450},[444,954,911],{"class":450},[444,956,904],{"class":450},[444,958,832],{"class":460},[444,960,463],{"class":450},[444,962,920],{"class":450},[444,964,965,967,969,971,973,975,977,979,981,983,985,987,989,991,993,995,997,999,1001],{"class":446,"line":493},[444,966,879],{"class":450},[444,968,882],{"class":466},[444,970,885],{"class":450},[444,972,888],{"class":873},[444,974,174],{"class":450},[444,976,935],{"class":873},[444,978,463],{"class":450},[444,980,300],{"class":460},[444,982,463],{"class":450},[444,984,944],{"class":873},[444,986,901],{"class":450},[444,988,904],{"class":450},[444,990,829],{"class":460},[444,992,463],{"class":450},[444,994,911],{"class":450},[444,996,904],{"class":450},[444,998,832],{"class":460},[444,1000,463],{"class":450},[444,1002,920],{"class":450},[444,1004,1005,1007,1009,1011,1013,1015,1017,1019,1021,1023,1025,1027,1029,1031,1033,1035,1037,1039,1041],{"class":446,"line":508},[444,1006,879],{"class":450},[444,1008,882],{"class":466},[444,1010,885],{"class":450},[444,1012,888],{"class":873},[444,1014,174],{"class":450},[444,1016,935],{"class":873},[444,1018,463],{"class":450},[444,1020,310],{"class":460},[444,1022,463],{"class":450},[444,1024,944],{"class":873},[444,1026,901],{"class":450},[444,1028,904],{"class":450},[444,1030,829],{"class":460},[444,1032,463],{"class":450},[444,1034,911],{"class":450},[444,1036,904],{"class":450},[444,1038,832],{"class":460},[444,1040,463],{"class":450},[444,1042,1043],{"class":450}," }\n",[444,1045,1046,1049],{"class":446,"line":522},[444,1047,1048],{"class":873},"]",[444,1050,1051],{"class":450},";\n",[12,1053,1054,1055,166,1057,1059,1060,1063],{},"The Function node examines the current state of each PLC output and converts it into either a ",[68,1056,829],{},[68,1058,832],{}," command. Update the field names (",[68,1061,1062],{},"msg.payload.Motor",", etc.) to match the variable names you used in your own PLC Variables configuration.",[12,1065,1066],{},"For example:",[33,1068,1069,1078],{},[36,1070,1071,1072,1074,1075,174],{},"If the motor is running (",[68,1073,471],{},"), the first output sends ",[68,1076,1077],{},"{ command: \"start\" }",[36,1079,1080,1081,1083,1084,174],{},"If the motor stops (",[68,1082,488],{},"), it sends ",[68,1085,1086],{},"{ command: \"stop\" }",[12,1088,1089],{},"The same logic is applied independently to each stack light.",[12,1091,1092,1096],{},[134,1093],{"alt":1094,"src":1095},"Function node code editor showing the four-output script that converts PLC states into start and stop commands","\u002Fblog\u002F2026\u002F07\u002Fimages\u002Ffunction-config-state-to-commands.png",[139,1097,1098],{},"Function node converting the PLC's live output states into start\u002Fstop commands for the four Hourglass nodes.",[156,1100,1102],{"id":1101},"add-the-hourglass-nodes","Add the Hourglass Nodes",[12,1104,1105],{},"Now that each device has its own stream of timer commands, we can begin tracking runtime.",[179,1107,1108,1111,1114],{},[36,1109,1110],{},"Drag four Hourglass nodes onto the workspace.",[36,1112,1113],{},"Configure each node to use English as the language.",[36,1115,1116,1117],{},"Use one Hourglass node for each device:\n",[33,1118,1119,1121,1123,1125],{},[36,1120,101],{},[36,1122,290],{},[36,1124,300],{},[36,1126,310],{},[12,1128,1129],{},"All four nodes use the same configuration: only the device they're wired to changes.",[12,1131,1132],{},"Each Hourglass node maintains its own accumulated runtime. This means every device is tracked independently, allowing the motor and each stack light to start and stop without affecting the timers for the other devices.",[156,1134,1136],{"id":1135},"request-runtime-updates","Request Runtime Updates",[12,1138,1139],{},"The Hourglass node stores the elapsed time internally and only reports its current status when requested. To keep the dashboard updated in real time, we'll periodically ask each Hourglass node to publish its current runtime.",[179,1141,1142,1149,1155,1161],{},[36,1143,1144,1145,1148],{},"Add an ",[40,1146,1147],{},"Inject"," node to the workspace.",[36,1150,1151,1152,174],{},"Configure it to repeat every ",[40,1153,1154],{},"1 second",[36,1156,1157,1158,174],{},"Set the payload type to ",[40,1159,1160],{},"JSON",[36,1162,1163],{},"Use the following payload:",[435,1165,1169],{"className":1166,"code":1167,"language":1168,"meta":440,"style":440},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n    \"command\": \"status\"\n}\n","json",[68,1170,1171,1175,1195],{"__ignoreMap":440},[444,1172,1173],{"class":446,"line":447},[444,1174,451],{"class":450},[444,1176,1177,1179,1183,1185,1187,1189,1192],{"class":446,"line":454},[444,1178,457],{"class":450},[444,1180,1182],{"class":1181},"spNyl","command",[444,1184,463],{"class":450},[444,1186,885],{"class":450},[444,1188,904],{"class":450},[444,1190,1191],{"class":460},"status",[444,1193,1194],{"class":450},"\"\n",[444,1196,1197],{"class":446,"line":477},[444,1198,525],{"class":450},[179,1200,1201],{"start":508},[36,1202,1203],{},"Connect the Inject node to all four Hourglass nodes.",[12,1205,1206,1207,1209],{},"Every second, the Inject node sends a ",[68,1208,1191],{}," command, prompting each Hourglass node to return its latest runtime information.",[12,1211,1212],{},"At this point, every Hourglass node is continuously tracking the runtime of its assigned device and publishing an updated status once per second. The final step is displaying that information on the dashboard.",[25,1214,1216],{"id":1215},"displaying-the-runtime","Displaying the Runtime",[12,1218,1219,1220,1223],{},"We'll use ",[40,1221,1222],{},"UI Template"," widgets to build a simple HMI-style runtime display for each device.",[156,1225,1227],{"id":1226},"create-the-runtime-display","Create the Runtime Display",[179,1229,1230,1235,1238],{},[36,1231,349,1232,1234],{},[40,1233,1222],{}," widgets onto the workspace and configure each one to use the appropriate Page and Group based on your dashboard layout and type to \"Widget ( Group Scoped )\"",[36,1236,1237],{},"Connect each Hourglass node to its corresponding UI Template.",[36,1239,1240,1241],{},"Give each widget an appropriate label:\n",[33,1242,1243,1245,1247,1249],{},[36,1244,101],{},[36,1246,290],{},[36,1248,300],{},[36,1250,310],{},[85,1252,1253],{},[12,1254,1255,1258,1259,174],{},[40,1256,1257],{},"Note:"," The dashboard layout, groups, and theme are intentionally left to your preference. You can organize the widgets in whatever way best suits your application. For guidance on pages, groups, navigation, layouts, and styling in FlowFuse Dashboard, see ",[48,1260,1262],{"href":1261},"\u002Fblog\u002F2024\u002F05\u002Fnode-red-dashboard-2-layout-navigation-styling\u002F","FlowFuse Dashboard: Layout, Navigation & Styling",[12,1264,1265],{},"Whenever an Hourglass node publishes its status, the connected UI Template receives a message similar to the following.",[435,1267,1269],{"className":437,"code":1268,"language":439,"meta":440,"style":440},"{\n    started: true,\n    elapsed: {\n        time: {\n            hours: 0,\n            minutes: 12,\n            seconds: 34\n        }\n    }\n}\n",[68,1270,1271,1275,1288,1298,1307,1320,1332,1343,1349,1355],{"__ignoreMap":440},[444,1272,1273],{"class":446,"line":447},[444,1274,451],{"class":450},[444,1276,1277,1281,1283,1286],{"class":446,"line":454},[444,1278,1280],{"class":1279},"sBMFI","    started",[444,1282,885],{"class":450},[444,1284,1285],{"class":470}," true",[444,1287,474],{"class":450},[444,1289,1290,1293,1295],{"class":446,"line":477},[444,1291,1292],{"class":1279},"    elapsed",[444,1294,885],{"class":450},[444,1296,1297],{"class":450}," {\n",[444,1299,1300,1303,1305],{"class":446,"line":493},[444,1301,1302],{"class":1279},"        time",[444,1304,885],{"class":450},[444,1306,1297],{"class":450},[444,1308,1309,1312,1314,1318],{"class":446,"line":508},[444,1310,1311],{"class":1279},"            hours",[444,1313,885],{"class":450},[444,1315,1317],{"class":1316},"sbssI"," 0",[444,1319,474],{"class":450},[444,1321,1322,1325,1327,1330],{"class":446,"line":522},[444,1323,1324],{"class":1279},"            minutes",[444,1326,885],{"class":450},[444,1328,1329],{"class":1316}," 12",[444,1331,474],{"class":450},[444,1333,1335,1338,1340],{"class":446,"line":1334},7,[444,1336,1337],{"class":1279},"            seconds",[444,1339,885],{"class":450},[444,1341,1342],{"class":1316}," 34\n",[444,1344,1346],{"class":446,"line":1345},8,[444,1347,1348],{"class":450},"        }\n",[444,1350,1352],{"class":446,"line":1351},9,[444,1353,1354],{"class":450},"    }\n",[444,1356,1358],{"class":446,"line":1357},10,[444,1359,525],{"class":450},[12,1361,1362,1363,1366,1367,1370],{},"The ",[68,1364,1365],{},"started"," property indicates whether the device is currently running, while ",[68,1368,1369],{},"elapsed.time"," contains the accumulated runtime.",[156,1372,1374],{"id":1373},"build-the-runtime-widget","Build the Runtime Widget",[12,1376,1377,1378,1380,1381,377,1383,377,1385,1387,1388,1390],{},"Paste the following code into each ",[40,1379,1222],{}," widget, updating only the device label (for example ",[40,1382,101],{},[40,1384,290],{},[40,1386,300],{},", or ",[40,1389,310],{},") where required.",[85,1392,1393],{},[12,1394,1395,1397,1398,1401,1402,174],{},[40,1396,1257],{}," If you'd like a different design for the runtime widget, you can use ",[40,1399,1400],{},"FlowFuse Expert",". Simply describe the UI you want in plain English, and it will generate the component for your dashboard. Learn more about ",[48,1403,1400],{"href":1404},"\u002Fdocs\u002Fuser\u002Fexpert\u002Fnode-red-embedded-ai",[435,1406,1410],{"className":1407,"code":1408,"language":1409,"meta":440,"style":440},"language-html shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u003Ctemplate>\n  \u003Cdiv class=\"hmi-timer\" :class=\"{ running: started }\" @mouseenter=\"hover = true\" @mouseleave=\"hover = false\">\n    \u003Cspan class=\"label\">Motor\u003C\u002Fspan>\n    \u003Cspan class=\"clock\">{{ clock }}\u003C\u002Fspan>\n  \u003C\u002Fdiv>\n\u003C\u002Ftemplate>\n\n\u003Cscript>\nexport default {\n  name: 'HmiTimer',\n  data() {\n    return { hover: false }\n  },\n  computed: {\n    started() {\n      return this.msg?.started === true\n    },\n    clock() {\n      const t = this.msg?.elapsed?.time\n      const pad = (n) => String(n ?? 0).padStart(2, '0')\n\n      if (!t) return '00h:00m:00s'\n\n      return `${pad(t.hours)}h:${pad(t.minutes)}m:${pad(t.seconds)}s`\n    }\n  }\n}\n\u003C\u002Fscript>\n\n\u003Cstyle scoped>\n.hmi-timer {\n  --accent: #2ecc71;\n  display: flex;\n  flex-direction: row;\n  align-items: center;\n  justify-content: center;\n  gap: 16px;\n  width: 100%;\n  box-sizing: border-box;\n  background: #11161d;\n  border: 1px solid #2c3744;\n  border-radius: 10px;\n  font-family: 'Courier New', monospace;\n  font-weight: 700;\n  letter-spacing: 2px;\n  padding: 16px 24px;\n  color: #5b6675;\n  transition: all .3s ease;\n  transform: .95;\n}\n\n.label {\n  font-size: 2.4rem;\n  font-weight: 600;\n}\n\n.clock {\n  font-size: 2.4rem;\n}\n\n.hmi-timer.running {\n  padding: 26px 36px;\n  color: var(--accent);\n  border-color: var(--accent);\n  background: #0d1c13;\n  box-shadow: 0 0 18px rgba(46, 204, 113, .35),\n              inset 0 0 12px rgba(46, 204, 113, .15);\n}\n\n.hmi-timer.running .label {\n  font-size: 3.6rem;\n}\n\n.hmi-timer.running .clock {\n  font-size: 5rem;\n}\n\u003C\u002Fstyle>\n","html",[68,1411,1412,1423,1482,1512,1540,1549,1557,1563,1572,1582,1600,1611,1630,1636,1646,1655,1678,1684,1694,1720,1782,1787,1814,1819,1880,1885,1891,1896,1905,1910,1923,1932,1948,1962,1975,1988,2000,2013,2026,2039,2054,2076,2089,2111,2124,2137,2152,2167,2186,2199,2204,2209,2218,2231,2243,2248,2253,2262,2273,2278,2283,2297,2312,2330,2346,2360,2401,2435,2440,2445,2463,2475,2480,2485,2502,2514,2519],{"__ignoreMap":440},[444,1413,1414,1417,1420],{"class":446,"line":447},[444,1415,1416],{"class":450},"\u003C",[444,1418,1419],{"class":466},"template",[444,1421,1422],{"class":450},">\n",[444,1424,1425,1428,1431,1434,1437,1439,1442,1444,1447,1449,1451,1454,1456,1459,1461,1463,1466,1468,1471,1473,1475,1478,1480],{"class":446,"line":454},[444,1426,1427],{"class":450},"  \u003C",[444,1429,1430],{"class":466},"div",[444,1432,1433],{"class":1181}," class",[444,1435,1436],{"class":450},"=",[444,1438,463],{"class":450},[444,1440,1441],{"class":460},"hmi-timer",[444,1443,463],{"class":450},[444,1445,1446],{"class":1181}," :class",[444,1448,1436],{"class":450},[444,1450,463],{"class":450},[444,1452,1453],{"class":460},"{ running: started }",[444,1455,463],{"class":450},[444,1457,1458],{"class":1181}," @mouseenter",[444,1460,1436],{"class":450},[444,1462,463],{"class":450},[444,1464,1465],{"class":460},"hover = true",[444,1467,463],{"class":450},[444,1469,1470],{"class":1181}," @mouseleave",[444,1472,1436],{"class":450},[444,1474,463],{"class":450},[444,1476,1477],{"class":460},"hover = false",[444,1479,463],{"class":450},[444,1481,1422],{"class":450},[444,1483,1484,1487,1489,1491,1493,1495,1498,1500,1503,1505,1508,1510],{"class":446,"line":477},[444,1485,1486],{"class":450},"    \u003C",[444,1488,444],{"class":466},[444,1490,1433],{"class":1181},[444,1492,1436],{"class":450},[444,1494,463],{"class":450},[444,1496,1497],{"class":460},"label",[444,1499,463],{"class":450},[444,1501,1502],{"class":450},">",[444,1504,101],{"class":873},[444,1506,1507],{"class":450},"\u003C\u002F",[444,1509,444],{"class":466},[444,1511,1422],{"class":450},[444,1513,1514,1516,1518,1520,1522,1524,1527,1529,1531,1534,1536,1538],{"class":446,"line":493},[444,1515,1486],{"class":450},[444,1517,444],{"class":466},[444,1519,1433],{"class":1181},[444,1521,1436],{"class":450},[444,1523,463],{"class":450},[444,1525,1526],{"class":460},"clock",[444,1528,463],{"class":450},[444,1530,1502],{"class":450},[444,1532,1533],{"class":873},"{{ clock }}",[444,1535,1507],{"class":450},[444,1537,444],{"class":466},[444,1539,1422],{"class":450},[444,1541,1542,1545,1547],{"class":446,"line":508},[444,1543,1544],{"class":450},"  \u003C\u002F",[444,1546,1430],{"class":466},[444,1548,1422],{"class":450},[444,1550,1551,1553,1555],{"class":446,"line":522},[444,1552,1507],{"class":450},[444,1554,1419],{"class":466},[444,1556,1422],{"class":450},[444,1558,1559],{"class":446,"line":1334},[444,1560,1562],{"emptyLinePlaceholder":1561},true,"\n",[444,1564,1565,1567,1570],{"class":446,"line":1345},[444,1566,1416],{"class":450},[444,1568,1569],{"class":466},"script",[444,1571,1422],{"class":450},[444,1573,1574,1577,1580],{"class":446,"line":1351},[444,1575,1576],{"class":869},"export",[444,1578,1579],{"class":869}," default",[444,1581,1297],{"class":450},[444,1583,1584,1587,1589,1592,1595,1598],{"class":446,"line":1357},[444,1585,1586],{"class":466},"  name",[444,1588,885],{"class":450},[444,1590,1591],{"class":450}," '",[444,1593,1594],{"class":460},"HmiTimer",[444,1596,1597],{"class":450},"'",[444,1599,474],{"class":450},[444,1601,1603,1606,1609],{"class":446,"line":1602},11,[444,1604,1605],{"class":466},"  data",[444,1607,1608],{"class":450},"()",[444,1610,1297],{"class":450},[444,1612,1614,1617,1620,1623,1625,1628],{"class":446,"line":1613},12,[444,1615,1616],{"class":869},"    return",[444,1618,1619],{"class":450}," {",[444,1621,1622],{"class":466}," hover",[444,1624,885],{"class":450},[444,1626,1627],{"class":470}," false",[444,1629,1043],{"class":450},[444,1631,1633],{"class":446,"line":1632},13,[444,1634,1635],{"class":450},"  },\n",[444,1637,1639,1642,1644],{"class":446,"line":1638},14,[444,1640,1641],{"class":466},"  computed",[444,1643,885],{"class":450},[444,1645,1297],{"class":450},[444,1647,1649,1651,1653],{"class":446,"line":1648},15,[444,1650,1280],{"class":466},[444,1652,1608],{"class":450},[444,1654,1297],{"class":450},[444,1656,1658,1661,1664,1667,1670,1672,1675],{"class":446,"line":1657},16,[444,1659,1660],{"class":869},"      return",[444,1662,1663],{"class":450}," this.",[444,1665,1666],{"class":873},"msg",[444,1668,1669],{"class":450},"?.",[444,1671,1365],{"class":873},[444,1673,1674],{"class":450}," ===",[444,1676,1677],{"class":470}," true\n",[444,1679,1681],{"class":446,"line":1680},17,[444,1682,1683],{"class":450},"    },\n",[444,1685,1687,1690,1692],{"class":446,"line":1686},18,[444,1688,1689],{"class":466},"    clock",[444,1691,1608],{"class":450},[444,1693,1297],{"class":450},[444,1695,1697,1700,1703,1706,1708,1710,1712,1715,1717],{"class":446,"line":1696},19,[444,1698,1699],{"class":1181},"      const",[444,1701,1702],{"class":873}," t",[444,1704,1705],{"class":450}," =",[444,1707,1663],{"class":450},[444,1709,1666],{"class":873},[444,1711,1669],{"class":450},[444,1713,1714],{"class":873},"elapsed",[444,1716,1669],{"class":450},[444,1718,1719],{"class":873},"time\n",[444,1721,1723,1725,1728,1730,1733,1737,1740,1743,1747,1750,1752,1755,1757,1759,1761,1764,1766,1769,1772,1774,1777,1779],{"class":446,"line":1722},20,[444,1724,1699],{"class":1181},[444,1726,1727],{"class":873}," pad",[444,1729,1705],{"class":450},[444,1731,1732],{"class":450}," (",[444,1734,1736],{"class":1735},"sHdIc","n",[444,1738,1739],{"class":450},")",[444,1741,1742],{"class":1181}," =>",[444,1744,1746],{"class":1745},"s2Zo4"," String",[444,1748,1749],{"class":466},"(",[444,1751,1736],{"class":873},[444,1753,1754],{"class":450}," ??",[444,1756,1317],{"class":1316},[444,1758,1739],{"class":466},[444,1760,174],{"class":450},[444,1762,1763],{"class":1745},"padStart",[444,1765,1749],{"class":466},[444,1767,1768],{"class":1316},"2",[444,1770,1771],{"class":450},",",[444,1773,1591],{"class":450},[444,1775,1776],{"class":460},"0",[444,1778,1597],{"class":450},[444,1780,1781],{"class":466},")\n",[444,1783,1785],{"class":446,"line":1784},21,[444,1786,1562],{"emptyLinePlaceholder":1561},[444,1788,1790,1793,1795,1798,1801,1804,1806,1808,1811],{"class":446,"line":1789},22,[444,1791,1792],{"class":869},"      if",[444,1794,1732],{"class":466},[444,1796,1797],{"class":450},"!",[444,1799,1800],{"class":873},"t",[444,1802,1803],{"class":466},") ",[444,1805,870],{"class":869},[444,1807,1591],{"class":450},[444,1809,1810],{"class":460},"00h:00m:00s",[444,1812,1813],{"class":450},"'\n",[444,1815,1817],{"class":446,"line":1816},23,[444,1818,1562],{"emptyLinePlaceholder":1561},[444,1820,1822,1824,1827,1830,1833,1835,1838,1841,1844,1847,1849,1851,1853,1856,1858,1861,1863,1865,1867,1869,1872,1874,1877],{"class":446,"line":1821},24,[444,1823,1660],{"class":869},[444,1825,1826],{"class":450}," `${",[444,1828,1829],{"class":1745},"pad",[444,1831,1832],{"class":873},"(t",[444,1834,174],{"class":450},[444,1836,1837],{"class":873},"hours)",[444,1839,1840],{"class":450},"}",[444,1842,1843],{"class":460},"h:",[444,1845,1846],{"class":450},"${",[444,1848,1829],{"class":1745},[444,1850,1832],{"class":873},[444,1852,174],{"class":450},[444,1854,1855],{"class":873},"minutes)",[444,1857,1840],{"class":450},[444,1859,1860],{"class":460},"m:",[444,1862,1846],{"class":450},[444,1864,1829],{"class":1745},[444,1866,1832],{"class":873},[444,1868,174],{"class":450},[444,1870,1871],{"class":873},"seconds)",[444,1873,1840],{"class":450},[444,1875,1876],{"class":460},"s",[444,1878,1879],{"class":450},"`\n",[444,1881,1883],{"class":446,"line":1882},25,[444,1884,1354],{"class":450},[444,1886,1888],{"class":446,"line":1887},26,[444,1889,1890],{"class":450},"  }\n",[444,1892,1894],{"class":446,"line":1893},27,[444,1895,525],{"class":450},[444,1897,1899,1901,1903],{"class":446,"line":1898},28,[444,1900,1507],{"class":450},[444,1902,1569],{"class":466},[444,1904,1422],{"class":450},[444,1906,1908],{"class":446,"line":1907},29,[444,1909,1562],{"emptyLinePlaceholder":1561},[444,1911,1913,1915,1918,1921],{"class":446,"line":1912},30,[444,1914,1416],{"class":450},[444,1916,1917],{"class":466},"style",[444,1919,1920],{"class":1181}," scoped",[444,1922,1422],{"class":450},[444,1924,1926,1928,1930],{"class":446,"line":1925},31,[444,1927,174],{"class":450},[444,1929,1441],{"class":1279},[444,1931,1297],{"class":450},[444,1933,1935,1938,1940,1943,1946],{"class":446,"line":1934},32,[444,1936,1937],{"class":873},"  --accent",[444,1939,885],{"class":450},[444,1941,1942],{"class":450}," #",[444,1944,1945],{"class":873},"2ecc71",[444,1947,1051],{"class":450},[444,1949,1951,1955,1957,1960],{"class":446,"line":1950},33,[444,1952,1954],{"class":1953},"sqsOY","  display",[444,1956,885],{"class":450},[444,1958,1959],{"class":873}," flex",[444,1961,1051],{"class":450},[444,1963,1965,1968,1970,1973],{"class":446,"line":1964},34,[444,1966,1967],{"class":1953},"  flex-direction",[444,1969,885],{"class":450},[444,1971,1972],{"class":873}," row",[444,1974,1051],{"class":450},[444,1976,1978,1981,1983,1986],{"class":446,"line":1977},35,[444,1979,1980],{"class":1953},"  align-items",[444,1982,885],{"class":450},[444,1984,1985],{"class":873}," center",[444,1987,1051],{"class":450},[444,1989,1991,1994,1996,1998],{"class":446,"line":1990},36,[444,1992,1993],{"class":1953},"  justify-content",[444,1995,885],{"class":450},[444,1997,1985],{"class":873},[444,1999,1051],{"class":450},[444,2001,2003,2006,2008,2011],{"class":446,"line":2002},37,[444,2004,2005],{"class":1953},"  gap",[444,2007,885],{"class":450},[444,2009,2010],{"class":1316}," 16px",[444,2012,1051],{"class":450},[444,2014,2016,2019,2021,2024],{"class":446,"line":2015},38,[444,2017,2018],{"class":1953},"  width",[444,2020,885],{"class":450},[444,2022,2023],{"class":1316}," 100%",[444,2025,1051],{"class":450},[444,2027,2029,2032,2034,2037],{"class":446,"line":2028},39,[444,2030,2031],{"class":1953},"  box-sizing",[444,2033,885],{"class":450},[444,2035,2036],{"class":873}," border-box",[444,2038,1051],{"class":450},[444,2040,2042,2045,2047,2049,2052],{"class":446,"line":2041},40,[444,2043,2044],{"class":1953},"  background",[444,2046,885],{"class":450},[444,2048,1942],{"class":450},[444,2050,2051],{"class":873},"11161d",[444,2053,1051],{"class":450},[444,2055,2057,2060,2062,2065,2068,2071,2074],{"class":446,"line":2056},41,[444,2058,2059],{"class":1953},"  border",[444,2061,885],{"class":450},[444,2063,2064],{"class":1316}," 1px",[444,2066,2067],{"class":873}," solid ",[444,2069,2070],{"class":450},"#",[444,2072,2073],{"class":873},"2c3744",[444,2075,1051],{"class":450},[444,2077,2079,2082,2084,2087],{"class":446,"line":2078},42,[444,2080,2081],{"class":1953},"  border-radius",[444,2083,885],{"class":450},[444,2085,2086],{"class":1316}," 10px",[444,2088,1051],{"class":450},[444,2090,2092,2095,2097,2099,2102,2104,2106,2109],{"class":446,"line":2091},43,[444,2093,2094],{"class":1953},"  font-family",[444,2096,885],{"class":450},[444,2098,1591],{"class":450},[444,2100,2101],{"class":460},"Courier New",[444,2103,1597],{"class":450},[444,2105,1771],{"class":450},[444,2107,2108],{"class":873}," monospace",[444,2110,1051],{"class":450},[444,2112,2114,2117,2119,2122],{"class":446,"line":2113},44,[444,2115,2116],{"class":1953},"  font-weight",[444,2118,885],{"class":450},[444,2120,2121],{"class":1316}," 700",[444,2123,1051],{"class":450},[444,2125,2127,2130,2132,2135],{"class":446,"line":2126},45,[444,2128,2129],{"class":1953},"  letter-spacing",[444,2131,885],{"class":450},[444,2133,2134],{"class":1316}," 2px",[444,2136,1051],{"class":450},[444,2138,2140,2143,2145,2147,2150],{"class":446,"line":2139},46,[444,2141,2142],{"class":1953},"  padding",[444,2144,885],{"class":450},[444,2146,2010],{"class":1316},[444,2148,2149],{"class":1316}," 24px",[444,2151,1051],{"class":450},[444,2153,2155,2158,2160,2162,2165],{"class":446,"line":2154},47,[444,2156,2157],{"class":1953},"  color",[444,2159,885],{"class":450},[444,2161,1942],{"class":450},[444,2163,2164],{"class":873},"5b6675",[444,2166,1051],{"class":450},[444,2168,2170,2173,2175,2178,2181,2184],{"class":446,"line":2169},48,[444,2171,2172],{"class":1953},"  transition",[444,2174,885],{"class":450},[444,2176,2177],{"class":873}," all ",[444,2179,2180],{"class":1316},".3s",[444,2182,2183],{"class":873}," ease",[444,2185,1051],{"class":450},[444,2187,2189,2192,2194,2197],{"class":446,"line":2188},49,[444,2190,2191],{"class":1953},"  transform",[444,2193,885],{"class":450},[444,2195,2196],{"class":1316}," .95",[444,2198,1051],{"class":450},[444,2200,2202],{"class":446,"line":2201},50,[444,2203,525],{"class":450},[444,2205,2207],{"class":446,"line":2206},51,[444,2208,1562],{"emptyLinePlaceholder":1561},[444,2210,2212,2214,2216],{"class":446,"line":2211},52,[444,2213,174],{"class":450},[444,2215,1497],{"class":1279},[444,2217,1297],{"class":450},[444,2219,2221,2224,2226,2229],{"class":446,"line":2220},53,[444,2222,2223],{"class":1953},"  font-size",[444,2225,885],{"class":450},[444,2227,2228],{"class":1316}," 2.4rem",[444,2230,1051],{"class":450},[444,2232,2234,2236,2238,2241],{"class":446,"line":2233},54,[444,2235,2116],{"class":1953},[444,2237,885],{"class":450},[444,2239,2240],{"class":1316}," 600",[444,2242,1051],{"class":450},[444,2244,2246],{"class":446,"line":2245},55,[444,2247,525],{"class":450},[444,2249,2251],{"class":446,"line":2250},56,[444,2252,1562],{"emptyLinePlaceholder":1561},[444,2254,2256,2258,2260],{"class":446,"line":2255},57,[444,2257,174],{"class":450},[444,2259,1526],{"class":1279},[444,2261,1297],{"class":450},[444,2263,2265,2267,2269,2271],{"class":446,"line":2264},58,[444,2266,2223],{"class":1953},[444,2268,885],{"class":450},[444,2270,2228],{"class":1316},[444,2272,1051],{"class":450},[444,2274,2276],{"class":446,"line":2275},59,[444,2277,525],{"class":450},[444,2279,2281],{"class":446,"line":2280},60,[444,2282,1562],{"emptyLinePlaceholder":1561},[444,2284,2286,2288,2290,2292,2295],{"class":446,"line":2285},61,[444,2287,174],{"class":450},[444,2289,1441],{"class":1279},[444,2291,174],{"class":450},[444,2293,2294],{"class":1279},"running",[444,2296,1297],{"class":450},[444,2298,2300,2302,2304,2307,2310],{"class":446,"line":2299},62,[444,2301,2142],{"class":1953},[444,2303,885],{"class":450},[444,2305,2306],{"class":1316}," 26px",[444,2308,2309],{"class":1316}," 36px",[444,2311,1051],{"class":450},[444,2313,2315,2317,2319,2322,2324,2327],{"class":446,"line":2314},63,[444,2316,2157],{"class":1953},[444,2318,885],{"class":450},[444,2320,2321],{"class":1745}," var",[444,2323,1749],{"class":450},[444,2325,2326],{"class":873},"--accent",[444,2328,2329],{"class":450},");\n",[444,2331,2333,2336,2338,2340,2342,2344],{"class":446,"line":2332},64,[444,2334,2335],{"class":1953},"  border-color",[444,2337,885],{"class":450},[444,2339,2321],{"class":1745},[444,2341,1749],{"class":450},[444,2343,2326],{"class":873},[444,2345,2329],{"class":450},[444,2347,2349,2351,2353,2355,2358],{"class":446,"line":2348},65,[444,2350,2044],{"class":1953},[444,2352,885],{"class":450},[444,2354,1942],{"class":450},[444,2356,2357],{"class":873},"0d1c13",[444,2359,1051],{"class":450},[444,2361,2363,2366,2368,2370,2372,2375,2378,2380,2383,2385,2388,2390,2393,2395,2398],{"class":446,"line":2362},66,[444,2364,2365],{"class":1953},"  box-shadow",[444,2367,885],{"class":450},[444,2369,1317],{"class":1316},[444,2371,1317],{"class":1316},[444,2373,2374],{"class":1316}," 18px",[444,2376,2377],{"class":1745}," rgba",[444,2379,1749],{"class":450},[444,2381,2382],{"class":1316},"46",[444,2384,1771],{"class":450},[444,2386,2387],{"class":1316}," 204",[444,2389,1771],{"class":450},[444,2391,2392],{"class":1316}," 113",[444,2394,1771],{"class":450},[444,2396,2397],{"class":1316}," .35",[444,2399,2400],{"class":450},"),\n",[444,2402,2404,2407,2409,2411,2414,2416,2418,2420,2422,2424,2426,2428,2430,2433],{"class":446,"line":2403},67,[444,2405,2406],{"class":873},"              inset ",[444,2408,1776],{"class":1316},[444,2410,1317],{"class":1316},[444,2412,2413],{"class":1316}," 12px",[444,2415,2377],{"class":1745},[444,2417,1749],{"class":450},[444,2419,2382],{"class":1316},[444,2421,1771],{"class":450},[444,2423,2387],{"class":1316},[444,2425,1771],{"class":450},[444,2427,2392],{"class":1316},[444,2429,1771],{"class":450},[444,2431,2432],{"class":1316}," .15",[444,2434,2329],{"class":450},[444,2436,2438],{"class":446,"line":2437},68,[444,2439,525],{"class":450},[444,2441,2443],{"class":446,"line":2442},69,[444,2444,1562],{"emptyLinePlaceholder":1561},[444,2446,2448,2450,2452,2454,2456,2459,2461],{"class":446,"line":2447},70,[444,2449,174],{"class":450},[444,2451,1441],{"class":1279},[444,2453,174],{"class":450},[444,2455,2294],{"class":1279},[444,2457,2458],{"class":450}," .",[444,2460,1497],{"class":1279},[444,2462,1297],{"class":450},[444,2464,2466,2468,2470,2473],{"class":446,"line":2465},71,[444,2467,2223],{"class":1953},[444,2469,885],{"class":450},[444,2471,2472],{"class":1316}," 3.6rem",[444,2474,1051],{"class":450},[444,2476,2478],{"class":446,"line":2477},72,[444,2479,525],{"class":450},[444,2481,2483],{"class":446,"line":2482},73,[444,2484,1562],{"emptyLinePlaceholder":1561},[444,2486,2488,2490,2492,2494,2496,2498,2500],{"class":446,"line":2487},74,[444,2489,174],{"class":450},[444,2491,1441],{"class":1279},[444,2493,174],{"class":450},[444,2495,2294],{"class":1279},[444,2497,2458],{"class":450},[444,2499,1526],{"class":1279},[444,2501,1297],{"class":450},[444,2503,2505,2507,2509,2512],{"class":446,"line":2504},75,[444,2506,2223],{"class":1953},[444,2508,885],{"class":450},[444,2510,2511],{"class":1316}," 5rem",[444,2513,1051],{"class":450},[444,2515,2517],{"class":446,"line":2516},76,[444,2518,525],{"class":450},[444,2520,2522,2524,2526],{"class":446,"line":2521},77,[444,2523,1507],{"class":450},[444,2525,1917],{"class":466},[444,2527,1422],{"class":450},[12,2529,2530,2531,2533,2534,377,2536,380,2538,174],{},"All four widgets use the same template code: only the label changes. For reference, this example uses the ",[40,2532,101],{}," label; configure the other three the same way, swapping in ",[40,2535,290],{},[40,2537,300],{},[40,2539,310],{},[12,2541,2542,2546],{},[134,2543],{"alt":2544,"src":2545},"Finished HMI-style runtime widget for the Motor, showing elapsed time and a highlighted green state while running","\u002Fblog\u002F2026\u002F07\u002Fimages\u002Fruntime-display-motor.png",[139,2547,2548],{},"Reference result for the Motor runtime widget. Repeat this setup for Red Light, Yellow Light, and Green Light, changing only the label.",[12,2550,2551,2552,2555],{},"The template formats the elapsed time into an easy-to-read ",[68,2553,2554],{},"HHh:MMm:SSs"," display and automatically changes its appearance while the device is running. Because each widget is connected to a separate Hourglass node, every device maintains its own independent runtime display.",[12,2557,2558],{},"Deploy the flow and open the dashboard.",[12,2560,2561],{},"Start the motor and toggle each stack light while watching the runtime displays update.",[1917,2563,2564],{},"html pre.shiki code .sMK4o, html code.shiki .sMK4o{--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF}html pre.shiki code .sfazB, html code.shiki .sfazB{--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D}html pre.shiki code .swJcz, html code.shiki .swJcz{--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178}html pre.shiki code .sfNiH, html code.shiki .sfNiH{--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC}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);}html pre.shiki code .s7zQu, html code.shiki .s7zQu{--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic}html pre.shiki code .sTEyZ, html code.shiki .sTEyZ{--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8}html pre.shiki code .spNyl, html code.shiki .spNyl{--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA}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 .sHdIc, html code.shiki .sHdIc{--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic}html pre.shiki code .s2Zo4, html code.shiki .s2Zo4{--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF}html pre.shiki code .sqsOY, html code.shiki .sqsOY{--shiki-light:#8796B0;--shiki-default:#B2CCD6;--shiki-dark:#B2CCD6}",{"title":440,"searchDepth":493,"depth":493,"links":2566},[2567,2568,2569,2576,2581,2586],{"id":27,"depth":454,"text":28},{"id":92,"depth":454,"text":93},{"id":144,"depth":454,"text":145,"children":2570},[2571,2572,2573,2574,2575],{"id":158,"depth":477,"text":159},{"id":240,"depth":477,"text":241},{"id":337,"depth":477,"text":338},{"id":398,"depth":477,"text":399},{"id":540,"depth":477,"text":541},{"id":557,"depth":454,"text":558,"children":2577},[2578,2579,2580],{"id":618,"depth":477,"text":619},{"id":700,"depth":477,"text":701},{"id":771,"depth":477,"text":772},{"id":802,"depth":454,"text":803,"children":2582},[2583,2584,2585],{"id":822,"depth":477,"text":823},{"id":1101,"depth":477,"text":1102},{"id":1135,"depth":477,"text":1136},{"id":1215,"depth":454,"text":1216,"children":2587},[2588,2589],{"id":1226,"depth":477,"text":1227},{"id":1373,"depth":477,"text":1374},{"type":2591,"title":2592,"description":2593},"contact","Ready to bring this to your shopfloor?","Talk to our team about connecting FlowFuse to your PLCs and building operator dashboards for your production line.","2026-07-02","Learn how to connect FlowFuse to a Siemens S7 PLC, build an operator dashboard, and automatically track device runtime data.","md",null,"\u002Fblog\u002F2026\u002F07\u002Fimages\u002Fcontrol-and-monitor-machines.png",{"usecase":2600,"excerpt":2602},[2601],"shop-floor-communication",{"type":9,"value":2603},[2604],[12,2605,14],{},"\u002Fblog\u002F2026\u002F07\u002Fcontrol-and-track-factory-floor-machines",{"title":5,"description":2595},"blog\u002F2026\u002F07\u002Fcontrol-and-track-factory-floor-machines","Build a FlowFuse dashboard to control a PLC-connected motor and stack light, then track runtime automatically",[2611],"flowfuse","Connect FlowFuse to a Siemens S7 PLC with node-red-contrib-s7, build a dashboard to control a motor and stack light, and use the Hourglass node to automatically track and display how long each device has been running.","EzI5rUj2uJJOeW5AH7aR-ghmEnOlsyLv7gkKMGksOwI",{"id":2615,"extension":2616,"meta":2617,"sections":2618,"stem":3006,"__hash__":3007},"featureCatalog\u002Ffeature-catalog.yml","yml",{},[2619,2670,2770,2832,2909,2988],{"id":2620,"title":2621,"features":2622},"ai-automation","AI & Automation",[2623,2633,2643,2653,2659,2665],{"id":2624,"title":2625,"description":2626,"docsLink":2627,"changelog":2628,"tiers":2632},"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",[2629],{"url":2630,"release":2631},"\u002Fchangelog\u002F2026\u002F02\u002Fff-expert-update-banner\u002F","2.28",{"edge":1561,"hub":1561,"fleet":1561},{"id":2634,"title":2635,"description":2636,"docsLink":2637,"changelog":2638,"subfeature":1561,"showOnPricing":2641,"tiers":2642},"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",[2639],{"url":2640,"release":2631},"\u002Fchangelog\u002F2026\u002F02\u002Fff-expert-debug-log-context\u002F",false,{"edge":1561,"hub":1561,"fleet":1561},{"id":2644,"title":2645,"description":2646,"docsLink":2647,"changelog":2648,"subfeature":1561,"showOnPricing":2641,"tiers":2652},"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",[2649],{"url":2650,"release":2651},"\u002Fchangelog\u002F2026\u002F05\u002Fexpert-application-building\u002F","2.30",{"edge":1561,"hub":1561,"fleet":1561},{"id":2654,"title":2655,"description":2656,"docsLink":2657,"subfeature":1561,"beta":1561,"showOnPricing":2641,"tiers":2658},"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":1561,"hub":1561,"fleet":1561},{"id":2660,"title":2661,"description":2662,"docsLink":2663,"tiers":2664},"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.","\u002Fnode-red\u002Fflowfuse\u002Fmcp\u002F",{"edge":1561,"hub":1561,"fleet":1561},{"id":2666,"title":2667,"description":2668,"tiers":2669},"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":1561,"hub":1561,"fleet":1561},{"id":2671,"title":2672,"features":2673},"build","Build",[2674,2679,2685,2695,2701,2707,2711,2717,2723,2731,2737,2741,2745,2754,2762],{"id":2675,"title":2676,"description":2677,"docsLink":57,"tiers":2678},"edge-development","Edge Development","Develop and test Node-RED flows directly on edge devices with a remote editor proxy.",{"edge":1561,"hub":2641,"fleet":1561},{"id":2680,"title":2681,"description":2682,"docsLink":2683,"tiers":2684},"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":1561,"hub":1561,"fleet":1561},{"id":2686,"title":2687,"description":2688,"docsLink":2689,"changelog":2690,"tiers":2694},"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",[2691],{"url":2692,"release":2693},"\u002Fchangelog\u002F2026\u002F07\u002Fexpert-tables-automation\u002F","2.33",{"edge":1561,"hub":1561,"fleet":1561},{"id":2696,"title":2697,"description":2698,"docsLink":2699,"tiers":2700},"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":1561,"hub":1561,"fleet":1561},{"id":2702,"title":2703,"description":2704,"docsLink":2705,"showOnPricing":2641,"tiers":2706},"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":1561,"hub":1561,"fleet":1561},{"id":2708,"title":2709,"showOnPricing":2641,"tiers":2710},"static-assets","Static Assets",{"edge":1561,"hub":1561,"fleet":1561},{"id":2712,"title":2713,"description":2714,"docsLink":2715,"tiers":2716},"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":1561,"hub":1561,"fleet":1561},{"id":2718,"title":2719,"description":2720,"docsLink":2721,"tiers":2722},"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":1561,"hub":1561,"fleet":1561},{"id":2724,"title":2725,"description":2726,"changelog":2727,"subfeature":1561,"showOnPricing":2641,"tiers":2730},"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.",[2728],{"url":2729,"release":2693},"\u002Fchangelog\u002F2026\u002F07\u002Fteam-and-application-dashboards\u002F",{"edge":1561,"hub":1561,"fleet":1561},{"id":2732,"title":2733,"description":2734,"docsLink":2735,"tiers":2736},"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":1561,"hub":1561,"fleet":1561},{"id":2738,"title":2739,"subfeature":1561,"showOnPricing":2641,"tiers":2740},"blueprints-ot-apps","Blueprints - OT APPS",{"edge":1561,"hub":2641,"fleet":1561},{"id":2742,"title":2743,"subfeature":1561,"showOnPricing":2641,"tiers":2744},"blueprints-it-apps","Blueprints - IT APPS",{"edge":2641,"hub":1561,"fleet":2641},{"id":2746,"title":2747,"description":2748,"changelog":2749,"showOnPricing":2641,"tiers":2753},"immersive-editor-snapshots","Snapshot Details in Immersive Editor","View and manage snapshot details directly inside the immersive editor without leaving your editing session.",[2750],{"url":2751,"release":2752},"\u002Fchangelog\u002F2026\u002F03\u002Fsnapshot-detail-modal-immersive-editor\u002F","2.29",{"edge":1561,"hub":1561,"fleet":1561},{"id":2755,"title":2756,"description":2757,"changelog":2758,"showOnPricing":2641,"tiers":2761},"immersive-editor-drawer","Customisable Immersive Editor Drawer","Pin, move, resize, or full-screen the immersive editor drawer. Your preferences are remembered between sessions.",[2759],{"url":2760,"release":2651},"\u002Fchangelog\u002F2026\u002F04\u002Fimmersive-editor-drawer\u002F",{"edge":1561,"hub":1561,"fleet":1561},{"id":2763,"title":2764,"description":2765,"changelog":2766,"showOnPricing":2641,"tiers":2769},"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.",[2767],{"url":2768,"release":2752},"\u002Fchangelog\u002F2026\u002F03\u002Fembedded-editor-tab-title\u002F",{"edge":1561,"hub":1561,"fleet":1561},{"id":2771,"title":2772,"features":2773},"deploy","Deploy",[2774,2780,2789,2795,2801,2807,2813,2819,2824],{"id":2775,"title":2776,"description":2777,"docsLink":2778,"tiers":2779},"hosted-instances","Cloud Instances","Run Node-RED instances managed and hosted by FlowFuse.","\u002Fdocs\u002Fuser\u002Fintroduction\u002F#creating-a-node-red-instance",{"edge":1561,"hub":1561,"fleet":1561},{"id":2781,"title":2782,"description":2783,"docsLink":2784,"changelog":2785,"tiers":2788},"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",[2786],{"url":2787,"release":2631},"\u002Fchangelog\u002F2026\u002F02\u002Fdevice-agent-nodejs-options\u002F",{"edge":1561,"hub":2641,"fleet":1561},{"id":2790,"title":2791,"description":2792,"docsLink":2793,"tiers":2794},"custom-hostnames","Custom Hostnames","Access your Node-RED application via your own domain name.","\u002Fdocs\u002Fuser\u002Fcustom-hostnames\u002F",{"edge":2641,"hub":1561,"fleet":2641},{"id":2796,"title":2797,"description":2798,"docsLink":2799,"tiers":2800},"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":1561,"hub":2641,"fleet":1561},{"id":2802,"title":2803,"description":2804,"docsLink":2805,"showOnPricing":2641,"tiers":2806},"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":1561,"hub":1561,"fleet":1561},{"id":2808,"title":2809,"description":2810,"docsLink":2811,"tiers":2812},"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":1561,"hub":1561,"fleet":1561},{"id":2814,"title":2815,"description":2816,"docsLink":2817,"tiers":2818},"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":2641,"hub":1561,"fleet":2641},{"id":2820,"title":2821,"description":2822,"docsLink":2817,"subfeature":1561,"showOnPricing":2641,"tiers":2823},"git-integration-github","GitHub","Push and pull snapshots to GitHub repositories through DevOps Pipeline Git Stages.",{"edge":2641,"hub":1561,"fleet":2641},{"id":2825,"title":2826,"description":2827,"docsLink":2817,"changelog":2828,"subfeature":1561,"showOnPricing":2641,"tiers":2831},"git-integration-azure","Azure DevOps","Push and pull snapshots to Azure DevOps repositories through DevOps Pipeline Git Stages.",[2829],{"url":2830,"release":2752},"\u002Fchangelog\u002F2026\u002F03\u002Fazure-dev-ops-gitops\u002F",{"edge":2641,"hub":1561,"fleet":2641},{"id":2833,"title":2834,"features":2835},"operate-maintain","Operate & Maintain",[2836,2842,2848,2853,2861,2865,2869,2874,2880,2886,2891,2897,2901,2905],{"id":2837,"title":2838,"description":2839,"docsLink":2840,"tiers":2841},"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":1561,"hub":1561,"fleet":1561},{"id":2843,"title":2844,"description":2845,"docsLink":2846,"subfeature":1561,"showOnPricing":2641,"tiers":2847},"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":1561,"hub":1561,"fleet":1561},{"id":2849,"title":2850,"description":2851,"docsLink":2846,"subfeature":1561,"showOnPricing":2641,"tiers":2852},"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":1561,"hub":1561,"fleet":1561},{"id":2854,"title":2855,"description":2856,"changelog":2857,"subfeature":1561,"showOnPricing":2641,"tiers":2860},"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.",[2858],{"url":2859,"release":2752},"\u002Fchangelog\u002F2026\u002F04\u002Fsnapshot-diff-viewer\u002F",{"edge":1561,"hub":1561,"fleet":1561},{"id":2862,"title":2863,"subfeature":1561,"showOnPricing":2641,"tiers":2864},"version-history-timeline","Version History Timeline",{"edge":1561,"hub":1561,"fleet":1561},{"id":2866,"title":2867,"tiers":2868},"unlimited-workflow-executions","Unlimited Workflow Executions",{"edge":1561,"hub":1561,"fleet":1561},{"id":2870,"title":2871,"description":2872,"tiers":2873},"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":1561,"hub":2641,"fleet":1561},{"id":2875,"title":2876,"description":2877,"docsLink":2878,"tiers":2879},"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":1561,"hub":2641,"fleet":1561},{"id":2881,"title":2882,"description":2883,"docsLink":2884,"tiers":2885},"high-availability","High Availability","Leverage horizontal scaling for reliable and scalable processing of your data through Node-RED.","\u002Fdocs\u002Fuser\u002Fhigh-availability\u002F",{"edge":2641,"hub":1561,"fleet":2641},{"id":2887,"title":2888,"description":2889,"tiers":2890},"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":1561,"hub":1561,"fleet":1561},{"id":2892,"title":2893,"description":2894,"docsLink":2895,"subfeature":1561,"showOnPricing":2641,"tiers":2896},"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":1561,"hub":1561,"fleet":1561},{"id":2898,"title":2899,"subfeature":1561,"showOnPricing":2641,"tiers":2900},"email-alerts","Email Alerts",{"edge":1561,"hub":1561,"fleet":1561},{"id":2902,"title":2903,"showOnPricing":2641,"tiers":2904},"api-debug-length-limit","API\u002FDebug Length Limit",{"edge":1561,"hub":1561,"fleet":1561},{"id":2906,"title":2907,"tiers":2908},"protected-instances","Protected Instances",{"edge":2641,"hub":1561,"fleet":2641},{"id":2910,"title":2911,"features":2912},"govern-secure","Govern and Secure",[2913,2922,2928,2934,2939,2945,2951,2957,2965,2971,2977,2983],{"id":2914,"title":2915,"description":2916,"docsLink":2917,"changelog":2918,"tiers":2921},"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",[2919],{"url":2920,"release":2693},"\u002Fchangelog\u002F2026\u002F07\u002Fapplication-sso-groups\u002F",{"edge":1561,"hub":1561,"fleet":1561},{"id":2923,"title":2924,"description":2925,"docsLink":2926,"tiers":2927},"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":1561,"hub":1561,"fleet":1561},{"id":2929,"title":2930,"description":2931,"docsLink":2932,"tiers":2933},"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":2641,"hub":1561,"fleet":1561},{"id":2935,"title":2936,"description":2937,"tiers":2938},"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":1561,"hub":2641,"fleet":2641},{"id":2940,"title":2941,"description":2942,"docsLink":2943,"tiers":2944},"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":1561,"hub":1561,"fleet":1561},{"id":2946,"title":2947,"description":2948,"docsLink":2949,"tiers":2950},"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":1561,"hub":1561,"fleet":1561},{"id":2952,"title":2953,"description":2954,"docsLink":2955,"subfeature":1561,"showOnPricing":2641,"tiers":2956},"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":1561,"hub":1561,"fleet":1561},{"id":2958,"title":2959,"description":2960,"changelog":2961,"subfeature":1561,"showOnPricing":2641,"tiers":2964},"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.",[2962],{"url":2963,"release":2693},"\u002Fchangelog\u002F2026\u002F07\u002Fscoped-pats\u002F",{"edge":1561,"hub":1561,"fleet":1561},{"id":2966,"title":2967,"description":2968,"docsLink":2969,"showOnPricing":2641,"tiers":2970},"team-members","Team Members","Invite multiple team members to collaborate on the same Node-RED flows.","\u002Fdocs\u002Fuser\u002Fteam\u002F#teams",{"edge":1561,"hub":1561,"fleet":1561},{"id":2972,"title":2973,"description":2974,"docsLink":2975,"showOnPricing":2641,"tiers":2976},"endpoint-security","Endpoint Security","Secure HTTP endpoints for hosted Node-RED instances using FlowFuse credentials.","\u002Fdocs\u002Fuser\u002Finstance-settings\u002F#security",{"edge":1561,"hub":1561,"fleet":1561},{"id":2978,"title":2979,"description":2980,"docsLink":2981,"tiers":2982},"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.5\u002F",{"edge":2641,"hub":1561,"fleet":2641},{"id":2984,"title":2985,"description":2986,"tiers":2987},"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":2641,"hub":1561,"fleet":2641},{"id":2989,"title":2990,"features":2991},"support","Support",[2992,2997,3001],{"id":2993,"title":2994,"docsLink":2995,"tiers":2996},"installation-support","Installation Support","\u002Fdocs\u002Finstall\u002Fintroduction\u002F#do-you-need-help-installation-service",{"edge":1561,"hub":1561,"fleet":1561},{"id":2998,"title":2999,"showOnPricing":2641,"tiers":3000},"live-chat-support","Live Chat Support",{"edge":1561,"hub":1561,"fleet":1561},{"id":3002,"title":3003,"docsLink":3004,"tiers":3005},"enterprise-support","Enterprise Support","\u002Fdocs\u002Fpremium-support\u002F",{"edge":1561,"hub":1561,"fleet":1561},"feature-catalog","0AnkhTIPCECCwP9NmbTWP5HvRYx4FTSao4lG93-HaWM",[3009,3012,3015,3018,3021,3024,3026,3029,3032,3035,3038,3040,3043,3046,3049,3052,3055,3058,3061,3064,3067,3070,3073,3076,3079,3082,3085,3088,3091,3094,3097,3100,3103,3106,3109,3112,3115,3118,3121,3124,3127,3130,3133,3136,3139,3142,3145,3148,3151,3153,3156,3159,3162,3165,3168,3171,3174,3176,3179,3182,3185,3188,3191,3193,3196,3199,3202,3205,3208,3211,3214,3217,3220,3223,3225,3228,3231,3234,3237,3240,3243,3246,3249,3252,3255,3258,3261,3264,3267,3269,3272,3275,3278,3281,3284,3287,3290,3293,3296,3299,3302,3305,3308,3311,3314,3317,3320,3323,3325,3328,3331,3334,3337,3340,3343,3346,3348,3351,3354,3357,3360,3363,3366,3369,3372,3375,3378,3381,3384,3387,3390,3393,3396,3399,3402,3405,3408,3411,3414,3417,3420,3423,3426,3429,3432,3435,3438,3441,3444,3447,3450,3453,3456,3459,3462,3465,3468,3471,3474,3477,3480,3483,3486,3489,3492,3495,3498,3500,3503,3506,3509,3512,3515,3518,3521,3524,3527,3530,3533,3536,3539],{"path":3010,"title":3011},"\u002Fchangelog\u002F2023\u002F09\u002Fcustom-node-support","Custom Node Support",{"path":3013,"title":3014},"\u002Fchangelog\u002F2023\u002F09\u002Fdevops-actions","DevOps Pipeline with action selection",{"path":3016,"title":3017},"\u002Fchangelog\u002F2023\u002F09\u002Fintroduction-enterprise-tier","Introducing the Enterprise Tier",{"path":3019,"title":3020},"\u002Fchangelog\u002F2023\u002F09\u002Fpipeline-api","API Endpoint for DevOps Pipeline",{"path":3022,"title":3023},"\u002Fchangelog\u002F2023\u002F09\u002Fsnapshots-devices","Usability improvements to Device Management",{"path":3025,"title":2733},"\u002Fchangelog\u002F2023\u002F10\u002Fblueprints",{"path":3027,"title":3028},"\u002Fchangelog\u002F2023\u002F10\u002Fcertified-nodes","Certified Nodes",{"path":3030,"title":3031},"\u002Fchangelog\u002F2023\u002F10\u002Fdevice-snapshot-selection","Enhanced Snapshot Selection",{"path":3033,"title":3034},"\u002Fchangelog\u002F2023\u002F10\u002Fpath-bug-fix","Device Agent path bug fix",{"path":3036,"title":3037},"\u002Fchangelog\u002F2023\u002F10\u002Fresource-alerts","Resource Monitoring in Audit Log",{"path":3039,"title":2924},"\u002Fchangelog\u002F2023\u002F11\u002F2fa",{"path":3041,"title":3042},"\u002Fchangelog\u002F2023\u002F11\u002Fdefault-editor","Device Editor enabled by default",{"path":3044,"title":3045},"\u002Fchangelog\u002F2023\u002F11\u002Fdevices-in-pipelines","Devices in DevOps Pipelines",{"path":3047,"title":3048},"\u002Fchangelog\u002F2023\u002F11\u002Fproject-nodes-devices","Project Nodes for Devices",{"path":3050,"title":3051},"\u002Fchangelog\u002F2023\u002F12\u002Fbilling","No Credit Card required for billing",{"path":3053,"title":3054},"\u002Fchangelog\u002F2023\u002F12\u002Fblueprint-selection","Blueprint Selection Update",{"path":3056,"title":3057},"\u002Fchangelog\u002F2023\u002F12\u002Fdevice-groups","Device Groups",{"path":3059,"title":3060},"\u002Fchangelog\u002F2023\u002F12\u002Femail-alerting-node-red-crash","Email Alerts for Audit Log Events",{"path":3062,"title":3063},"\u002Fchangelog\u002F2023\u002F12\u002Fnode-red-updated","Node-RED 3.1.3 now available",{"path":3065,"title":3066},"\u002Fchangelog\u002F2024\u002F01\u002Fdevice-audit-log","Introducing the Device Auditlog Feature",{"path":3068,"title":3069},"\u002Fchangelog\u002F2024\u002F01\u002Fdevice-groups-snapshot","Device Groups - Automatic snapshot assignment",{"path":3071,"title":3072},"\u002Fchangelog\u002F2024\u002F01\u002Ffleet-mode","Renaming \"Default Device Mode\" to \"Fleet Mode\"",{"path":3074,"title":3075},"\u002Fchangelog\u002F2024\u002F01\u002Fhelm-v2","Helm Chart v2.0",{"path":3077,"title":3078},"\u002Fchangelog\u002F2024\u002F01\u002Fnew-blueprints","New Blueprints added",{"path":3080,"title":3081},"\u002Fchangelog\u002F2024\u002F01\u002Fsecurity-updates","Security Updates",{"path":3083,"title":3084},"\u002Fchangelog\u002F2024\u002F01\u002Fsso-team-membership","Managing Team Membership via SSO",{"path":3086,"title":3087},"\u002Fchangelog\u002F2024\u002F01\u002Fstreamlined-device-assignment","Streamlined Device assignment",{"path":3089,"title":3090},"\u002Fchangelog\u002F2024\u002F02\u002Fdevice-auto-snapshot","Device Auto Snapshots",{"path":3092,"title":3093},"\u002Fchangelog\u002F2024\u002F02\u002Fdevice-instance-audit-logs","Device Instance Audit Logging",{"path":3095,"title":3096},"\u002Fchangelog\u002F2024\u002F02\u002Fdevice-onboarding-improvements","Device Onboarding Improvements",{"path":3098,"title":3099},"\u002Fchangelog\u002F2024\u002F02\u002Fdevice-pricing-change","Pricing change for Devices",{"path":3101,"title":3102},"\u002Fchangelog\u002F2024\u002F02\u002Finstance-auto-snapshots","Instance Auto Snapshots",{"path":3104,"title":3105},"\u002Fchangelog\u002F2024\u002F02\u002Fpostgresql-upgrade","PostgreSQL Version update",{"path":3107,"title":3108},"\u002Fchangelog\u002F2024\u002F03\u002Fbearer-token-authentication","Bearer Token Authentication for Node-RED Instances",{"path":3110,"title":3111},"\u002Fchangelog\u002F2024\u002F03\u002Finstance-protection-mode","Instance Protection Mode",{"path":3113,"title":3114},"\u002Fchangelog\u002F2024\u002F03\u002Flimits-debug-payload","Configure HTTP Payload and Debug Message size",{"path":3116,"title":3117},"\u002Fchangelog\u002F2024\u002F03\u002Frestart-devices-remotly","Remote Device Restart",{"path":3119,"title":3120},"\u002Fchangelog\u002F2024\u002F04\u002Fcustom-nodes-on-devices","Custom Nodes Support on Devices",{"path":3122,"title":3123},"\u002Fchangelog\u002F2024\u002F04\u002Fdevice-auto-snapshot","Direct Dashboard Access",{"path":3125,"title":3126},"\u002Fchangelog\u002F2024\u002F04\u002Fimproving-device-groups","Improving Device Groups",{"path":3128,"title":3129},"\u002Fchangelog\u002F2024\u002F04\u002Fpricing-change","Pricing change Enterprise & Teams Tier",{"path":3131,"title":3132},"\u002Fchangelog\u002F2024\u002F04\u002Ftougher-rate-limiting","Tougher Rate Limiting on Public Routes",{"path":3134,"title":3135},"\u002Fchangelog\u002F2024\u002F05\u002Finstance-healthcheck","Customizing instance health-check settings",{"path":3137,"title":3138},"\u002Fchangelog\u002F2024\u002F05\u002Flibrary-blueprints","Blueprints added to Library",{"path":3140,"title":3141},"\u002Fchangelog\u002F2024\u002F05\u002Flibrary-flowviewer","Team Library - Flow Viewer",{"path":3143,"title":3144},"\u002Fchangelog\u002F2024\u002F05\u002Fmanaging-node-red-version-on-devices","Managing Node-RED versions on Devices",{"path":3146,"title":3147},"\u002Fchangelog\u002F2024\u002F05\u002Fsnapshot-improvements","Snapshot Improvements",{"path":3149,"title":3150},"\u002Fchangelog\u002F2024\u002F05\u002Fsnapshot-improvements-pt3","Snapshot Upload",{"path":3152,"title":3150},"\u002Fchangelog\u002F2024\u002F05\u002Fsnapshot-upload",{"path":3154,"title":3155},"\u002Fchangelog\u002F2024\u002F06\u002Fdevice-agent-proxy-support","Running the Device Agent behind an HTTP proxy",{"path":3157,"title":3158},"\u002Fchangelog\u002F2024\u002F06\u002Flibrary-blueprints","Custom hostnames for your instances",{"path":3160,"title":3161},"\u002Fchangelog\u002F2024\u002F06\u002Fmultiline-env-vars","Multi-line Environment Variables",{"path":3163,"title":3164},"\u002Fchangelog\u002F2024\u002F06\u002Fsnapshot-flow-compare","Compare Snapshots flows",{"path":3166,"title":3167},"\u002Fchangelog\u002F2024\u002F07\u002Fapplications-search","Applications Search",{"path":3169,"title":3170},"\u002Fchangelog\u002F2024\u002F07\u002Fdevice-group-clear-snapshot","Device Groups Snapshots",{"path":3172,"title":3173},"\u002Fchangelog\u002F2024\u002F07\u002Fdevice-management-bulk-delete","Managing devices",{"path":3175,"title":3173},"\u002Fchangelog\u002F2024\u002F07\u002Fdevice-management-bulk-move",{"path":3177,"title":3178},"\u002Fchangelog\u002F2024\u002F07\u002Fedit-snapshots","Edit Snapshots",{"path":3180,"title":3181},"\u002Fchangelog\u002F2024\u002F07\u002Fflowfuse-assistant","The FlowFuse Expert",{"path":3183,"title":3184},"\u002Fchangelog\u002F2024\u002F07\u002Fflowfuse-assistant-json","FlowFuse Expert Writes JSON",{"path":3186,"title":3187},"\u002Fchangelog\u002F2024\u002F07\u002Fimmersive-editor","Immersive Editor Experience",{"path":3189,"title":3190},"\u002Fchangelog\u002F2024\u002F07\u002Fnotifications-inbox","Notifications Inbox",{"path":3192,"title":3190},"\u002Fchangelog\u002F2024\u002F07\u002Fnotifications-update",{"path":3194,"title":3195},"\u002Fchangelog\u002F2024\u002F07\u002Fpersistent-storage","Persistent Storage on FlowFuse Cloud",{"path":3197,"title":3198},"\u002Fchangelog\u002F2024\u002F07\u002Fsso","Single Sign On Updates",{"path":3200,"title":3201},"\u002Fchangelog\u002F2024\u002F08\u002Fbill-of-materials","Bill of Materials",{"path":3203,"title":3204},"\u002Fchangelog\u002F2024\u002F08\u002Fenterprise-license-update","Enforcing Enterprise Restrictions",{"path":3206,"title":3207},"\u002Fchangelog\u002F2024\u002F08\u002Fldap-sso-groups","LDAP Single Sign On Updates",{"path":3209,"title":3210},"\u002Fchangelog\u002F2024\u002F08\u002Fstatic-file-service-navigation-visibility","Static File Service Navigation and Visibility",{"path":3212,"title":3213},"\u002Fchangelog\u002F2024\u002F10\u002Fdevice-group-env-vars","Environment Variables for your Device Groups",{"path":3215,"title":3216},"\u002Fchangelog\u002F2024\u002F10\u002Fmqtt-service","MQTT Broker Service",{"path":3218,"title":3219},"\u002Fchangelog\u002F2024\u002F10\u002Fnotifications-bulk-actions","Managing Notifications",{"path":3221,"title":3222},"\u002Fchangelog\u002F2024\u002F10\u002Fsnapshot-download-upload-options","Snapshot Upload and Download Improvements",{"path":3224,"title":2863},"\u002Fchangelog\u002F2024\u002F10\u002Fversion-history-timeline",{"path":3226,"title":3227},"\u002Fchangelog\u002F2024\u002F11\u002Faudit-log-hierarchy","Audit logs show hierarchical events",{"path":3229,"title":3230},"\u002Fchangelog\u002F2024\u002F11\u002Fdevice-agent-release","Device Agent 3.0 released",{"path":3232,"title":3233},"\u002Fchangelog\u002F2024\u002F11\u002Fmqtt-topic-hierarchy","MQTT Topic Hierarchy view",{"path":3235,"title":3236},"\u002Fchangelog\u002F2024\u002F11\u002Fteam-search","Team-wide search",{"path":3238,"title":3239},"\u002Fchangelog\u002F2024\u002F12\u002Fdashboad-iframe","Allow Dashboards to be embedded in iFrames",{"path":3241,"title":3242},"\u002Fchangelog\u002F2024\u002F12\u002Fdevice-editor-cache","Device Editor Access Speed Up",{"path":3244,"title":3245},"\u002Fchangelog\u002F2024\u002F12\u002Fteam-bom-timeline","Team BOM and Pipeline Views",{"path":3247,"title":3248},"\u002Fchangelog\u002F2025\u002F01\u002Ffree-tier-onboarding","New Onboarding Tour for Free Tier Users",{"path":3250,"title":3251},"\u002Fchangelog\u002F2025\u002F01\u002Fhidden-env-vars","Hidden Environment Variables",{"path":3253,"title":3254},"\u002Fchangelog\u002F2025\u002F01\u002Fimproved-diagnostics","Improved Diagnostics",{"path":3256,"title":3257},"\u002Fchangelog\u002F2025\u002F01\u002Fteam-level-groups","Team level view of Groups",{"path":3259,"title":3260},"\u002Fchangelog\u002F2025\u002F02\u002Fadditional-device-version-history-events","New Remote Instances Version History Events",{"path":3262,"title":3263},"\u002Fchangelog\u002F2025\u002F02\u002Fbroker-error-feedback","Improved Broker Connection Feedback",{"path":3265,"title":3266},"\u002Fchangelog\u002F2025\u002F02\u002Fdevice-agent-updates","FlowFuse User Authentication on Remote Instances",{"path":3268,"title":2863},"\u002Fchangelog\u002F2025\u002F02\u002Fdevice-version-history-timeline",{"path":3270,"title":3271},"\u002Fchangelog\u002F2025\u002F02\u002Fexternal-brokers","External MQTT Brokers",{"path":3273,"title":3274},"\u002Fchangelog\u002F2025\u002F02\u002Fmqtt-schema-suggestions","MQTT Smart Schema Suggestions",{"path":3276,"title":3277},"\u002Fchangelog\u002F2025\u002F02\u002Fresend-and-extend-team-invitation-expiration","Re-send Team Invitations",{"path":3279,"title":3280},"\u002Fchangelog\u002F2025\u002F02\u002Fschema-docs","Personalized Schema Documentation",{"path":3282,"title":3283},"\u002Fchangelog\u002F2025\u002F02\u002Ftopic-hierarchy-search","Search & Filter for Topic Hierarchy List",{"path":3285,"title":3286},"\u002Fchangelog\u002F2025\u002F03\u002Fcontainer-tags","Changes to tags for flowfuse\u002Fnode-red",{"path":3288,"title":3289},"\u002Fchangelog\u002F2025\u002F03\u002Fdevice-groups","Multiple Device Groups in a pipeline",{"path":3291,"title":3292},"\u002Fchangelog\u002F2025\u002F03\u002Fdevice-local-login","Local Login for Remote Instances",{"path":3294,"title":3295},"\u002Fchangelog\u002F2025\u002F03\u002Ffree-tier","Free Tier now more accessible to all",{"path":3297,"title":3298},"\u002Fchangelog\u002F2025\u002F03\u002Fresource-notifications","Resource Alerts",{"path":3300,"title":3301},"\u002Fchangelog\u002F2025\u002F03\u002Fsnapshot-filter","Filtering Snapshots",{"path":3303,"title":3304},"\u002Fchangelog\u002F2025\u002F03\u002Fteam-npm-registry","NPM Package Hosting",{"path":3306,"title":3307},"\u002Fchangelog\u002F2025\u002F03\u002Ftopic-deletion","MQTT Topic Management",{"path":3309,"title":3310},"\u002Fchangelog\u002F2025\u002F04\u002Fdevice-provisioning","Remote Instance Provisioning",{"path":3312,"title":3313},"\u002Fchangelog\u002F2025\u002F04\u002Fgit-integration","Git Integration with Pipelines",{"path":3315,"title":3316},"\u002Fchangelog\u002F2025\u002F04\u002Finstance-log-browsing","Better Node-RED log handling",{"path":3318,"title":3319},"\u002Fchangelog\u002F2025\u002F05\u002Fimport-node-red-flows","Import Node-RED Flows During Remote Instance Setup",{"path":3321,"title":3322},"\u002Fchangelog\u002F2025\u002F06\u002Fflowfuse-assistant","FlowFuse Expert just got smarter",{"path":3324,"title":3322},"\u002Fchangelog\u002F2025\u002F06\u002Fflowfuse-assistant-2",{"path":3326,"title":3327},"\u002Fchangelog\u002F2025\u002F06\u002Fgit-integration","Pulling snapshots from Git with Pipelines",{"path":3329,"title":3330},"\u002Fchangelog\u002F2025\u002F06\u002Finstance-performance-memory","Memory Metrics in Instance Performance View",{"path":3332,"title":3333},"\u002Fchangelog\u002F2025\u002F06\u002Fnew-home-page","Introducing the New Home Page Experience",{"path":3335,"title":3336},"\u002Fchangelog\u002F2025\u002F06\u002Fteam-performance","Team Performance Feature",{"path":3338,"title":3339},"\u002Fchangelog\u002F2025\u002F06\u002Fteam-performance-view","Instance Performance View",{"path":3341,"title":3342},"\u002Fchangelog\u002F2025\u002F06\u002Fui-refresh","Navigation UI Refresh",{"path":3344,"title":3345},"\u002Fchangelog\u002F2025\u002F07\u002Fbrowse-node-red-flows","Browse for Node-RED Flows During Remote Instance Setup",{"path":3347,"title":2687},"\u002Fchangelog\u002F2025\u002F07\u002Fflowfuse-tables",{"path":3349,"title":3350},"\u002Fchangelog\u002F2025\u002F07\u002Fimport-blueprints","Import blueprints directly into your existing instances",{"path":3352,"title":3353},"\u002Fchangelog\u002F2025\u002F07\u002Fsimplified-applications-overview","Simplified Applications Page with Summary Tiles",{"path":3355,"title":3356},"\u002Fchangelog\u002F2025\u002F07\u002Fsmart-suggestions","Smart Suggestions",{"path":3358,"title":3359},"\u002Fchangelog\u002F2025\u002F07\u002Fteam-to-pro-plan-rename","Team Plan Renamed to Pro Plan",{"path":3361,"title":3362},"\u002Fchangelog\u002F2025\u002F08\u002Fai-generated-snapshot-descriptions-hosted","Generate snapshot descriptions with AI",{"path":3364,"title":3365},"\u002Fchangelog\u002F2025\u002F08\u002Fai-generated-snapshot-descriptions-remote","AI Snapshot Descriptions Now Work with Remote Instances",{"path":3367,"title":3368},"\u002Fchangelog\u002F2025\u002F08\u002Fdevice-performance","FlowFuse Remote Instance Performance Data",{"path":3370,"title":3371},"\u002Fchangelog\u002F2025\u002F08\u002Fdirect-sso","Direct SSO Login",{"path":3373,"title":3374},"\u002Fchangelog\u002F2025\u002F08\u002Fflowfuse-assistant","FlowFuse Expert documents your flows",{"path":3376,"title":3377},"\u002Fchangelog\u002F2025\u002F08\u002Fflowfuse-mqtt","FlowFuse MQTT",{"path":3379,"title":3380},"\u002Fchangelog\u002F2025\u002F08\u002Fhttp-cors","Configure HTTP CORS",{"path":3382,"title":3383},"\u002Fchangelog\u002F2025\u002F08\u002Fsubflow-export","Export SubFlow as Node-RED module",{"path":3385,"title":3386},"\u002Fchangelog\u002F2025\u002F08\u002Ftables-assistant","FlowFuse Tables with a little help from the Assistant",{"path":3388,"title":3389},"\u002Fchangelog\u002F2025\u002F09\u002Fexpose-saml-groups-to-dashboard","Allow SSO groups to be shared with the Node-RED Dashboard",{"path":3391,"title":3392},"\u002Fchangelog\u002F2025\u002F09\u002Finline-assist","FlowFuse Expert can help you write code",{"path":3394,"title":3395},"\u002Fchangelog\u002F2025\u002F09\u002Fretiring-flowforge-device-agent","No more @flowforge\u002Fflowforge-device-agent releases",{"path":3397,"title":3398},"\u002Fchangelog\u002F2025\u002F09\u002Frevised-instance-snapshot-ui","Streamlined Snapshot Management",{"path":3400,"title":3401},"\u002Fchangelog\u002F2025\u002F09\u002Fteam-broker-async-api","Capture Async API data from FlowFuse Team Broker",{"path":3403,"title":3404},"\u002Fchangelog\u002F2025\u002F10\u002Fapplication-level-rbac","Application-level access control for Enterprise teams",{"path":3406,"title":3407},"\u002Fchangelog\u002F2025\u002F10\u002Fbulk-device-group-assignment","Easier Access to Bulk Device Group Management",{"path":3409,"title":3410},"\u002Fchangelog\u002F2025\u002F10\u002Fduplicate-instances-across-applications","Duplicate Instances Across Different Applications",{"path":3412,"title":3413},"\u002Fchangelog\u002F2025\u002F10\u002Fimport-flows-on-instance-creation","Import flows during instance creation",{"path":3415,"title":3416},"\u002Fchangelog\u002F2025\u002F10\u002Fmcp-nodes","FlowFuse MCP Server Nodes",{"path":3418,"title":3419},"\u002Fchangelog\u002F2025\u002F10\u002Fonnx-nodes","FlowFuse AI Nodes",{"path":3421,"title":3422},"\u002Fchangelog\u002F2025\u002F10\u002Fsettings-page-device-group-management","Device Group Management from Settings Page",{"path":3424,"title":3425},"\u002Fchangelog\u002F2025\u002F11\u002Fff-expert-update","FlowFuse Expert Update",{"path":3427,"title":3428},"\u002Fchangelog\u002F2025\u002F11\u002Fminimum-nodejs-version","Node.js v20 Minimum Version Requirement",{"path":3430,"title":3431},"\u002Fchangelog\u002F2025\u002F11\u002Fsso-session","SSO control over Session life",{"path":3433,"title":3434},"\u002Fchangelog\u002F2025\u002F12\u002Fff-expert-mcp-insights","FlowFuse Expert: Now with MCP-Powered Insights",{"path":3436,"title":3437},"\u002Fchangelog\u002F2025\u002F12\u002Fscheduled-maintenance","Scheduled Maintenance Mode",{"path":3439,"title":3440},"\u002Fchangelog\u002F2026\u002F01\u002Fdevice-agent-containers","Device Agent Docker Containers updated",{"path":3442,"title":3443},"\u002Fchangelog\u002F2026\u002F01\u002Fff-expert-manage-palette","FlowFuse Expert: Enhanced Palette Integration",{"path":3445,"title":3446},"\u002Fchangelog\u002F2026\u002F01\u002Fff-expert-nr-actions","FlowFuse Expert: Integration with Node-RED",{"path":3448,"title":3449},"\u002Fchangelog\u002F2026\u002F01\u002Fff-expert-palette-queries","FlowFuse Expert: Palette Queries",{"path":3451,"title":3452},"\u002Fchangelog\u002F2026\u002F01\u002Fff-expert-select-flows","FlowFuse Expert: Ask about your flows",{"path":3454,"title":3455},"\u002Fchangelog\u002F2026\u002F01\u002Fmcp-rbacs","FlowFuse Expert: MCP-Powered Insights with RBACs",{"path":3457,"title":3458},"\u002Fchangelog\u002F2026\u002F01\u002Fmcp-security","FlowFuse Expert: MCP-Powered Insights",{"path":3460,"title":3461},"\u002Fchangelog\u002F2026\u002F02\u002Fdevice-agent-nodejs-options","Set Node.js Options for Remote Instances",{"path":3463,"title":3464},"\u002Fchangelog\u002F2026\u002F02\u002Fff-expert-debug-log-context","FlowFuse Expert: Helping you make sense of your debug log",{"path":3466,"title":3467},"\u002Fchangelog\u002F2026\u002F02\u002Fff-expert-update-banner","FlowFuse Expert: Never Miss an Update",{"path":3469,"title":3470},"\u002Fchangelog\u002F2026\u002F02\u002Fha-instance-rolling-restart","HA Hosted Instance Rolling Restart",{"path":3472,"title":3473},"\u002Fchangelog\u002F2026\u002F02\u002Fremote-instances-immersive-editor","Immersive Mode for Remote Instances",{"path":3475,"title":3476},"\u002Fchangelog\u002F2026\u002F02\u002Frestoring-snapshots-to-remote-instances","Restoring snapshots to developer-mode Remote Instances",{"path":3478,"title":3479},"\u002Fchangelog\u002F2026\u002F03\u002Fazure-dev-ops-gitops","Azure DevOps Pipeline support",{"path":3481,"title":3482},"\u002Fchangelog\u002F2026\u002F03\u002Fdeveloper-mode-in-immersive-editor","Developer Mode Now Accessible from the Immersive Editor",{"path":3484,"title":3485},"\u002Fchangelog\u002F2026\u002F03\u002Fembedded-editor-tab-title","Embedded Editor Now Shows Active Tab",{"path":3487,"title":3488},"\u002Fchangelog\u002F2026\u002F03\u002Fmarch-scheduled-maintenance","Updated: Upcoming Scheduled Server Maintenance on March 28th, 2026",{"path":3490,"title":3491},"\u002Fchangelog\u002F2026\u002F03\u002Fsnapshot-detail-modal-immersive-editor","View Snapshot Details in the Immersive Editor",{"path":3493,"title":3494},"\u002Fchangelog\u002F2026\u002F04\u002Fexpert-action-links","FlowFuse expert action links",{"path":3496,"title":3497},"\u002Fchangelog\u002F2026\u002F04\u002Fhosted-instance-url-env-var","Hosted Instances know their own URL",{"path":3499,"title":2756},"\u002Fchangelog\u002F2026\u002F04\u002Fimmersive-editor-drawer",{"path":3501,"title":3502},"\u002Fchangelog\u002F2026\u002F04\u002Fsnapshot-diff-viewer","Richer snapshot comparison view",{"path":3504,"title":3505},"\u002Fchangelog\u002F2026\u002F05\u002Fai-opt-out","AI Feature Opt-Out for Teams",{"path":3507,"title":3508},"\u002Fchangelog\u002F2026\u002F05\u002Fexpert-application-building","FlowFuse Expert Builds Your Application",{"path":3510,"title":3511},"\u002Fchangelog\u002F2026\u002F05\u002Fsingle-sso-provider","Single SSO provider for all users",{"path":3513,"title":3514},"\u002Fchangelog\u002F2026\u002F06\u002Fdark-mode","Dark Mode",{"path":3516,"title":3517},"\u002Fchangelog\u002F2026\u002F06\u002Fdevice-agent-v4-released","Device Agent v4 released",{"path":3519,"title":3520},"\u002Fchangelog\u002F2026\u002F06\u002Fgeneric-git-server-support","Connect Pipelines to Any Git Server",{"path":3522,"title":3523},"\u002Fchangelog\u002F2026\u002F06\u002Fjuly-scheduled-maintenance","Updated: Upcoming Scheduled Server Maintenance on July 11th, 2026",{"path":3525,"title":3526},"\u002Fchangelog\u002F2026\u002F07\u002Fapplication-sso-groups","Application Roles from SSO Groups",{"path":3528,"title":3529},"\u002Fchangelog\u002F2026\u002F07\u002Fdevice-agent-onboarding","Getting started with FlowFuse straight from the terminal",{"path":3531,"title":3532},"\u002Fchangelog\u002F2026\u002F07\u002Fexpert-enhancements","FlowFuse Expert Enhancements",{"path":3534,"title":3535},"\u002Fchangelog\u002F2026\u002F07\u002Fexpert-tables-automation","FlowFuse Expert Can Now Work With Your Tables",{"path":3537,"title":3538},"\u002Fchangelog\u002F2026\u002F07\u002Fscoped-pats","Team Scoped Personal Access Tokens",{"path":3540,"title":3541},"\u002Fchangelog\u002F2026\u002F07\u002Fteam-and-application-dashboards","A Dedicated Home for Your Dashboards",[3543,3549,3554,3560,3564,3571,3577,3584,3589,3594,3599,3604,3609,3614,3619,3621,3625,3632,3637,3643,3648,3654,3659,3666,3671,3677,3682,3686,3691,3696,3701,3706,3712,3717,3721,3726,3732,3737,3742,3747,3752,3757,3762,3767,3772,3777,3781,3786,3790,3795,3800,3805,3810,3815,3820,3825,3830,3835,3840,3844,3849,3854,3859,3864,3868,3873,3878,3883,3888,3893,3898,3903,3908,3913,3918,3923,3928,3933,3938,3943,3949,3954,3959,3964,3969,3974,3979,3984,3989,3994,3999,4004,4012,4017,4022,4027,4033,4038,4043,4048,4052,4057,4061,4066,4071,4076,4081,4085,4090,4095,4100,4105,4110,4115,4120,4127,4132,4137,4141,4146,4150,4155,4160,4165,4170,4174,4179,4184,4189,4194,4199,4204,4209,4216,4221,4226,4231,4236,4241,4246,4251,4256,4260,4265,4270,4275,4280,4284,4289,4294,4299,4304,4309,4314,4319,4324,4329,4334,4341,4347,4352,4358,4363,4368,4374,4379,4384,4390,4395,4400,4405,4411,4415,4420,4425,4430,4435,4440,4445,4450,4455,4461,4465,4470,4479,4484,4491,4500,4508,4513,4517,4522,4527,4532,4537,4542,4548,4553,4559,4565,4570,4576,4581,4587,4592,4596,4602,4608,4618,4624,4629,4635,4641,4648,4653,4658,4663,4672,4676,4683,4691,4696,4701,4711,4716,4722,4729,4736,4743,4748,4754,4761,4766,4775,4782,4790,4797,4804,4809,4815,4820,4826,4832,4838,4843,4848,4853,4858,4862,4867,4872,4876,4881,4887,4892,4896,4902,4907,4912,4917,4922,4927,4931,4936,4941,4946,4951,4956,4961,4968,4973,4979,4985,4990,4996,5000,5005,5010,5015,5020,5025,5030,5035,5040,5045,5049,5054,5059,5064,5069,5074,5078,5083,5088,5093,5098,5103,5108,5113,5118,5123,5128,5133,5138,5142,5147,5151,5156,5161,5166,5171,5178,5191,5196,5201,5206,5211,5217,5222,5227,5232,5237,5242,5247,5252,5257,5263,5267,5272,5276,5281,5286,5291,5296,5301,5306,5310,5316,5320,5325,5330,5335,5340,5345,5349,5354,5359,5364,5369,5374,5378,5383,5388,5393,5398,5402,5408,5413,5418,5423,5429,5434,5439,5444,5449,5454,5459,5464,5469,5474,5479,5484,5489,5494,5499,5504,5509,5514,5519,5524,5529,5534,5539,5544,5549,5554,5559,5564,5569,5574,5579,5584,5589,5594,5599,5604,5609,5614,5619,5623,5628,5633],{"path":3544,"title":3545,"date":3546,"tags":3547},"\u002Fblog\u002F2026\u002F08\u002Flayered-process-audit","Layered Process Audit (LPA): A Practical Guide + Checklist","2026-08-14",[3548,2611],"posts",{"path":3550,"title":3551,"date":3552,"tags":3553},"\u002Fblog\u002F2026\u002F08\u002Fconnect-agvs-vda-5050-mqtt","VDA 5050 Tutorial: Connect AGVs to Factory Systems over MQTT","2026-08-12",[3548,2611],{"path":3555,"title":3556,"date":3557,"tags":3558},"\u002Fblog\u002F2026\u002F08\u002Fmanufacturing-dashboard-examples","5 Manufacturing Dashboard Examples for Production, OEE & Quality","2026-08-05",[3548,3559,2611],"dashboard",{"path":3561,"title":3562,"date":3557,"tags":3563},"\u002Fblog\u002F2026\u002F08\u002Fstatistical-process-control","What Is Statistical Process Control in Manufacturing",[2611],{"path":3565,"title":3566,"date":3567,"tags":3568},"\u002Fblog\u002F2026\u002F07\u002Fcalibration-management-dashboard","Tracking Instrument Calibration with a Digital Dashboard","2026-07-31",[2611,3569,3570],"manufacturing","how-to",{"path":3572,"title":3573,"date":3567,"tags":3574},"\u002Fblog\u002F2026\u002F07\u002Fwhat-is-instrument-calibration","What Is Instrument Calibration (Equipment Calibration)?",[3575,3569,3576],"post","quality",{"path":3578,"title":3579,"date":3580,"tags":3581},"\u002Fblog\u002F2026\u002F07\u002Fflowfuse-release-2-33","FlowFuse 2.33: From Setting Up Plant Floor Hardware to Visualizing Your Data","2026-07-30",[2611,3582,3583],"news","releases",{"path":3585,"title":3586,"date":3587,"tags":3588},"\u002Fblog\u002F2026\u002F07\u002Fishikawa-fishbone-diagram","Ishikawa Fishbone Diagram: 6M, Manufacturing Example & Template","2026-07-27",[2611],{"path":3590,"title":3591,"date":3592,"tags":3593},"\u002Fblog\u002F2026\u002F07\u002Fdigital-work-instruction","Building Digital Work Instructions Dashboard for the Shop Floor","2026-07-24",[2611],{"path":3595,"title":3596,"date":3597,"tags":3598},"\u002Fblog\u002F2026\u002F07\u002Ftime-synchronization-edge-devices","Handling Clock Drift in Distributed Edge Devices","2026-07-17",[2611],{"path":3600,"title":3601,"date":3602,"tags":3603},"\u002Fblog\u002F2026\u002F07\u002Fdefect-and-quality-monitoring","Build a Defect Tracking and Quality Monitoring Dashboard","2026-07-16",[2611,3576],{"path":3605,"title":3606,"date":3607,"tags":3608},"\u002Fblog\u002F2026\u002F07\u002Fsoftware-defined-manufacturing","Software-Defined Manufacturing: Improve Without Hardware Changes","2026-07-13",[2611],{"path":3610,"title":3611,"date":3612,"tags":3613},"\u002Fblog\u002F2026\u002F07\u002Fbuild-downtime-logger","Build a Machine Downtime Tracking Application","2026-07-08",[2611],{"path":3615,"title":3616,"date":3617,"tags":3618},"\u002Fblog\u002F2026\u002F07\u002Fgitops-for-manufacturing","Why Manufacturing Needs GitOps","2026-07-03",[2611],{"path":2606,"title":5,"date":2594,"tags":3620},[2611],{"path":3622,"title":3623,"date":2594,"tags":3624},"\u002Fblog\u002F2026\u002F07\u002Fflowfuse-release-2-32","FlowFuse 2.32: Certified Redis, Git Pipelines for Any Server, Insights on Remote Instances, and Dark Mode",[2611,3582,3583],{"path":3626,"title":3627,"date":3628,"tags":3629},"\u002Fblog\u002F2026\u002F06\u002Fannouncing-node-red-con-2026","Announcing Node-RED Con 2026: Call for Papers Now Open","2026-06-29",[2611,3582,3630,3631],"community","node-red",{"path":3633,"title":3634,"date":3635,"tags":3636},"\u002Fblog\u002F2026\u002F06\u002Fapplication-idea-to-architectur","Turning an Application Idea into an Architecture","2026-06-26",[2611,3575],{"path":3638,"title":3639,"date":3640,"tags":3641},"\u002Fblog\u002F2026\u002F06\u002Fopcua-to-influxdb","Historical Data Logging with OPC UA and InfluxDB","2026-06-24",[3575,2611,3642],"opcua",{"path":3644,"title":3645,"date":3646,"tags":3647},"\u002Fblog\u002F2026\u002F06\u002Fprocess-rtsp-camera-feeds-at-the-edge","Processing RTSP Camera Feeds at the Edge","2026-06-23",[2611,3575],{"path":3649,"title":3650,"date":3651,"tags":3652},"\u002Fblog\u002F2026\u002F06\u002Fplc-communication-latency-causes-and-fixes","Fixing PLC Communication Latency: Where the Milliseconds Really Go","2026-06-17",[3575,3653],"plc",{"path":3655,"title":3656,"date":3657,"tags":3658},"\u002Fblog\u002F2026\u002F06\u002Fevent-driven-downtime-escalation-workflow","Why Downtime Spreadsheets Fail and How to Automate Detection and Escalation","2026-06-12",[3548],{"path":3660,"title":3661,"date":3662,"tags":3663},"\u002Fblog\u002F2026\u002F06\u002Fmqtt-vs-sparkplug-b","MQTT vs Sparkplug B: Which One (or Both) Do You Need?","2026-06-11",[3575,3664,3665],"mqtt","sparkplug",{"path":3667,"title":3668,"date":3669,"tags":3670},"\u002Fblog\u002F2026\u002F06\u002Fnode-red-5-on-flowfuse","Node-RED 5 Is Here: What It Means for Industrial Teams","2026-06-09",[2611,3631],{"path":3672,"title":3673,"date":3674,"tags":3675},"\u002Fblog\u002F2026\u002F06\u002Fopc-ua-security-best-practices","OPC UA Security: How to Establish a Defensible OPC UA Security Architecture","2026-06-05",[3575,3642,3676],"security",{"path":3678,"title":3679,"date":3680,"tags":3681},"\u002Fblog\u002F2026\u002F06\u002Fflowfuse-release-2-31","FlowFuse 2.31: Agentic Development Now in Open Beta, FlowFuse Expert Builds Your Industrial App on Edge Devices","2026-06-04",[2611,3582,3583],{"path":3683,"title":3684,"date":3680,"tags":3685},"\u002Fblog\u002F2026\u002F06\u002Fscaling-manufacturing-data-integration","How Arch Systems Connected 100+ Factory Databases with FlowFuse",[2611],{"path":3687,"title":3688,"date":3689,"tags":3690},"\u002Fblog\u002F2026\u002F05\u002Fopc-ua-security-attack-vectors","OPC UA Security: How Threat Actors Exploit Industrial Protocol Vulnerabilities","2026-05-29",[3548,2611,3642],{"path":3692,"title":3693,"date":3694,"tags":3695},"\u002Fblog\u002F2026\u002F05\u002Fnis2-iec-62443-manufacturers","NIS2 Compliance for Manufacturers: Why IEC 62443 Is the Missing Standard","2026-05-28",[2611],{"path":3697,"title":3698,"date":3699,"tags":3700},"\u002Fblog\u002F2026\u002F05\u002Fgit-snapshot-for-iiot-flows","See Every Logic Change in Your IIoT MOC Review with Git-Style Diffs","2026-05-21",[2611],{"path":3702,"title":3703,"date":3704,"tags":3705},"\u002Fblog\u002F2026\u002F05\u002Fmanufacturing-software-built-in-stages","All-or-Nothing Manufacturing Software Is Killing Your Agility","2026-05-18",[2611],{"path":3707,"title":3708,"date":3709,"tags":3710},"\u002Fblog\u002F2026\u002F05\u002Fflowfuse-expert-building-flows","How to Build Industrial Apps With FlowFuse AI Expert","2026-05-13",[2611,3711],"ai",{"path":3713,"title":3714,"date":3715,"tags":3716},"\u002Fblog\u002F2026\u002F05\u002Ffixing-oee-measurement-in-manufacturing","OEE Is Misleading Your Factory: Here's How to Fix It","2026-05-07",[2611],{"path":3718,"title":3719,"date":3715,"tags":3720},"\u002Fblog\u002F2026\u002F05\u002Fflowfuse-release-2-30","FlowFuse 2.30: Expert Builds Your Industrial Application",[2611,3582,3583],{"path":3722,"title":3723,"date":3724,"tags":3725},"\u002Fblog\u002F2026\u002F04\u002Frosetta-stone-for-industrial-data","The Rosetta Stone for Factories: Why IIoT Needs a Common Language First","2026-04-30",[2611],{"path":3727,"title":3728,"date":3729,"tags":3730},"\u002Fblog\u002F2026\u002F04\u002Fdiagnosing-modbus-degradation","Diagnosing Modbus Degradation: From CRC Errors to TCP Timeouts","2026-04-29",[2611,3731],"modbus",{"path":3733,"title":3734,"date":3735,"tags":3736},"\u002Fblog\u002F2026\u002F04\u002Fcloud-edge-or-hybrid-how-to-choose-your-flowfuse-deployment","Cloud, Edge, or Both? How to Choose Your Deployment Before an Outage Does It For You","2026-04-24",[2611],{"path":3738,"title":3739,"date":3740,"tags":3741},"\u002Fblog\u002F2026\u002F04\u002Fstop-noisy-sensor-data-deadband-filter-flowfuse","How to Stop Noisy Sensor Data from Flooding Your Industrial System","2026-04-23",[2611],{"path":3743,"title":3744,"date":3745,"tags":3746},"\u002Fblog\u002F2026\u002F04\u002Fit-vs-ot-who-owns-the-edge","IT vs. OT: Who Actually Owns the Edge?","2026-04-17",[2611],{"path":3748,"title":3749,"date":3750,"tags":3751},"\u002Fblog\u002F2026\u002F04\u002Fconnect-industrial-edge-devices-aws-iot-core","How to Connect Industrial Edge Devices to AWS IoT Core","2026-04-16",[2611],{"path":3753,"title":3754,"date":3755,"tags":3756},"\u002Fblog\u002F2026\u002F04\u002Fflowfuse-release-2-29","FlowFuse 2.29: FlowFuse Expert Comes to Self-Hosted Enterprise","2026-04-09",[2611,3582,3583,3711],{"path":3758,"title":3759,"date":3760,"tags":3761},"\u002Fblog\u002F2026\u002F04\u002Fwhy-simplicity-wins-in-iiot","The Real Cost of Over-Engineered Industrial Systems","2026-04-08",[2611],{"path":3763,"title":3764,"date":3765,"tags":3766},"\u002Fblog\u002F2026\u002F04\u002Fmodbus-polling-best-practices","Most Modbus Polling Setups Are Wrong: Here's How to Fix Yours","2026-04-03",[2611,3731],{"path":3768,"title":3769,"date":3770,"tags":3771},"\u002Fblog\u002F2026\u002F03\u002Fwhy-opcua-is-not-replacing-modbus-yet","Why OPC UA Is Not Replacing Modbus (Yet)","2026-03-30",[2611,3642,3731],{"path":3773,"title":3774,"date":3775,"tags":3776},"\u002Fblog\u002F2026\u002F03\u002Fhow-to-parse-binary-data-serial-devices","How to Parse Binary Data from Serial Devices","2026-03-27",[2611],{"path":3778,"title":3779,"date":3775,"tags":3780},"\u002Fblog\u002F2026\u002F03\u002Frethinking-edge-ais-core-orchestration","Rethinking Edge AI's Core Orchestration",[2611,3711],{"path":3782,"title":3783,"date":3784,"tags":3785},"\u002Fblog\u002F2026\u002F03\u002Fai-usecases-in-factory","5 Places Smart Factories Are Already Using AI","2026-03-24",[2611,3711],{"path":3787,"title":3788,"date":3789,"tags":2597},"\u002Fblog\u002F2026\u002F03\u002Fenterprise-packaging-updates","FlowFuse Enterprise: More Power, More Confidence","2026-03-23",{"path":3791,"title":3792,"date":3793,"tags":3794},"\u002Fblog\u002F2026\u002F03\u002Fhow-to-monitor-industrial-network-usign-snmp","How to Monitor Industrial Network Health Using SNMP","2026-03-20",[2611],{"path":3796,"title":3797,"date":3798,"tags":3799},"\u002Fblog\u002F2026\u002F03\u002Fedge-ai-vs-cloud-ai-in-iiot","Edge vs Cloud AI in Manufacturing: Where Each Actually Belongs","2026-03-16",[2611],{"path":3801,"title":3802,"date":3803,"tags":3804},"\u002Fblog\u002F2026\u002F03\u002Fhow-to-connect-to-twincat-using-ads","How to Connect to Beckhoff TwinCAT PLC Using ADS (2026)","2026-03-13",[2611,3653],{"path":3806,"title":3807,"date":3808,"tags":3809},"\u002Fblog\u002F2026\u002F03\u002Fflowfuse-release-2-28","FlowFuse 2.28: Troubleshoot Faster, Manage Edge Devices Centrally, and More Self-Hosted Flexibility","2026-03-12",[2611,3582,3583],{"path":3811,"title":3812,"date":3813,"tags":3814},"\u002Fblog\u002F2026\u002F03\u002Flast-mile-problem-ai","The Last Mile Problem in Industrial AI","2026-03-09",[2611,3711],{"path":3816,"title":3817,"date":3818,"tags":3819},"\u002Fblog\u002F2026\u002F03\u002Fhow-to-implement-dlq-and-retries","How to Stop Silent Pipeline Failures From Swallowing Your IIoT Data","2026-03-05",[2611],{"path":3821,"title":3822,"date":3823,"tags":3824},"\u002Fblog\u002F2026\u002F03\u002Fbus-factory-problem-in-manufacturing","The Bus Factor Problem in Integration Systems","2026-03-02",[2611],{"path":3826,"title":3827,"date":3828,"tags":3829},"\u002Fblog\u002F2026\u002F02\u002Fedge-ai-is-80-percent-pipeline-and-20-percent-ai","Edge AI Is 80% Plumbing, 20% Intelligence","2026-02-27",[2611,3711],{"path":3831,"title":3832,"date":3833,"tags":3834},"\u002Fblog\u002F2026\u002F02\u002Fmqtt-influxdb-tutorial","How to Build an MQTT-to-InfluxDB Data Pipeline (2026)","2026-02-26",[2611,3664],{"path":3836,"title":3837,"date":3838,"tags":3839},"\u002Fblog\u002F2026\u002F02\u002Fmodbus-tcp-vs-modbus-rtu","Modbus TCP vs Modbus RTU: Reliability, Latency, and Failure Modes","2026-02-20",[2611,3731],{"path":3841,"title":3842,"date":3838,"tags":3843},"\u002Fblog\u002F2026\u002F02\u002Fmotor-anomaly-detector-ai","Building an AI Vibration Anomaly Detector for Industrial Motors",[2611,3711],{"path":3845,"title":3846,"date":3847,"tags":3848},"\u002Fblog\u002F2026\u002F02\u002Fgetting-started-with-canbus","CAN Bus Tutorial: Connect to Dashboards, Cloud, and Industrial Systems","2026-02-13",[2611],{"path":3850,"title":3851,"date":3852,"tags":3853},"\u002Fblog\u002F2026\u002F02\u002Fflowfuse-release-2-27","FlowFuse 2.27: Integrated Editor in Remote Instances & Context-Aware FlowFuse Expert","2026-02-12",[2611,3582,3583],{"path":3855,"title":3856,"date":3857,"tags":3858},"\u002Fblog\u002F2026\u002F02\u002Fwhat-is-event-driven-architecture-in-manufacturing","Event-Driven Architecture: 99% of Your System Requests Are Worthless","2026-02-10",[2611],{"path":3860,"title":3861,"date":3862,"tags":3863},"\u002Fblog\u002F2026\u002F02\u002Fmapping-mtconnect-streams","Mapping MTConnect Streams for Dashboard Visualization","2026-02-06",[2611],{"path":3865,"title":3866,"date":3862,"tags":3867},"\u002Fblog\u002F2026\u002F02\u002Fshop-floor-to-ai-signals-context-decisions","Shop Floor AI: Dead on Arrival Without This",[2611,3711],{"path":3869,"title":3870,"date":3871,"tags":3872},"\u002Fblog\u002F2026\u002F02\u002Fmqtt-vs-coap","MQTT vs CoAP: Measure Your Constraints or Pick Wrong","2026-02-05",[2611,3664],{"path":3874,"title":3875,"date":3876,"tags":3877},"\u002Fblog\u002F2026\u002F01\u002Feliminate-opc-ua-bottleneck-ai-agents","Agentic AI Reads OPC UA Servers So You Don't Have To","2026-01-30",[2611,3642],{"path":3879,"title":3880,"date":3881,"tags":3882},"\u002Fblog\u002F2026\u002F01\u002Fwhy-modbus-still-exist","Why Modbus Refuses to Die","2026-01-26",[2611,3731],{"path":3884,"title":3885,"date":3886,"tags":3887},"\u002Fblog\u002F2026\u002F01\u002Fopcua-vs-mqtt","MQTT vs OPC UA: Why This Question Never Has a Straight Answer","2026-01-21",[2611,3642,3664],{"path":3889,"title":3890,"date":3891,"tags":3892},"\u002Fblog\u002F2026\u002F01\u002Fkepware-opcua-better-alternative","Beyond Kepware: Why Modern Industrial Connectivity Demands a Second Look","2026-01-16",[2611,3642],{"path":3894,"title":3895,"date":3896,"tags":3897},"\u002Fblog\u002F2026\u002F01\u002Fflowfuse-release-2-26","FlowFuse 2.26: Bringing access-controls to your MCP nodes","2026-01-15",[2611,3582,3583,3711],{"path":3899,"title":3900,"date":3901,"tags":3902},"\u002Fblog\u002F2026\u002F01\u002Fwhat-is-system-integrator","What Is a System Integrator? Understanding Manufacturing's Most Misunderstood Role","2026-01-13",[2611],{"path":3904,"title":3905,"date":3906,"tags":3907},"\u002Fblog\u002F2026\u002F01\u002Fhow-to-integrate-node-red-with-git","Integrating Git within Node-RED Workflow with FlowFuse","2026-01-06",[2611],{"path":3909,"title":3910,"date":3911,"tags":3912},"\u002Fblog\u002F2026\u002F01\u002Fnode-red-history-community-industrial-iot-flowfuse","The Node-RED Story: How Visual Programming Escaped the Lab and Conquered Industry","2026-01-05",[3631],{"path":3914,"title":3915,"date":3916,"tags":3917},"\u002Fblog\u002F2025\u002F12\u002Fwhat-is-mttf","Mean Time to Failure (MTTF): Formula, Calculation, MTTF vs MTBF vs MTTR, and More","2025-12-29",[2611],{"path":3919,"title":3920,"date":3921,"tags":3922},"\u002Fblog\u002F2025\u002F12\u002Fwhat-is-plc","What Is a PLC (Programmable Logic Controller)? What It Does, How It Works, and Where It's Used","2025-12-26",[2611,3653],{"path":3924,"title":3925,"date":3926,"tags":3927},"\u002Fblog\u002F2025\u002F12\u002Fnode-red-timer","Node-RED Timer Tutorial: Create Stopwatch and Countdown Timers","2025-12-24",[3631],{"path":3929,"title":3930,"date":3931,"tags":3932},"\u002Fblog\u002F2025\u002F12\u002Ffive-whys-root-cause-analysis-definition-examples","Five Whys Root Cause Analysis: Definition, Steps & Examples (2026)","2025-12-22",[2611],{"path":3934,"title":3935,"date":3936,"tags":3937},"\u002Fblog\u002F2025\u002F12\u002Fwhat-is-teep","What is TEEP? Calculation, Benchmarks & TEEP vs OEE (2026)","2025-12-19",[2611],{"path":3939,"title":3940,"date":3941,"tags":3942},"\u002Fblog\u002F2025\u002F12\u002Fflowfuse-release-2-25","FlowFuse 2.25: Interacting with MCP Resources in FlowFuse Expert, Improved Update Scheduling, and lots of UI improvements!","2025-12-18",[2611,3582,3583],{"path":3944,"title":3945,"date":3946,"tags":3947},"\u002Fblog\u002F2025\u002F12\u002Fkafka-vs-mqtt","MQTT vs Kafka: Complete Comparison Guide 2026","2025-12-17",[2611,3664,3948],"kafka",{"path":3950,"title":3951,"date":3952,"tags":3953},"\u002Fblog\u002F2025\u002F12\u002Fnode-red-buffer-parser-industrial-data","Node-RED Buffer Parser Guide: Decode Modbus and Industrial Device Data (2026)","2025-12-10",[2611,3570],{"path":3955,"title":3956,"date":3957,"tags":3958},"\u002Fblog\u002F2025\u002F12\u002Fgetting-weather-data-in-node-red","Building a Weather Dashboard in Node-RED (2026)","2025-12-05",[3631],{"path":3960,"title":3961,"date":3962,"tags":3963},"\u002Fblog\u002F2025\u002F12\u002Fread-s7-optimized-datablocks-flowfuse","How to Access Optimized Data Blocks in TIA Portal (S7-1200\u002F1500)","2025-12-04",[2611,3653],{"path":3965,"title":3966,"date":3967,"tags":3968},"\u002Fblog\u002F2025\u002F11\u002Foptimize-industrial-data-protocol-buffers","How to Optimize Industrial Data Communication with Protocol Buffers","2025-11-28",[2611],{"path":3970,"title":3971,"date":3972,"tags":3973},"\u002Fblog\u002F2025\u002F11\u002Findustrial-data-validation-guide","How to Protect Your Factory From Bad Data: A Must-Have Read for IIoT","2025-11-27",[2611],{"path":3975,"title":3976,"date":3977,"tags":3978},"\u002Fblog\u002F2025\u002F11\u002Fstore-and-forward-edge-data-buffering","Store-and-Forward at the Edge: Buffering Production Data During Network Outages","2025-11-21",[2611,3653],{"path":3980,"title":3981,"date":3982,"tags":3983},"\u002Fblog\u002F2025\u002F11\u002Fflowfuse-release-2-24","FlowFuse 2.24: FlowFuse Expert in the Node-RED Editor, Scheduled Updates, Simpler Edge Device Addition, Store and Forward Blueprint, and what's next!","2025-11-20",[2611,3582,3583,3711],{"path":3985,"title":3986,"date":3987,"tags":3988},"\u002Fblog\u002F2025\u002F11\u002Fbuilding-hmi-for-equipment-control","Building a Web HMI for Factory Equipment Control","2025-11-19",[2611,3653],{"path":3990,"title":3991,"date":3992,"tags":3993},"\u002Fblog\u002F2025\u002F11\u002Fflowfuse+llm+mcp-equals-text-driven-operations","FlowFuse + LLM + MCP = Text Driven Operations","2025-11-12",[2611,3631,3711],{"path":3995,"title":3996,"date":3997,"tags":3998},"\u002Fblog\u002F2025\u002F11\u002Fbuilding-label-scanner-with-flowfuse","Building a Label Scanner with FlowFuse for Product Labels & Serial Numbers","2025-11-11",[2611],{"path":4000,"title":4001,"date":4002,"tags":4003},"\u002Fblog\u002F2025\u002F11\u002Fcsv-mqtt-database-dashboard-flowfuse","How to Ingest CSV Logs into MQTT, Databases, and Dashboards","2025-11-10",[2611,3664],{"path":4005,"title":4006,"date":4007,"tags":4008},"\u002Fblog\u002F2025\u002F11\u002Fptc-kepware-thingworx-divestment","The Industrial IoT Market Shift: What the PTC Divestment Means for Your Data Strategy","2025-11-06",[2611,3631,4009,4010,4011],"kepware","thingworx","industrial-iot",{"path":4013,"title":4014,"date":4015,"tags":4016},"\u002Fblog\u002F2025\u002F10\u002Fplc-to-mqtt-using-flowfuse","How to Connect Any PLC to MQTT in Under an Hour","2025-10-27",[2611,3731,3664,3653],{"path":4018,"title":4019,"date":4020,"tags":4021},"\u002Fblog\u002F2025\u002F10\u002Fflowfuse-release-2-23","FlowFuse 2.23: MCP and ONNX nodes, FlowFuse AI Expert on the homepage, Application-level Permission Control, FlowFuse Expert for Self-Hosted, and more!","2025-10-23",[2611,3582,3583,3711],{"path":4023,"title":4024,"date":4025,"tags":4026},"\u002Fblog\u002F2025\u002F10\u002Fhow-to-log-plc-data-csv-files","How to Log PLC Data to CSV Files","2025-10-22",[2611,3653],{"path":4028,"title":4029,"date":4030,"tags":4031},"\u002Fblog\u002F2025\u002F10\u002Fintroducing-flowfuse-expert","Introducing FlowFuse Expert","2025-10-16",[2611,4032],"AI",{"path":4034,"title":4035,"date":4036,"tags":4037},"\u002Fblog\u002F2025\u002F10\u002Fbuilding-mcp-server-using-flowfuse","Building MCP Servers for AI Agent Integration in Node-RED with FlowFuse","2025-10-14",[2611,4032],{"path":4039,"title":4040,"date":4041,"tags":4042},"\u002Fblog\u002F2025\u002F10\u002Fai-on-flowfuse","MCP and Custom AI Models on FlowFuse!","2025-10-13",[2611,3631,3575,3711],{"path":4044,"title":4045,"date":4046,"tags":4047},"\u002Fblog\u002F2025\u002F10\u002Fcustom-onnx-model","Deploy Custom-Trained AI Models: Using ONNX with Node-RED and FlowFuse","2025-10-10",[2611,3711],{"path":4049,"title":4050,"date":4046,"tags":4051},"\u002Fblog\u002F2025\u002F10\u002Fusing-ethernet-ip-with-flowfuse","EtherNet\u002FIP Integration with FlowFuse: Communicating with Allen-Bradley PLCs",[2611,3631,3575,3653],{"path":4053,"title":4054,"date":4055,"tags":4056},"\u002Fblog\u002F2025\u002F10\u002Fnode-red-revolution","The Node-RED Revolution: How Low-Code is Democratizing Industrial Automation","2025-10-09",[2611,3631],{"path":4058,"title":4059,"date":4055,"tags":4060},"\u002Fblog\u002F2025\u002F10\u002Fthe-ai-orchestration-hype","Beyond Cloud AI Orchestration: Why the Future is Hybrid Edge-Cloud Intelligence",[2611,3631,3711],{"path":4062,"title":4063,"date":4064,"tags":4065},"\u002Fblog\u002F2025\u002F10\u002Fnode-red-vs-flowfuse","What's the Difference Between Node-RED and FlowFuse","2025-10-08",[2611],{"path":4067,"title":4068,"date":4069,"tags":4070},"\u002Fblog\u002F2025\u002F10\u002Fopen-ai-agent-builder-versus-flowfuse","OpenAI's AgentKit or FlowFuse: Choosing the Right Low-Code App for Your Needs","2025-10-07",[2611,3548,3711],{"path":4072,"title":4073,"date":4074,"tags":4075},"\u002Fblog\u002F2025\u002F09\u002Fusing-modbus-with-flowfuse","Modbus RTU (RS485\u002FRS422\u002FRS232) Communications with FlowFuse","2025-09-26",[2611,3731],{"path":4077,"title":4078,"date":4079,"tags":4080},"\u002Fblog\u002F2025\u002F09\u002Fflowfuse-release-2-22","FlowFuse 2.22: FlowFuse Expert for node editing, FlowFuse Broker schema autodetection, Improved Snapshots Interface, eCharts enablement, and FlowFuse Dashboard Updates","2025-09-25",[2611,3582,3583],{"path":4082,"title":4083,"date":4079,"tags":4084},"\u002Fblog\u002F2025\u002F09\u002Fwhat-is-takt-time","Takt Time: Definition, Formula, How to Calculate with Examples & More [2026 Edition]",[2611],{"path":4086,"title":4087,"date":4088,"tags":4089},"\u002Fblog\u002F2025\u002F09\u002Finstalling-node-red","Download Node-RED for Production: Windows, Mac, Linux, Raspberry Pi (2026)","2025-09-19",[2611,3631],{"path":4091,"title":4092,"date":4093,"tags":4094},"\u002Fblog\u002F2025\u002F09\u002Fai-assistant-flowfuse-tables","Query Your Database with Natural Language Using FlowFuse Expert","2025-09-18",[2611,3711],{"path":4096,"title":4097,"date":4098,"tags":4099},"\u002Fblog\u002F2025\u002F09\u002Fintegrating-lorawan-with-flowfuse-node-red","Integrating LoRaWAN with FlowFuse","2025-09-17",[2611],{"path":4101,"title":4102,"date":4103,"tags":4104},"\u002Fblog\u002F2025\u002F09\u002Fpoka-yoke-mistake-proofing","Poka Yoke (Poke Yoke, Bokayoke) Explained: Definition, Examples, Types (2026)","2025-09-11",[2611],{"path":4106,"title":4107,"date":4108,"tags":4109},"\u002Fblog\u002F2025\u002F09\u002Fwhat-is-5s-checklist","What is 5S Checklist: Definition, Benefits, Implementation, and Template","2025-09-10",[2611,3559],{"path":4111,"title":4112,"date":4113,"tags":4114},"\u002Fblog\u002F2025\u002F09\u002Fit-vs-ot-difference-between-information-technology-and-operational-technology","IT vs OT: Key Differences, Security Risks, and IT\u002FOT Convergence","2025-09-08",[2611],{"path":4116,"title":4117,"date":4118,"tags":4119},"\u002Fblog\u002F2025\u002F09\u002Fpreventive-maintenance-equipment-failure","Preventive Maintenance in Manufacturing: Avoid Multi-Million Dollar Equipment Failures","2025-09-04",[2611],{"path":4121,"title":4122,"date":4123,"tags":4124},"\u002Fblog\u002F2025\u002F09\u002Fcreating-pareto-chart","How to Create a Pareto Chart for Manufacturing Data","2025-09-02",[4125,3569,4126],"pareto-chart","data-analysis",{"path":4128,"title":4129,"date":4130,"tags":4131},"\u002Fblog\u002F2025\u002F08\u002Fflowfuse-node-red-api","FlowFuse API for Industry: Automating Node-RED Instances, Devices, and CI\u002FCD Tasks","2025-08-29",[2611],{"path":4133,"title":4134,"date":4135,"tags":4136},"\u002Fblog\u002F2025\u002F08\u002Fflowfuse-release-2-21","FlowFuse 2.21: AI-Assisted SQL, Low-Code Custom Nodes, and Remote Instance Performance Insights","2025-08-28",[2611,3582,3583,3711],{"path":4138,"title":4139,"date":4135,"tags":4140},"\u002Fblog\u002F2025\u002F08\u002Fpareto-chart-manufacturing-guide","Pareto Chart & Diagram: What It Is, Formula, Examples & Manufacturing Applications",[2611],{"path":4142,"title":4143,"date":4144,"tags":4145},"\u002Fblog\u002F2025\u002F08\u002Fannual_billing","Save with FlowFuse Annual Billing – Now Available!","2025-08-22",[2611,3582],{"path":4147,"title":4148,"date":4144,"tags":4149},"\u002Fblog\u002F2025\u002F08\u002Forchestrating-virtual-power-plants-low-code-platforms","Orchestrating Virtual Power Plants: How Low-Code Platforms Bridge the Gap",[2611],{"path":4151,"title":4152,"date":4153,"tags":4154},"\u002Fblog\u002F2025\u002F08\u002Ftime-series-dashboard-flowfuse-postgresql","Building Historical Data Dashboard with FlowFuse Tables","2025-08-21",[2611],{"path":4156,"title":4157,"date":4158,"tags":4159},"\u002Fblog\u002F2025\u002F08\u002Fopen-source-software-and-manufacturing","Winning Through Open-Source Software in Manufacturing Digitalization","2025-08-20",[2611,3631],{"path":4161,"title":4162,"date":4163,"tags":4164},"\u002Fblog\u002F2025\u002F08\u002Fadvanced-opcua-real-time-subscriptions-alarms-historical-data","OPC UA Tutorial: Advanced Monitoring with Subscriptions, Alarms, and Historical Data","2025-08-14",[2611,3642],{"path":4166,"title":4167,"date":4168,"tags":4169},"\u002Fblog\u002F2025\u002F08\u002Fflowfuse-why-pricing-matters","The Evolution of Business Automation: Why Pricing Models Matter","2025-08-08",[2611],{"path":4171,"title":4172,"date":4168,"tags":4173},"\u002Fblog\u002F2025\u002F08\u002Fgetting-started-with-flowfuse-tables","FlowFuse's New Database: The Easiest Way to Store Industrial IoT Data",[2611],{"path":4175,"title":4176,"date":4177,"tags":4178},"\u002Fblog\u002F2025\u002F07\u002Fflowfuse-release-2-20","FlowFuse 2.20: AI-Assisted Node-RED & New Database Service","2025-07-31",[2611,3582,3583,3711],{"path":4180,"title":4181,"date":4182,"tags":4183},"\u002Fblog\u002F2025\u002F07\u002Fflowfuse-ai-assistant-better-node-red-manufacturing","FlowFuse Expert: Let Your Engineers Build Automation, Not Write Code","2025-07-29",[2611],{"path":4185,"title":4186,"date":4187,"tags":4188},"\u002Fblog\u002F2025\u002F07\u002Fquality-control-automation-spc-charts","Statistical Process Control (SPC): Benefits and Implementation Guide","2025-07-24",[3548,2611],{"path":4190,"title":4191,"date":4192,"tags":4193},"\u002Fblog\u002F2025\u002F07\u002Freading-and-writing-plc-data-using-opc-ua","OPC UA Tutorial: Connect and Exchange Data with Industrial Equipment","2025-07-16",[2611,3642,3653],{"path":4195,"title":4196,"date":4197,"tags":4198},"\u002Fblog\u002F2025\u002F07\u002Fconnect-legacy-equipment-serial-flowfuse","Node-RED Serial Port Tutorial: Connect RS232\u002FRS485 Manufacturing Equipment (2026)","2025-07-09",[2611,3642,3570],{"path":4200,"title":4201,"date":4202,"tags":4203},"\u002Fblog\u002F2025\u002F07\u002Fflowfuse-release-2-19","FlowFuse 2.19: More Powerful AI in Node-RED, Drop-In Blueprints, Memory Monitoring, and Faster Onboarding","2025-07-03",[2611,3582,3583],{"path":4205,"title":4206,"date":4202,"tags":4207},"\u002Fblog\u002F2025\u002F07\u002Fsmart-manufacturing-order-panel-flowfuse","How we Built a Smart Manufacturing Order Execution Panel with FlowFuse",[2611,4208],"mes",{"path":4210,"title":4211,"date":4212,"tags":4213},"\u002Fblog\u002F2025\u002F07\u002Fcertified-nodes-v2","Curated Node-RED Integrations: FlowFuse Certified Nodes 2.0","2025-07-01",[2611,3631,4214,4215],"certified-nodes","developers",{"path":4217,"title":4218,"date":4219,"tags":4220},"\u002Fblog\u002F2025\u002F06\u002Fbuilding-andon-task-manager-dashboard-with-ff","Part 2: Building an Andon Task Manager with FlowFuse","2025-06-26",[2611],{"path":4222,"title":4223,"date":4224,"tags":4225},"\u002Fblog\u002F2025\u002F06\u002Fshop-floor-kpis-for-mes","What to Measure on the Shop Floor: Factory KPIs Your MES Should Deliver","2025-06-20",[2611,4208],{"path":4227,"title":4228,"date":4229,"tags":4230},"\u002Fblog\u002F2025\u002F06\u002Fstructuring-storing-data-mes-integration","Structuring and Storing Data for Effective MES Integration","2025-06-18",[2611,4208],{"path":4232,"title":4233,"date":4234,"tags":4235},"\u002Fblog\u002F2025\u002F06\u002Fdata-acquisition-for-mes","MES Data Acquisition: How to Unlock Your Factory’s Hidden Data","2025-06-13",[2611,4208],{"path":4237,"title":4238,"date":4239,"tags":4240},"\u002Fblog\u002F2025\u002F06\u002Fannouncing-node-red-con-2025","Announcing Node-RED Con 2025: A Community Conference on Industrial Applications","2025-06-12",[2611,3582,3630,3631],{"path":4242,"title":4243,"date":4244,"tags":4245},"\u002Fblog\u002F2025\u002F06\u002Fflowfuse-forms-easy-data-collection-factory-floor","FlowFuse Forms: Easy Data Collection for Your Factory Floor","2025-06-10",[2611],{"path":4247,"title":4248,"date":4244,"tags":4249},"\u002Fblog\u002F2025\u002F06\u002Foptimizing-operations-improve-industrial-operations-with-flowfuse","Optimizing operations: Improve Industrial Operations with FlowFuse",[2611,3582,4250],"funding",{"path":4252,"title":4253,"date":4254,"tags":4255},"\u002Fblog\u002F2025\u002F06\u002Fflowfuse-release-2-18","FlowFuse 2.18: Smarter Monitoring, AI Integration, Improved DevOps, and a preview of exciting things to come","2025-06-05",[2611,3582,3583,3711],{"path":4257,"title":4258,"date":4254,"tags":4259},"\u002Fblog\u002F2025\u002F06\u002Fwhat-is-mes","What Is MES (Manufacturing Execution System)? How It Works, Benefits, and Challenges",[2611,4208],{"path":4261,"title":4262,"date":4263,"tags":4264},"\u002Fblog\u002F2025\u002F06\u002Fconnect-shop-floor-to-odoo-erp-flowfuse","Connect Your Shop Floor to Your ERP – Odoo Edition","2025-06-02",[2611],{"path":4266,"title":4267,"date":4268,"tags":4269},"\u002Fblog\u002F2025\u002F05\u002Fdesigning-flexible-cron-schedules-in-flowfuse-with-node-red","Building a Flexible Node-RED Scheduler with Cron-Plus","2025-05-15",[2611],{"path":4271,"title":4272,"date":4273,"tags":4274},"\u002Fblog\u002F2025\u002F05\u002Fdisplaying-embeded-webpages-on-node-red-dashboard","How to Embed Webpages on the FlowFuse Dashboard","2025-05-13",[2611],{"path":4276,"title":4277,"date":4278,"tags":4279},"\u002Fblog\u002F2025\u002F05\u002Fbuilding-andon-task-manager-with-ff","Part 1: Building an Andon Task Manager with FlowFuse","2025-05-08",[2611],{"path":4281,"title":4282,"date":4278,"tags":4283},"\u002Fblog\u002F2025\u002F05\u002Fflowfuse-release-2-17","FlowFuse 2.17: Easier remote instance onboarding, Dashboard blueprint, PDF generation, and more",[2611,3582,3583],{"path":4285,"title":4286,"date":4287,"tags":4288},"\u002Fblog\u002F2025\u002F05\u002Fhow-to-generate-pdf-reports-using-node-red","How to Generate PDF Reports Using Node-RED in FlowFuse (2026)","2025-05-07",[2611,3570],{"path":4290,"title":4291,"date":4292,"tags":4293},"\u002Fblog\u002F2025\u002F04\u002Fdesign-and-scale-oee-dashboard","How to Design and Scale an OEE Dashboard for Factory Screens","2025-04-16",[2611],{"path":4295,"title":4296,"date":4297,"tags":4298},"\u002Fblog\u002F2025\u002F04\u002Fflowfuse-release-2-16","FlowFuse 2.16: Git Integration, improved log retention and more","2025-04-10",[2611,3582,3583],{"path":4300,"title":4301,"date":4302,"tags":4303},"\u002Fblog\u002F2025\u002F04\u002Fbuild-manufacturing-oee-dashboard","How to Build a Manufacturing OEE Dashboard with FlowFuse","2025-04-09",[2611],{"path":4305,"title":4306,"date":4307,"tags":4308},"\u002Fblog\u002F2025\u002F04\u002Fwhat-is-an-oee-dashboard","What Is an OEE Dashboard? KPIs, Metrics, and How to Plan One","2025-04-01",[2611],{"path":4310,"title":4311,"date":4312,"tags":4313},"\u002Fblog\u002F2025\u002F03\u002Fmanaging-mqtt-connections-at-scale-in-flowfuse","Managing MQTT Connections at Scale in FlowFuse","2025-03-28",[2611,3664],{"path":4315,"title":4316,"date":4317,"tags":4318},"\u002Fblog\u002F2025\u002F03\u002Fflowfuse-release-2-15","FlowFuse 2.15: Personal Node Collections, Smart Schema Suggestions and more control in DevOps Pipelines!","2025-03-12",[2611,3582,3583],{"path":4320,"title":4321,"date":4322,"tags":4323},"\u002Fblog\u002F2025\u002F02\u002Fmonitoring-system-health-performance-scale-flowfuse","Monitoring Device Health and Performance at Scale with FlowFuse","2025-02-21",[3631,2611],{"path":4325,"title":4326,"date":4327,"tags":4328},"\u002Fblog\u002F2025\u002F02\u002Finteracting-with-arduino-using-node-red","Interacting with Arduino using Node-RED","2025-02-12",[3631],{"path":4330,"title":4331,"date":4332,"tags":4333},"\u002Fblog\u002F2025\u002F02\u002Fflowfuse-release-2-14","FlowFuse 2.14: Announcing Third-Party Broker Integration, UNS Schemas, Enhanced Auth on Remote Instances and more!","2025-02-11",[2611,3582,3583],{"path":4335,"title":4336,"date":4337,"tags":4338},"\u002Fblog\u002F2025\u002F02\u002Fnode-red-academy-announcement","Announcing Node-RED Academy!","2025-02-05",[2611,3631,4339,4340,3582],"education","Node-RED Academy",{"path":4342,"title":4343,"date":4344,"tags":4345},"\u002Fblog\u002F2025\u002F01\u002Fdesigning-topic-hierarchy-for-your-uns","Designing a Clear Topic Structure for Your UNS","2025-01-31",[2611,4346,3664],"unified-namespace",{"path":4348,"title":4349,"date":4350,"tags":4351},"\u002Fblog\u002F2025\u002F01\u002Fhow-to-choose-right-iot-device-management-tool","How to Choose the Right IIoT Device Management Software for Your Business","2025-01-24",[2611],{"path":4353,"title":4354,"date":4355,"tags":4356},"\u002Fblog\u002F2025\u002F01\u002Fwhy-flowfuse-is-complete-toolkit-for-uns","Why FlowFuse is the Complete Toolkit For Building UNS?","2025-01-20",[2611,4357,4346],"flowfuse features",{"path":4359,"title":4360,"date":4361,"tags":4362},"\u002Fblog\u002F2025\u002F01\u002Fintegrating-siemens-s7-plcs-with-node-red-guide","How to Read and Write Siemens S7 PLC Data, A Node-RED Guide (2026)","2025-01-17",[3631,2611,3653,3570],{"path":4364,"title":4365,"date":4366,"tags":4367},"\u002Fblog\u002F2025\u002F01\u002Fflowfuse-release-2-13","FlowFuse 2.13: Remote Instances, UNS Schemas & Improved Management at Scale","2025-01-16",[2611,3582,3583],{"path":4369,"title":4370,"date":4371,"tags":4372},"\u002Fblog\u002F2025\u002F01\u002Fmqtt-frontrunner-for-uns-part-2","MQTT: The Frontrunner for Your UNS Broker - Part 2","2025-01-13",[3664,4373,4346],"uns",{"path":4375,"title":4376,"date":4377,"tags":4378},"\u002Fblog\u002F2025\u002F01\u002Fmqtt-frontrunner-for-uns","MQTT: The Frontrunner for Your UNS Broker - Part 1","2025-01-07",[3664,4373,4346],{"path":4380,"title":4381,"date":4382,"tags":4383},"\u002Fblog\u002F2024\u002F12\u002Fflowfuse-release-2-12","FlowFuse Cloud now available for free!","2024-12-19",[2611,3582,3583],{"path":4385,"title":4386,"date":4387,"tags":4388},"\u002Fblog\u002F2024\u002F12\u002Fwhy-uns-need-data-modeling","Data Modeling: The Key to a Successful Unified Namespace","2024-12-16",[2611,4346,4389],"data modeling",{"path":4391,"title":4392,"date":4393,"tags":4394},"\u002Fblog\u002F2024\u002F12\u002Fflowfuse-team-collaboration","Streamlining Node-RED Collaboration with FlowFuse","2024-12-09",[2611,4357],{"path":4396,"title":4397,"date":4398,"tags":4399},"\u002Fblog\u002F2024\u002F12\u002Fpublishing-modbus-data-to-uns","How to Bridge Modbus to MQTT: Step-by-Step Guide","2024-12-04",[2611,4373,3731],{"path":4401,"title":4402,"date":4403,"tags":4404},"\u002Fblog\u002F2024\u002F11\u002Fbuilding-uns-with-flowfuse","Building a Unified Namespace (UNS) with FlowFuse","2024-11-28",[2611,4346,3664],{"path":4406,"title":4407,"date":4408,"tags":4409},"\u002Fblog\u002F2024\u002F11\u002Fintroducing-industrial-visionaries-podcast","Introducing the Industrial Visionaries Podcast!","2024-11-26",[3548,2611,4410],"Podcast",{"path":4412,"title":4413,"date":4408,"tags":4414},"\u002Fblog\u002F2024\u002F11\u002Fwhy-point-to-point-connection-is-dead","The Death of Point-to-Point: Why You Need a Unified Namespace",[2611,3664,4346],{"path":4416,"title":4417,"date":4418,"tags":4419},"\u002Fblog\u002F2024\u002F11\u002Fgetting-the-most-out-of-mqtt-for-industrial-iot","Getting the Most Out of MQTT for Industrial IoT","2024-11-25",[3575,2611,3664],{"path":4421,"title":4422,"date":4423,"tags":4424},"\u002Fblog\u002F2024\u002F11\u002Fflowfuse-release-2-11","FlowFuse 2.11: MQTT Topic Hierarchy, UI Revamp & Improved Logging","2024-11-21",[3548,2611,3583],{"path":4426,"title":4427,"date":4428,"tags":4429},"\u002Fblog\u002F2024\u002F11\u002Fwhy-pub-sub-in-uns","Why UNS needs Pub\u002FSub","2024-11-19",[2611,3664,4346],{"path":4431,"title":4432,"date":4433,"tags":4434},"\u002Fblog\u002F2024\u002F11\u002Fesp32-with-node-red","Interacting with ESP32 Using Node-RED and MQTT (2026)","2024-11-14",[3631,3570,3664],{"path":4436,"title":4437,"date":4438,"tags":4439},"\u002Fblog\u002F2024\u002F11\u002Fmigrating-from-node-red-to-flowfuse","Migrating from Self-Managed Node-RED to FlowFuse-Managed Node-RED","2024-11-13",[2611,4357],{"path":4441,"title":4442,"date":4443,"tags":4444},"\u002Fblog\u002F2024\u002F11\u002Fdevice-agent-as-service-on-mac","Run FlowFuse Device Agent as a service on MacOS using Docker","2024-11-12",[2611,3570],{"path":4446,"title":4447,"date":4448,"tags":4449},"\u002Fblog\u002F2024\u002F11\u002Fdashboard-new-group-type-app-icon-and-charts","Visual Layout Editor - Now Available in Dashboard","2024-11-08",[3548,3582,2611,3559],{"path":4451,"title":4452,"date":4453,"tags":4454},"\u002Fblog\u002F2024\u002F10\u002Fannouncement-mqtt-broker","MQTT Service Now Available on FlowFuse","2024-10-31",[3548,3582,2611,3631,3664],{"path":4456,"title":4457,"date":4458,"tags":4459},"\u002Fblog\u002F2024\u002F10\u002Fexploring-flowfuse-security-features","FlowFuse Security Features You Didn’t Know You Needed","2024-10-24",[3575,2611,4357,4460],"node-red security",{"path":4462,"title":4463,"date":4458,"tags":4464},"\u002Fblog\u002F2024\u002F10\u002Fflowfuse-release-2-10","FlowFuse 2.10: MQTT Broker, Improved Version Control & More!",[3548,2611,3583],{"path":4466,"title":4467,"date":4468,"tags":4469},"\u002Fblog\u002F2024\u002F10\u002Fmanaging-node-red-instances-in-centralize-platfrom","Transform Chaos into Control: Centralize Node-RED Management with FlowFuse","2024-10-18",[3575,2611],{"path":4471,"title":4472,"date":4473,"tags":4474},"\u002Fblog\u002F2024\u002F10\u002Fexploring-flowfuse-sbom-feature","FlowFuse's Software bills of material helps enhance Application Security and Management","2024-10-14",[3575,2611,4475,4476,4477,4478],"enhancing node-red security","flowfuse software bills of material","Sbom in the industrial applications","sbom open source",{"path":4480,"title":4481,"date":4482,"tags":4483},"\u002Fblog\u002F2024\u002F10\u002Fdashboard-new-group-type-app-icon-and-charts","Dialogs, Customizable Icons and Histograms Now Available in FlowFuse Dashboard","2024-10-11",[3548,3582,2611,3559],{"path":4485,"title":4486,"date":4487,"tags":4488},"\u002Fblog\u002F2024\u002F10\u002Fquick-ways-to-write-functions-in-node-red","Exploring Quick Ways to Write Complex Logic in Function Nodes in Node-RED","2024-10-09",[3548,4489,4490],"node-red function node","node red function node",{"path":4492,"title":4493,"date":4494,"tags":4495},"\u002Fblog\u002F2024\u002F10\u002Fexploring-flowfuse-project-nodes","Using FlowFuse Project Nodes for Faster and More Efficient Communication","2024-10-07",[3575,4496,4497,4498,4499],"flowfuse project nodes","node-red mqtt","node red mqtt","node red communication protocols",{"path":4501,"title":4502,"date":4503,"tags":4504},"\u002Fblog\u002F2024\u002F10\u002Fhow-to-build-automate-devops-pipelines-node-red-deployments","Creating and Automating DevOps Pipelines for Node-RED in Industrial Environments","2024-10-03",[4505,4506,4507],"node-red devops","node red devops","node red devops pipeline",{"path":4509,"title":4510,"date":4511,"tags":4512},"\u002Fblog\u002F2024\u002F09\u002Fflowfuse-release-2-9","FlowFuse 2.9: Software Bill of Materials & Public Static Assets","2024-09-26",[3548,2611,3583],{"path":4514,"title":4515,"date":4511,"tags":4516},"\u002Fblog\u002F2024\u002F09\u002Fnode-red-version-control-with-snapshots","Using Snapshots for Version Control in Node-RED with FlowFuse",[2611],{"path":4518,"title":4519,"date":4520,"tags":4521},"\u002Fblog\u002F2024\u002F09\u002Fhow-to-scrape-web-data-with-node-red","How to Scrape Data from Websites Using Node-RED","2024-09-16",[3631,3570],{"path":4523,"title":4524,"date":4525,"tags":4526},"\u002Fblog\u002F2024\u002F09\u002Fhow-to-use-subflow-in-node-red","How to create and use Subflow in Node-RED (2026)","2024-09-13",[3631,3570],{"path":4528,"title":4529,"date":4530,"tags":4531},"\u002Fblog\u002F2024\u002F08\u002Fflowfuse-2-8-release","FlowFuse 2.8: Static File Service, LDAP Updates & More","2024-08-29",[3548,2611,3583],{"path":4533,"title":4534,"date":4535,"tags":4536},"\u002Fblog\u002F2024\u002F08\u002Fdashboard-new-layout-widgets-and-gauges","New Layout, Widget and Gauges Now Available in FlowFuse Dashboard","2024-08-28",[3548,3582,2611,3559],{"path":4538,"title":4539,"date":4540,"tags":4541},"\u002Fblog\u002F2024\u002F08\u002Fusing-mqtt-sparkplugb-with-node-red","MQTT Sparkplug B Implementation: Protocol, Architecture & Best Practices","2024-08-22",[3548,3631,3664],{"path":4543,"title":4544,"date":4545,"tags":4546},"\u002Fblog\u002F2024\u002F08\u002Fopentelemetry-with-node-red","Monitoring and Optimizing Node-RED Flows with Open Telemetry (2026)","2024-08-15",[3575,3631,4547,3570],"node-red tips",{"path":4549,"title":4550,"date":4551,"tags":4552},"\u002Fblog\u002F2024\u002F08\u002Fopc-ua-to-mqtt-with-node-red","Bridging OPC UA Data to MQTT with Node-RED (2026)","2024-08-13",[3548,3631,3664,3642,3570],{"path":4554,"title":4555,"date":4556,"tags":4557},"\u002Fblog\u002F2024\u002F08\u002Fcustomise-theming-in-your-dashboards","Customise theming in your FlowFuse Dashboard (2026)","2024-08-07",[3548,3559,4558,3570],"dashboard theming",{"path":4560,"title":4561,"date":4562,"tags":4563},"\u002Fblog\u002F2024\u002F08\u002Fcomparing-dashboard-2-with-uibuilder","FlowFuse Dashboard vs UI-Builder: A Comprehensive Comparison","2024-08-06",[3575,3631,3559,4564],"comparing node-red dashboards",{"path":4566,"title":4567,"date":4568,"tags":4569},"\u002Fblog\u002F2024\u002F08\u002Fflowfuse-2-7-release","FlowFuse 2.7: Improved management at scale & AI JSON Editor","2024-08-01",[3548,2611,3583],{"path":4571,"title":4572,"date":4573,"tags":4574},"\u002Fblog\u002F2024\u002F07\u002Fhow-to-setup-sso-ldap-for-the-node-red","How to Set Up SSO LDAP for Node-RED","2024-07-29",[3575,2611,4357,4575],"sso",{"path":4577,"title":4578,"date":4579,"tags":4580},"\u002Fblog\u002F2024\u002F07\u002Fdashboard-new-charts","New Charts Available in FlowFuse Dashboard","2024-07-26",[3548,3582,2611,3559],{"path":4582,"title":4583,"date":4584,"tags":4585},"\u002Fblog\u002F2024\u002F07\u002Fevolution-of-technology-impact-on-job-roles-and-companies","Evolution of Technology: Impact on Job Roles and Companies","2024-07-23",[3548,2611,4586,3711],"low-code",{"path":4588,"title":4589,"date":4590,"tags":4591},"\u002Fblog\u002F2024\u002F07\u002Fbuilding-on-flowfuse-devices","Building on FlowFuse: Remote Device Monitoring","2024-07-17",[3548,3582,3631,2611],{"path":4593,"title":4594,"date":4590,"tags":4595},"\u002Fblog\u002F2024\u002F07\u002Fhow-to-setup-sso-saml-for-the-node-red","How to Set Up SSO SAML for Node-RED",[3575,3631,4460,4575],{"path":4597,"title":4598,"date":4599,"tags":4600},"\u002Fblog\u002F2024\u002F07\u002Fdeploying-flowfuse-with-docker","Deploying FlowFuse with Docker on an Ubuntu server","2024-07-15",[3575,2611,4601],"self hosted",{"path":4603,"title":4604,"date":4605,"tags":4606},"\u002Fblog\u002F2024\u002F07\u002Fcalling-python-script-from-node-red","Calling a Python script from Node-RED (2026)","2024-07-10",[3575,3631,4607,3570],"node red python",{"path":4609,"title":4610,"date":4611,"tags":4612},"\u002Fblog\u002F2024\u002F07\u002Fflowfuse-2-6-release","FlowFuse 2.6: AI Infused Node-RED, Persistent File Storage & Lots More","2024-07-04",[3548,2611,3583,4613,4614,3711,4615,4616,4617],"storage","editor","assistant","blueprint","Node-RED",{"path":4619,"title":4620,"date":4621,"tags":4622},"\u002Fblog\u002F2024\u002F06\u002Fdashboard-1-deprecated","Node-RED Dashboard Formally Deprecated","2024-06-27",[3548,3582,3631,2611,3559,4623],"FlowFuse Dashboard",{"path":4625,"title":4626,"date":4627,"tags":4628},"\u002Fblog\u002F2024\u002F06\u002Fdashboard-multi-tenancy","Multi-Tenancy available for everyone with FlowFuse's Dashboard 2.0","2024-06-21",[3548,3582,2611,3559],{"path":4630,"title":4631,"date":4627,"tags":4632},"\u002Fblog\u002F2024\u002F06\u002Finteracting-with-google-sheet-from-node-red","Interacting with Google Sheets from Node-RED (2026)",[3548,3631,4633,4634,3570],"node red","google sheet",{"path":4636,"title":4637,"date":4638,"tags":4639},"\u002Fblog\u002F2024\u002F06\u002Fnode-red-4-on-flowfuse-cloud","Node-RED 4: Bringing better collaboration to FlowFuse Cloud","2024-06-20",[3548,2611,4617,4640],"FlowFuse Cloud",{"path":4642,"title":4643,"date":4644,"tags":4645},"\u002Fblog\u002F2024\u002F06\u002Fflowfuse-2-5-release","FlowFuse 2.5: New features to visualize snapshots, LDAP integration, and more","2024-06-06",[3548,2611,3583,4646,4647,4616,4617],"LDAP","snapshot",{"path":4649,"title":4650,"date":4651,"tags":4652},"\u002Fblog\u002F2024\u002F06\u002Fhow-to-use-mqtt-in-node-red","Working with MQTT in Node-RED: Complete Guide (2026)","2024-06-05",[3548,3631,3664,3570],{"path":4654,"title":4655,"date":4656,"tags":4657},"\u002Fblog\u002F2024\u002F05\u002Fexploring-node-red-dashboard-2-widgets","Exploring Node-RED Dashboard 2.0 Widgets","2024-05-27",[3548,3559],{"path":4659,"title":4660,"date":4661,"tags":4662},"\u002Fblog\u002F2024\u002F05\u002Fwhy-you-need-a-low-code-platform","Why you need a low-code platform","2024-05-22",[2611,4586],{"path":4664,"title":4665,"date":4666,"tags":4667},"\u002Fblog\u002F2024\u002F05\u002Fnode-red-mind-stack-with-flowfuse","The MIND stack with Node-RED and FlowFuse Dashboard 2.0","2024-05-14",[3548,2611,4668,4669,4670,4671],"mind","ming","influx","dashboards",{"path":4673,"title":4674,"date":4666,"tags":4675},"\u002Fblog\u002F2024\u002F05\u002Fproduct-strategy-updates","Product Mission Statement and Strategy Updates",[3548,2611],{"path":4677,"title":4678,"date":4679,"tags":4680},"\u002Fblog\u002F2024\u002F05\u002Fmapping-location-on-dashboard-2","Mapping location data within Node-RED Dashboard 2.0. (2026)","2024-05-13",[3548,3559,4681,4682,3570],"fleet tracking","location",{"path":4684,"title":4685,"date":4686,"tags":4687},"\u002Fblog\u002F2024\u002F05\u002Fnode-red-dashboard-2-layout-navigation-styling","Comprehensive guide: Node-RED Dashboard 2.0 layout, sidebar, and styling","2024-05-10",[3548,3559,4688,4689,4690,3570],"flowfuse dashboard","customizing dashboard","dashboard 2.0",{"path":4692,"title":4693,"date":4694,"tags":4695},"\u002Fblog\u002F2024\u002F05\u002Fflowfuse-2-4-release","FlowFuse 2.4: making it easier to work with Snapshots, Blueprints & Devices","2024-05-09",[3548,2611,3583],{"path":4697,"title":4698,"date":4699,"tags":4700},"\u002Fblog\u002F2024\u002F05\u002Funderstanding-node-flow-global-environment-variables-in-node-red","How to Use Variables in Node-RED: Flow, Global, Context & Environment (2026)","2024-05-06",[3548,3631,3570],{"path":4702,"title":4703,"date":4704,"tags":4705},"\u002Fblog\u002F2024\u002F04\u002Fdashboard-milestones-pwa-new-components","Dashboard 2.0: Milestones, PWA and New Components","2024-04-26",[3548,3583,3630,4706,3559,4707,4708,4709,4710],"changelog","node-red Dashboard 2.0","node-red visualization","progressive web app","Vuetify",{"path":4712,"title":4713,"date":4714,"tags":4715},"\u002Fblog\u002F2024\u002F04\u002Fhow-to-build-an-application-with-node-red-dashboard-2","How to Build An Application With Node-RED Dashboard 2.0 (2026)","2024-04-25",[3548,3631,3559,3570],{"path":4717,"title":4718,"date":4719,"tags":4720},"\u002Fblog\u002F2024\u002F04\u002Fflowfuse-dedicated","Introducing FlowFuse Dedicated","2024-04-22",[3548,3631,2611,4721],"dedicated",{"path":4723,"title":4724,"date":4725,"tags":4726},"\u002Fblog\u002F2024\u002F04\u002Fflowfuse-at-hannover-messe-node-red","FlowFuse Gears Up for Hannover Messe","2024-04-11",[3548,2611,3631,4727,4728],"hannover messe","conference announcement",{"path":4730,"title":4731,"date":4732,"tags":4733},"\u002Fblog\u002F2024\u002F04\u002Fnode-red-multiplayer","Node-RED Multiplayer mode","2024-04-10",[3548,2611,3631,4734,4735],"collaborative editing","concurrent editing",{"path":4737,"title":4738,"date":4739,"tags":4740},"\u002Fblog\u002F2024\u002F04\u002Fbuilding-an-admin-panel-in-node-red-with-dashboard-2","How to Build an Admin Dashboard with Node-RED Dashboard 2.0 (2026)","2024-04-08",[3548,4690,4741,4742,3570],"admin dashboard","admin-only page",{"path":4744,"title":4745,"date":4746,"tags":4747},"\u002Fblog\u002F2024\u002F04\u002Fdisplaying-logged-in-users-on-dashboard","Displaying logged in user on Node-RED Dashboard 2.0 (2026)","2024-04-03",[3548,4690,3570],{"path":4749,"title":4750,"date":4746,"tags":4751},"\u002Fblog\u002F2024\u002F04\u002Frole-based-access-control-rbac-for-node-red-with-flowfuse","Role-Based Access for your Node-RED applications",[3548,2611,4752,4753],"RBAC","Role Based Access Control",{"path":4755,"title":4756,"date":4757,"tags":4758},"\u002Fblog\u002F2024\u002F04\u002Fnode-red-architecture","Node-RED Manufacturing Architecture","2024-04-02",[3548,3631,2611,3569,4759,4760,4346],"perdue model","ISA 99",{"path":4762,"title":4763,"date":4764,"tags":4765},"\u002Fblog\u002F2024\u002F03\u002Fusing-kafka-with-node-red","Using Kafka with Node-RED","2024-03-29",[3548,3631,3948],{"path":4767,"title":4768,"date":4769,"tags":4770},"\u002Fblog\u002F2024\u002F03\u002Fflowfuse-gallarus-strategic-partnership-to-accelerate-industry-4-adoption","FlowFuse and Gallarus Announce Strategic Partnership to Accelerate Industry 4.0 Adoption","2024-03-28",[4771,2611,4772,4773,4774],"News","strategic Partner","Indusstry 4.0","digital Transformation",{"path":4776,"title":4777,"date":4778,"tags":4779},"\u002Fblog\u002F2024\u002F03\u002Fdashboard-getting-started","Getting Started with Node-RED Dashboard 2.0","2024-03-27",[3548,3583,3630,4706,3559,4780,4781],"nodered dashboard beginners guide","nodered dashboard basics",{"path":4783,"title":4784,"date":4785,"tags":4786},"\u002Fblog\u002F2024\u002F03\u002Fhttp-authentication-node-red-with-flowfuse","Securing HTTP Traffic for Node-RED with FlowFuse","2024-03-26",[3548,2611,4787,4788,4789],"http in","http node","api",{"path":4791,"title":4792,"date":4793,"tags":4794},"\u002Fblog\u002F2024\u002F03\u002Fscaling-node-red-devices-vs-flowfuse-instance","Scaling Node-RED with FlowFuse: Differences between a FlowFuse Instance and a Device Instance","2024-03-25",[3548,2611,4795,4796],"device instance","scaling node-red",{"path":4798,"title":4799,"date":4800,"tags":4801},"\u002Fblog\u002F2024\u002F03\u002Fusing-kafka-in-manufacturing","How Kafka is applied in manufacturing","2024-03-15",[3548,3631,3948,4802,4803],"Manufacturing","Real-time data streaming",{"path":4805,"title":4806,"date":4807,"tags":4808},"\u002Fblog\u002F2024\u002F03\u002Fflowfuse-self-hosted-open-source-resource-limits","FlowFuse Open Source Tier Resource Limits","2024-03-14",[3548,2611],{"path":4810,"title":4811,"date":4812,"tags":4813},"\u002Fblog\u002F2024\u002F03\u002Flow-code-is-better","Why Low-Code is Better","2024-03-13",[3548,2611,4586,4814],"citizen development",{"path":4816,"title":4817,"date":4818,"tags":4819},"\u002Fblog\u002F2024\u002F03\u002Flooking-towards-node-red-4","Looking towards Node-RED 4.0 and beyond","2024-03-07",[3548,2611,3631],{"path":4821,"title":4822,"date":4823,"tags":4824},"\u002Fblog\u002F2024\u002F03\u002Finstalling-operating-node-red-behind-firewall","Installing and operating Node-RED behind a firewall","2024-03-06",[3548,2611,3631,4825],"vpn",{"path":4827,"title":4828,"date":4829,"tags":4830},"\u002Fblog\u002F2024\u002F02\u002Fhistory-of-nodered","History of Node-RED","2024-02-28",[3548,2611,4828,4617,4831],"Node Red",{"path":4833,"title":4834,"date":4835,"tags":4836},"\u002Fblog\u002F2024\u002F02\u002Fwhy-citizen-development-platforms","Citizen Development: Unleashing Domain Experts","2024-02-26",[3548,2611,4837],"citizen-development",{"path":4839,"title":4840,"date":4841,"tags":4842},"\u002Fblog\u002F2024\u002F02\u002Ftaking-it-further-with-node-red","Storing Data: Getting Started with Node-RED","2024-02-19",[3548,3631,3570],{"path":4844,"title":4845,"date":4846,"tags":4847},"\u002Fblog\u002F2024\u002F02\u002Fnode-red-unified-namespace-architecture","Node-RED in a Unified Namespace Architecture","2024-02-14",[3548,2611,4346],{"path":4849,"title":4850,"date":4851,"tags":4852},"\u002Fblog\u002F2024\u002F02\u002Fconnect-node-red-to-kepware-opc","Connect Node-RED to KepserverEX OPC server.","2024-02-12",[3548,2611,3642],{"path":4854,"title":4855,"date":4856,"tags":4857},"\u002Fblog\u002F2024\u002F02\u002Fnode-red-perfect-adapter-middleware-uns","Node-RED: The perfect adapter and middleware for your UNS","2024-02-06",[3548,2611,4346],{"path":4859,"title":4860,"date":4856,"tags":4861},"\u002Fblog\u002F2024\u002F02\u002Fsoftware-development-in-node-red","Bringing Software Development practices to Node-RED",[3548,2611],{"path":4863,"title":4864,"date":4865,"tags":4866},"\u002Fblog\u002F2024\u002F02\u002Fprofessional-services-for-node-red","Should You Invest in Professional Services for Your Node-RED Development?","2024-02-05",[3548,2611],{"path":4868,"title":4869,"date":4870,"tags":4871},"\u002Fblog\u002F2024\u002F01\u002Frevolutionizing-manufacturing-impact-ai-chatgpt-technologies","AI and ChatGPT - Revolutionizing the Manufacturing Industry","2024-01-31",[3548,2611,3711],{"path":4873,"title":4874,"date":4870,"tags":4875},"\u002Fblog\u002F2024\u002F01\u002Funified-namespace-when-not-to-use","Unified Namespace: When to Use It, and When to Choose Something Else",[3548,2611,4346],{"path":4877,"title":4878,"date":4879,"tags":4880},"\u002Fblog\u002F2024\u002F01\u002Fhow-to-deploy-node-red-with-flowfuse-to-balenacloud","Step-by-Step Guide to Deploying Node-RED with FlowFuse in balenaCloud","2024-01-30",[3548,2611,3570],{"path":4882,"title":4883,"date":4884,"tags":4885},"\u002Fblog\u002F2024\u002F01\u002Fspeech-driven-chatbot-with-node-red","Speech-Driven Chatbot System with Node-RED","2024-01-29",[3548,3631,3559,4886,3711],"virtual assistant",{"path":4888,"title":4889,"date":4890,"tags":4891},"\u002Fblog\u002F2024\u002F01\u002Fdashboard-2-ga","Node-RED Dashboard 2.0 is Generally Available!","2024-01-24",[3548,3583,3630,4706,3559],{"path":4893,"title":4894,"date":4890,"tags":4895},"\u002Fblog\u002F2024\u002F01\u002Fdashboard-2-multi-user","Personalised Multi-user Dashboards with Node-RED Dashboard 2.0!",[3548,3583,3630,4706,3559],{"path":4897,"title":4898,"date":4899,"tags":4900},"\u002Fblog\u002F2024\u002F01\u002Fsentiment-analysis-with-node-red","Sentiment Analysis with Node-RED","2024-01-23",[3548,3631,3559,4901,3711],"sentiment analysis",{"path":4903,"title":4904,"date":4905,"tags":4906},"\u002Fblog\u002F2024\u002F01\u002Funified-namespace-what-broker","Selecting a broker for your Unified Namespace","2024-01-19",[3548,2611,4346],{"path":4908,"title":4909,"date":4910,"tags":4911},"\u002Fblog\u002F2024\u002F01\u002Fflowfuse-release-2-0","FlowFuse 2.0 Release","2024-01-18",[3548,2611,3582,3583],{"path":4913,"title":4914,"date":4915,"tags":4916},"\u002Fblog\u002F2024\u002F01\u002Fcapture-data-edge-with-node-red-flowfuse","Capture Data from edge devices with Node-RED","2024-01-17",[3548,2611,3631,3570],{"path":4918,"title":4919,"date":4920,"tags":4921},"\u002Fblog\u002F2024\u002F01\u002Fsoc2","FlowFuse is now SOC 2 Type 1 Compliant","2024-01-15",[3548,2611,3582],{"path":4923,"title":4924,"date":4925,"tags":4926},"\u002Fblog\u002F2024\u002F01\u002Fimport-a-file","Import a File into Node-RED with Dashboard 2.0","2024-01-05",[3548,2611,3570],{"path":4928,"title":4929,"date":4925,"tags":4930},"\u002Fblog\u002F2024\u002F01\u002Fsend-a-file","Send a File to Node-RED",[3548,2611,3570],{"path":4932,"title":4933,"date":4934,"tags":4935},"\u002Fblog\u002F2023\u002F12\u002Funified-namespace-data-modelling","Data Modeling for your Unified Namespace","2023-12-27",[3548,2611,4346],{"path":4937,"title":4938,"date":4939,"tags":4940},"\u002Fblog\u002F2023\u002F12\u002Fflowfuse-year-review-2023","Thank you for an incredible 2023!","2023-12-22",[3548,2611],{"path":4942,"title":4943,"date":4944,"tags":4945},"\u002Fblog\u002F2023\u002F12\u002Fintroduction-to-unified-namespace","Introduction to the Unified Namespace (UNS) – 2026 Updated Guide","2023-12-20",[3548,2611,4346],{"path":4947,"title":4948,"date":4949,"tags":4950},"\u002Fblog\u002F2023\u002F12\u002Fdevice-agent-as-a-windows-service","Run Node-RED as a service on Windows","2023-12-18",[3548,2611,3570],{"path":4952,"title":4953,"date":4954,"tags":4955},"\u002Fblog\u002F2023\u002F12\u002Fdashboard-0-10-0","Building a Custom Video Player in Dashboard 2.0","2023-12-07",[3548,3583,3630,4706,3559],{"path":4957,"title":4958,"date":4959,"tags":4960},"\u002Fblog\u002F2023\u002F12\u002Fai-use-cases","Beyond Automation - AI Use Cases that are shaping the next manufacturing frontier","2023-12-04",[3548,3711],{"path":4962,"title":4963,"date":4964,"tags":4965},"\u002Fblog\u002F2023\u002F11\u002Fdevice-agent-balena","Deploying the FlowFuse Device Agent via Balena","2023-11-24",[3631,4966,4967],"device","balena",{"path":4969,"title":4970,"date":4971,"tags":4972},"\u002Fblog\u002F2023\u002F11\u002Fdashboard-0-8-0","Overhauling the Dashboard 2.0 Build Pipeline","2023-11-23",[3548,3583,3630,4706,3559],{"path":4974,"title":4975,"date":4976,"tags":4977},"\u002Fblog\u002F2023\u002F11\u002Fai-assistant","Integrate with ChatGPT Assistants with Node-RED","2023-11-21",[3548,3631,3630,2611,4978,3711],"openai",{"path":4980,"title":4981,"date":4982,"tags":4983},"\u002Fblog\u002F2023\u002F11\u002Fchatgpt-gpt","Node-RED Builder a GPT (Alpha) by FlowFuse","2023-11-15",[3548,3631,3630,2611,4984,3711],"chatgpt",{"path":4986,"title":4987,"date":4988,"tags":4989},"\u002Fblog\u002F2023\u002F11\u002Fdashboard-2.0-user-tracking","Tracking Who Has Opened a Dashboard","2023-11-13",[3631,3559,2611],{"path":4991,"title":4992,"date":4993,"tags":4994},"\u002Fblog\u002F2023\u002F11\u002Fcommunity-news-11","Community News November 2023","2023-11-09",[3548,4995],"newsletter",{"path":4997,"title":4998,"date":4993,"tags":4999},"\u002Fblog\u002F2023\u002F11\u002Fdashboard-0-7","Chart Improvements & Migrating to Dashboard 2.0",[3548,3583,3630,4706,3559],{"path":5001,"title":5002,"date":5003,"tags":5004},"\u002Fblog\u002F2023\u002F11\u002Fmeet-us-at-sps-nuremberg","Meet FlowFuse at SPS Nuremberg","2023-11-08",[3548,2611],{"path":5006,"title":5007,"date":5008,"tags":5009},"\u002Fblog\u002F2023\u002F10\u002Fcitizen-development","Innovate from within - Why manufacturing must embrace Citizen Developers","2023-10-30",[3548,2611,4837],{"path":5011,"title":5012,"date":5013,"tags":5014},"\u002Fblog\u002F2023\u002F10\u002Fcertified-nodes","What are Certified Nodes?","2023-10-27",[3548,3583,2611],{"path":5016,"title":5017,"date":5018,"tags":5019},"\u002Fblog\u002F2023\u002F10\u002Fmes-build-buy","Embracing Innovation: Build vs Buy in MES","2023-10-20",[3548,3631,3630,2611],{"path":5021,"title":5022,"date":5023,"tags":5024},"\u002Fblog\u002F2023\u002F10\u002Fservice-disruption-report-2023-10-11","Service Disruption Report for October 11th, 2023","2023-10-18",[3548,2611,3582],{"path":5026,"title":5027,"date":5028,"tags":5029},"\u002Fblog\u002F2023\u002F10\u002Fblueprints","What are FlowFuse Blueprints?","2023-10-16",[3548,3583,2611],{"path":5031,"title":5032,"date":5033,"tags":5034},"\u002Fblog\u002F2023\u002F10\u002Fdashboard-integrations","Integrate your own widgets with Dashboard 2.0","2023-10-06",[3548,3583,3630,4706,3559],{"path":5036,"title":5037,"date":5038,"tags":5039},"\u002Fblog\u002F2023\u002F10\u002Fcommunity-news-10","Community News October 2023","2023-10-05",[3548,4995],{"path":5041,"title":5042,"date":5043,"tags":5044},"\u002Fblog\u002F2023\u002F10\u002Fcustom-vuetify-components-dashboard","Custom Vuetify components for Dashboard 2.0","2023-10-02",[3548,3570,3631,3559],{"path":5046,"title":5047,"date":5043,"tags":5048},"\u002Fblog\u002F2023\u002F10\u002Fuse-private-custom-nodes-with-flowfuse","How to Use Private Custom Nodes in FlowFuse?",[3548,2611],{"path":5050,"title":5051,"date":5052,"tags":5053},"\u002Fblog\u002F2023\u002F09\u002Frebranding-our-components","Updating our branding across GitHub, npm and Dockerhub","2023-09-27",[3548,3630,3582],{"path":5055,"title":5056,"date":5057,"tags":5058},"\u002Fblog\u002F2023\u002F09\u002Fchatgpt-for-node-red-developers","How ChatGPT improves Node-RED Developer Experience","2023-09-23",[3548,3631,4984,3711],{"path":5060,"title":5061,"date":5062,"tags":5063},"\u002Fblog\u002F2023\u002F09\u002Fflow-viewer","Share & Preview Flows on flows.nodered.org","2023-09-20",[3548,3582,3630,2611,3631],{"path":5065,"title":5066,"date":5067,"tags":5068},"\u002Fblog\u002F2023\u002F09\u002Fmodernize-your-legacy-industrial-data-part2","Modernize your legacy industrial data. Part 2.","2023-09-17",[3548,3631,3630],{"path":5070,"title":5071,"date":5072,"tags":5073},"\u002Fblog\u002F2023\u002F09\u002Fmodernize-your-legacy-industrial-data","Modernize your legacy industrial data","2023-09-14",[3548,3631,3630],{"path":5075,"title":5076,"date":5072,"tags":5077},"\u002Fblog\u002F2023\u002F09\u002Ftulip-event-report","Tulip Operation Calling Event Report",[3548,2611],{"path":5079,"title":5080,"date":5081,"tags":5082},"\u002Fblog\u002F2023\u002F09\u002Fcommunity-news-09","Community News September 2023","2023-09-09",[3548,4995],{"path":5084,"title":5085,"date":5086,"tags":5087},"\u002Fblog\u002F2023\u002F09\u002Fbosch-rexroth-announce","FlowFuse announces a Node-RED stack for Industry 4.0 applications on ctrlX AUTOMATION","2023-09-07",[3548,3582,2611],{"path":5089,"title":5090,"date":5091,"tags":5092},"\u002Fblog\u002F2023\u002F09\u002Fdashboard-notebook-layout","Dynamic Markdown, Tables & Notebooks with Dashboard 2.0","2023-09-06",[3548,3583,3630,4706,3559],{"path":5094,"title":5095,"date":5096,"tags":5097},"\u002Fblog\u002F2023\u002F08\u002Fflowfuse-1-11-release","FlowFuse 1.11 makes it easier to get started with FlowFuse and Node-RED","2023-08-31",[3548,2611,3583],{"path":5099,"title":5100,"date":5101,"tags":5102},"\u002Fblog\u002F2023\u002F08\u002Faws-marketplace-announce","FlowFuse is now available on AWS Marketplace","2023-08-21",[3548,3582,2611],{"path":5104,"title":5105,"date":5106,"tags":5107},"\u002Fblog\u002F2023\u002F08\u002Fopen-source-is-a-tier-not-competition","Our Open Source offering is a tier, not our competition","2023-08-18",[3548,2611],{"path":5109,"title":5110,"date":5111,"tags":5112},"\u002Fblog\u002F2023\u002F08\u002Fflowforge-is-now-flowfuse","FlowForge is now FlowFuse","2023-08-17",[3548,3630,3582],{"path":5114,"title":5115,"date":5116,"tags":5117},"\u002Fblog\u002F2023\u002F08\u002Fdashboard-community-update","Dashboard 2.0 - Community Update","2023-08-10",[3548,3583,3630,3559],{"path":5119,"title":5120,"date":5121,"tags":5122},"\u002Fblog\u002F2023\u002F08\u002Fisa-95-automation-pyramid-to-unified-namespace","Why the Automation Pyramid blocks digital transformation - The Role of Unified Namespace","2023-08-09",[3548,2611,4346],{"path":5124,"title":5125,"date":5126,"tags":5127},"\u002Fblog\u002F2023\u002F08\u002Fcommunity-news-08","Community News August 2023","2023-08-08",[3548,4995],{"path":5129,"title":5130,"date":5131,"tags":5132},"\u002Fblog\u002F2023\u002F08\u002Fflowforge-1-10-release","FlowFuse 1.10 Release Now Available","2023-08-03",[3548,2611,3583],{"path":5134,"title":5135,"date":5136,"tags":5137},"\u002Fblog\u002F2023\u002F07\u002Fdashboard-0-1-release","First Pre-Alpha Release of the new Node-RED Dashboard","2023-07-27",[3548,3583,3559],{"path":5139,"title":5140,"date":5136,"tags":5141},"\u002Fblog\u002F2023\u002F07\u002Fhow-to-build-a-opc-client-dashboard-in-node-red","How to Build an OPC UA Client Dashboard in Node-RED - Part 3 (2026)",[3548,2611,3631,3642,3570],{"path":5143,"title":5144,"date":5145,"tags":5146},"\u002Fblog\u002F2023\u002F07\u002Fflowforge-1-9-3-release","FlowFuse 1.9.3 and Device Agent 1.9.5 released","2023-07-21",[3548,2611,3583],{"path":5148,"title":5149,"date":5145,"tags":5150},"\u002Fblog\u002F2023\u002F07\u002Fimages-in-node-red-dashboards","How to add images to Node-RED dashboards when using FlowFuse (2026)",[3548,2611,3631,3559,3570],{"path":5152,"title":5153,"date":5154,"tags":5155},"\u002Fblog\u002F2023\u002F07\u002Finfluxdb-historical-data","Creating a Historical Data Dashboard with InfluxDB and Node-RED","2023-07-18",[3548,3631],{"path":5157,"title":5158,"date":5159,"tags":5160},"\u002Fblog\u002F2023\u002F07\u002Fhow-to-deploy-a-basic-opc-ua-server-in-node-red","How to Deploy a Basic OPC-UA Server in Node-RED - Part 1 (2026)","2023-07-13",[3548,3631,3642,3570],{"path":5162,"title":5163,"date":5164,"tags":5165},"\u002Fblog\u002F2023\u002F07\u002Fcommunity-news-07","Community News July 2023","2023-07-12",[3548,4995],{"path":5167,"title":5168,"date":5169,"tags":5170},"\u002Fblog\u002F2023\u002F07\u002Fflowforge-1-9-release","FlowFuse now offers API Documentation with Swagger UI","2023-07-06",[3548,2611,3583],{"path":5172,"title":5173,"date":5174,"tags":5175},"\u002Fblog\u002F2023\u002F06\u002Fdashboard-announcement","The Next Step in Data Visualization - Announcing the Successor to the Node-RED Dashboard","2023-06-21",[3548,3559,5176,5177],"nodered dashboard announcement","nodered dashboard depreciated",{"path":5179,"title":5180,"date":5181,"tags":5182},"\u002Fblog\u002F2023\u002F06\u002Fnode-red-as-a-no-code-ethernet_ip-to-s7-protocol-converter","Node-RED as a No-Code EtherNet\u002FIP to S7 Protocol Converter","2023-06-20",[3548,3570,5183,5184,5185,5186,5187,5188,5189,5190],"Industrial protocol converter","EtherNet\u002FIP","S7 Protocol","node red siemens s7","node red s7 communication","node red s7comm","nodered s7","node red s7",{"path":5192,"title":5193,"date":5194,"tags":5195},"\u002Fblog\u002F2023\u002F06\u002Fintroducing-the-flowforge-community-forum","Introducing the FlowFuse Community Forum","2023-06-12",[3582,2611],{"path":5197,"title":5198,"date":5199,"tags":5200},"\u002Fblog\u002F2023\u002F06\u002Fcommunity-news-06","Community News June 2023","2023-06-09",[3548,4995],{"path":5202,"title":5203,"date":5204,"tags":5205},"\u002Fblog\u002F2023\u002F06\u002Fflowforge-1-8-released","FlowFuse now offers High Availability Node-RED","2023-06-08",[3548,2611,3583],{"path":5207,"title":5208,"date":5209,"tags":5210},"\u002Fblog\u002F2023\u002F06\u002Fimport-modules","Use any npm module in Node-RED (2026)","2023-06-05",[3548,3570],{"path":5212,"title":5213,"date":5214,"tags":5215},"\u002Fblog\u002F2023\u002F05\u002Fbringing-high-availability-to-node-red","Bringing High Availability to Node-RED","2023-06-02",[3548,3631,5216],"high availablity",{"path":5218,"title":5219,"date":5220,"tags":5221},"\u002Fblog\u002F2023\u002F06\u002F3-quick-node-red-tips-7","Node-RED Tips - Dashboard Edition","2023-06-01",[3548,3570,3631,3559,4547],{"path":5223,"title":5224,"date":5225,"tags":5226},"\u002Fblog\u002F2023\u002F05\u002Fnode-red-community-survey-results","Node-RED Community Survey Results","2023-05-31",[3548,3631,3630],{"path":5228,"title":5229,"date":5230,"tags":5231},"\u002Fblog\u002F2023\u002F05\u002Fpersisting-chart-data-in-node-red","Persisting chart data in Node-RED Dashboard 1","2023-05-25",[3548,3631,3570,3559],{"path":5233,"title":5234,"date":5235,"tags":5236},"\u002Fblog\u002F2023\u002F05\u002Fintegrating-modbus-with-node-red","Best Practices Integrating a Modbus Device With Node-RED (2026)","2023-05-16",[3548,3631,3570,3731],{"path":5238,"title":5239,"date":5240,"tags":5241},"\u002Fblog\u002F2023\u002F05\u002Fflowforge-1-7-released","FlowFuse 1.7 Now Available with Remote Node-RED Editor Access","2023-05-11",[3548,2611,3583],{"path":5243,"title":5244,"date":5245,"tags":5246},"\u002Fblog\u002F2023\u002F05\u002Fcommunity-news-05","Community News May 2023","2023-05-04",[3548,4995,3630],{"path":5248,"title":5249,"date":5250,"tags":5251},"\u002Fblog\u002F2023\u002F05\u002Fchatgpt-nodered-fcn-node","Chat GPT in Node-RED Function Nodes","2023-05-02",[3548,3631,3630,3570,4984,3711],{"path":5253,"title":5254,"date":5250,"tags":5255},"\u002Fblog\u002F2023\u002F05\u002Fdevice-agent-as-a-service","Running the FlowFuse Device Agent as a service on a Raspberry Pi",[3548,2611,3570,5256],"raspberry pi",{"path":5258,"title":5259,"date":5260,"tags":5261},"\u002Fblog\u002F2023\u002F04\u002F3-quick-node-red-tips-6","Node-RED Tips - Subflows, Link Nodes, and the Range Node","2023-04-20",[3631,5262,3570],"node-red subflow",{"path":5264,"title":5265,"date":5260,"tags":5266},"\u002Fblog\u002F2023\u002F04\u002Fhannover-messe","FlowFuse's visit to Hannover Messe 2023",[3548,2611,3631,3630],{"path":5268,"title":5269,"date":5270,"tags":5271},"\u002Fblog\u002F2023\u002F04\u002Fflowforge-1-6-released","FlowFuse v1.6 Now Available","2023-04-13",[3548,2611,3583],{"path":5273,"title":5274,"date":5270,"tags":5275},"\u002Fblog\u002F2023\u002F04\u002Fnodered-community-health","Node-RED Community Health",[3548,3631,3630,3582],{"path":5277,"title":5278,"date":5279,"tags":5280},"\u002Fblog\u002F2023\u002F04\u002Fcommunity-news-04","Community News April 2023","2023-04-05",[3548,4995,3630],{"path":5282,"title":5283,"date":5279,"tags":5284},"\u002Fblog\u002F2023\u002F04\u002Fsecuring-node-red-in-production","Securing Node-RED (2026)",[3548,3631,3570,5285],"securing node-red",{"path":5287,"title":5288,"date":5289,"tags":5290},"\u002Fblog\u002F2023\u002F03\u002Fibmcloud-starter-removed","IBM Cloud removes Node-RED starter application","2023-03-29",[3548,3631,3582],{"path":5292,"title":5293,"date":5294,"tags":5295},"\u002Fblog\u002F2023\u002F03\u002F3-quick-node-red-tips-5","Node-RED Tips - Importing, Exporting, and Grouping Flows","2023-03-27",[3548,3631,3570,4547],{"path":5297,"title":5298,"date":5299,"tags":5300},"\u002Fblog\u002F2023\u002F03\u002Fwhy-should-you-use-node-red-function-nodes","The benefits and drawbacks of using Node-RED function nodes","2023-03-20",[3548,3631,3570],{"path":5302,"title":5303,"date":5304,"tags":5305},"\u002Fblog\u002F2023\u002F03\u002Fflowforge-1-5-0-released","FlowFuse v1.5 Now Available","2023-03-16",[3548,2611,3583],{"path":5307,"title":5308,"date":5304,"tags":5309},"\u002Fblog\u002F2023\u002F03\u002Fterminology-changes","Terminology Changes",[3548,2611,3582],{"path":5311,"title":5312,"date":5313,"tags":5314},"\u002Fblog\u002F2023\u002F03\u002F3-quick-node-red-tips-4","Node-RED Tips - Smooth, Catch, and Math","2023-03-13",[3548,3631,5315],"tips",{"path":5317,"title":5318,"date":5313,"tags":5319},"\u002Fblog\u002F2023\u002F03\u002Fcomparing-node-red-dashboards","Comparing Node-RED Dashboards Solutions",[3575,3631,3559,4564],{"path":5321,"title":5322,"date":5323,"tags":5324},"\u002Fblog\u002F2023\u002F03\u002F3-quick-node-red-tips-3","Node-RED Tips - Exec, Filter, and Debug","2023-03-07",[3548,3631,3570],{"path":5326,"title":5327,"date":5328,"tags":5329},"\u002Fblog\u002F2023\u002F03\u002Fintegration-platform-for-edge-computing","Node-RED: The Integration Platform for IIoT Edge Computing & PLCs","2023-03-06",[3548,3631,3630],{"path":5331,"title":5332,"date":5333,"tags":5334},"\u002Fblog\u002F2023\u002F03\u002Fcommunity-news-03","Community News March 2023","2023-03-02",[3548,4995,3630],{"path":5336,"title":5337,"date":5338,"tags":5339},"\u002Fblog\u002F2023\u002F02\u002Fwebinar-1-missed-questions","Some questions we didn't get to in our first webinar","2023-02-27",[3631,3630],{"path":5341,"title":5342,"date":5343,"tags":5344},"\u002Fblog\u002F2023\u002F02\u002F3-quick-node-red-tips-2","Node-RED Tips - Deploying, Debugging, and Delaying","2023-02-23",[3548,3631,5315],{"path":5346,"title":5347,"date":5343,"tags":5348},"\u002Fblog\u002F2023\u002F02\u002Fming-blog","MING Stack for IoT",[3548,3631,3630],{"path":5350,"title":5351,"date":5352,"tags":5353},"\u002Fblog\u002F2023\u002F02\u002Fflowforge-1-4-0-released","FlowFuse v1.4 with device provisioning in bulk and staged development process","2023-02-16",[3548,2611,3583],{"path":5355,"title":5356,"date":5357,"tags":5358},"\u002Fblog\u002F2023\u002F02\u002Fhighly-available-node-red","Toward Highly Available Node-RED","2023-02-15",[3548,3631,2611],{"path":5360,"title":5361,"date":5362,"tags":5363},"\u002Fblog\u002F2023\u002F02\u002Fservice-disruption-report-2023-01-27","Service Disruption Report for January 27th, 2023","2023-02-10",[3548,2611,3582],{"path":5365,"title":5366,"date":5367,"tags":5368},"\u002Fblog\u002F2023\u002F02\u002F3-quick-node-red-tips-1","Node-RED Tips - Wiring Shortcuts","2023-02-07",[3548,3631,3570,4547],{"path":5370,"title":5371,"date":5372,"tags":5373},"\u002Fblog\u002F2023\u002F01\u002Fflowforge-story","Telling the FlowFuse Story","2023-02-02",[3548,2611],{"path":5375,"title":5376,"date":5372,"tags":5377},"\u002Fblog\u002F2023\u002F02\u002Fcommunity-news-02","Community News February 2023",[3548,3630,4995],{"path":5379,"title":5380,"date":5381,"tags":5382},"\u002Fblog\u002F2023\u002F01\u002Fenvironment-variables-in-node-red","Using Environment Variables in Node-RED (2026)","2023-01-27",[3548,3631,3570],{"path":5384,"title":5385,"date":5386,"tags":5387},"\u002Fblog\u002F2023\u002F01\u002Fgetting-started-with-node-red","Getting Started with Node-RED","2023-01-23",[3548,3631,3570],{"path":5389,"title":5390,"date":5391,"tags":5392},"\u002Fblog\u002F2023\u002F01\u002Fflowforge-1-3-0-released","FlowFuse 1.3 is now available, share your flows through our new team libraries and much more","2023-01-19",[3548,2611,3583],{"path":5394,"title":5395,"date":5396,"tags":5397},"\u002Fblog\u002F2023\u002F01\u002Fcommunity-news-12","Community News December 2022","2023-01-12",[3548,3630,4995],{"path":5399,"title":5400,"date":5396,"tags":5401},"\u002Fblog\u002F2023\u002F01\u002Fflowforge-1.2.1-released","FlowFuse 1.2.1 released",[3548,2611,3583],{"path":5403,"title":5404,"date":5405,"tags":5406},"\u002Fblog\u002F2022\u002F12\u002Fflowforge-1-2-0-released","FlowFuse 1.2 is now available with single sign on and persistent context storage","2022-12-22",[3548,5407,3583],"flowforge",{"path":5409,"title":5410,"date":5411,"tags":5412},"\u002Fblog\u002F2022\u002F12\u002Fwhat-flowforge-adds-to-node-red","Why you need FlowFuse when you already have Node-RED?","2022-12-15",[3548,2611,3631],{"path":5414,"title":5415,"date":5416,"tags":5417},"\u002Fblog\u002F2022\u002F12\u002Fflowforge-joins-openjs-foundation","FlowFuse Inc. becomes a member of the OpenJS Foundation","2022-12-13",[3548,2611,3582],{"path":5419,"title":5420,"date":5421,"tags":5422},"\u002Fblog\u002F2022\u002F12\u002Fflowforge-1-1-2-released","FlowFuse 1.1.2 released","2022-12-09",[3548,2611,3583],{"path":5424,"title":5425,"date":5421,"tags":5426},"\u002Fblog\u002F2022\u002F12\u002Fflowforge-gcp-https-set-up","Configure FlowFuse in Docker to secure all traffic",[3548,2611,3570,5427,5428],"Acme Companion","Let's Encrypt",{"path":5430,"title":5431,"date":5432,"tags":5433},"\u002Fblog\u002F2022\u002F12\u002Fcreate-http-trigger-with-authentication","Create HTTP triggers with authentication","2022-12-07",[3548,3631,3570],{"path":5435,"title":5436,"date":5437,"tags":5438},"\u002Fblog\u002F2022\u002F12\u002Fnode-red-flow-best-practice","Format your Node-RED flows for better team collaboration","2022-12-05",[3548,3631,3570],{"path":5440,"title":5441,"date":5442,"tags":5443},"\u002Fblog\u002F2022\u002F12\u002Fcommunity-news-11","Community News November 2022","2022-12-02",[3548,4995,3630],{"path":5445,"title":5446,"date":5447,"tags":5448},"\u002Fblog\u002F2022\u002F11\u002Fscaling-node-red-with-diy-tooling","Challenges scaling Node-RED with DIY tooling","2022-11-30",[3548,3631,3570],{"path":5450,"title":5451,"date":5452,"tags":5453},"\u002Fblog\u002F2022\u002F11\u002Frespin-docker-compose-01","Re-spin of Docker-Compose install package","2022-11-25",[3548,2611,3582],{"path":5455,"title":5456,"date":5457,"tags":5458},"\u002Fblog\u002F2022\u002F11\u002Fflowforge-1-1-released","FlowFuse 1.1 released with persistent file storage","2022-11-24",[3548,2611,3583],{"path":5460,"title":5461,"date":5462,"tags":5463},"\u002Fblog\u002F2022\u002F11\u002Fcommunity-news-10","Community News October 2022","2022-11-04",[3548,4995,3630],{"path":5465,"title":5466,"date":5467,"tags":5468},"\u002Fblog\u002F2022\u002F10\u002Fseed-round-bring-node-red-to-enterprise","FlowFuse raises $7.25M Seed Round to bring Node-RED to the Enterprise","2022-11-03",[3548,2611,3582],{"path":5470,"title":5471,"date":5472,"tags":5473},"\u002Fblog\u002F2022\u002F10\u002Fflowforge-1-released","FlowFuse 1.0 released","2022-10-27",[3548,2611,3583],{"path":5475,"title":5476,"date":5477,"tags":5478},"\u002Fblog\u002F2022\u002F10\u002Fdb-migration-01","Scheduled maintenance: Database encryption October 2022","2022-10-18",[3548,2611,3582],{"path":5480,"title":5481,"date":5482,"tags":5483},"\u002Fblog\u002F2022\u002F10\u002Fff-docker-gcp","Install FlowFuse Docker on Google Cloud","2022-10-14",[3548,2611,3570],{"path":5485,"title":5486,"date":5487,"tags":5488},"\u002Fblog\u002F2022\u002F10\u002Fcommunity-news-09","Community News September 2022","2022-10-07",[3548,4995,3630],{"path":5490,"title":5491,"date":5492,"tags":5493},"\u002Fblog\u002F2022\u002F09\u002Fflowforge-010-released","FlowFuse 0.10 released","2022-09-30",[3548,2611,3583],{"path":5495,"title":5496,"date":5497,"tags":5498},"\u002Fblog\u002F2022\u002F09\u002Fstatic-ips","Static Outbound IP Addresses","2022-09-27",[3548,2611,3582],{"path":5500,"title":5501,"date":5502,"tags":5503},"\u002Fblog\u002F2022\u002F09\u002Fcommunity-news-08","Community News August 2022","2022-09-16",[3548,4995,3630],{"path":5505,"title":5506,"date":5507,"tags":5508},"\u002Fblog\u002F2022\u002F09\u002Fflowforge-09-released","FlowFuse 0.9 released","2022-09-01",[3548,2611,3583],{"path":5510,"title":5511,"date":5512,"tags":5513},"\u002Fblog\u002F2022\u002F08\u002Fcommunity-news-06","Community News July 2022","2022-08-11",[3548,4995,3630],{"path":5515,"title":5516,"date":5517,"tags":5518},"\u002Fblog\u002F2022\u002F08\u002Fflowforge-08-released","FlowFuse 0.8 released","2022-08-04",[3548,2611,3583],{"path":5520,"title":5521,"date":5522,"tags":5523},"\u002Fblog\u002F2022\u002F07\u002Fnew-projecttype","Introducing Medium Projects on FlowFuse Cloud","2022-07-22",[3548,2611,3582],{"path":5525,"title":5526,"date":5527,"tags":5528},"\u002Fblog\u002F2022\u002F07\u002Fcommunity-news-06","Community News June 2022","2022-07-19",[3548,4995,3630],{"path":5530,"title":5531,"date":5532,"tags":5533},"\u002Fblog\u002F2022\u002F07\u002Fflowforge-07-released","FlowFuse 0.7 released","2022-07-07",[3548,2611,3583],{"path":5535,"title":5536,"date":5537,"tags":5538},"\u002Fblog\u002F2022\u002F06\u002Fflowforge-06-released","FlowFuse 0.6 released","2022-06-19",[3548,2611,3583],{"path":5540,"title":5541,"date":5542,"tags":5543},"\u002Fblog\u002F2022\u002F06\u002Fcommunity-news-05","Community News May 2022","2022-06-17",[3548,4995,3630],{"path":5545,"title":5546,"date":5547,"tags":5548},"\u002Fblog\u002F2022\u002F05\u002Fsign-up-for-flowforge-cloud","FlowFuse open for everybody","2022-05-25",[3548,2611,3582],{"path":5550,"title":5551,"date":5552,"tags":5553},"\u002Fblog\u002F2022\u002F05\u002Fflowforge-05-released","FlowFuse 0.5 released","2022-05-12",[3548,2611,3583],{"path":5555,"title":5556,"date":5557,"tags":5558},"\u002Fblog\u002F2022\u002F05\u002Fcommunity-news-04","Community News April 2022","2022-05-06",[3548,4995,3630],{"path":5560,"title":5561,"date":5562,"tags":5563},"\u002Fblog\u002F2022\u002F05\u002Fnode-red-3-beta-stack","Node-RED 3.0 Beta Stack","2022-05-04",[3548,3631,3582],{"path":5565,"title":5566,"date":5567,"tags":5568},"\u002Fblog\u002F2022\u002F04\u002Fflowforge-04-released","FlowFuse 0.4 released","2022-04-14",[3548,2611,3583],{"path":5570,"title":5571,"date":5572,"tags":5573},"\u002Fblog\u002F2022\u002F04\u002Fcommunity-news-03","Community News March 2022","2022-04-05",[3548,4995,3630],{"path":5575,"title":5576,"date":5577,"tags":5578},"\u002Fblog\u002F2022\u002F04\u002Fflowforge-accepting-customers","FlowFuse is accepting customers now","2022-04-04",[3548,2611,3582],{"path":5580,"title":5581,"date":5582,"tags":5583},"\u002Fblog\u002F2022\u002F03\u002Fflowforge-03-released","FlowFuse 0.3 released","2022-03-17",[3548,2611,3583],{"path":5585,"title":5586,"date":5587,"tags":5588},"\u002Fblog\u002F2022\u002F03\u002Fcommunity-news-02","Community News February 2022","2022-03-02",[3548,4995,3630],{"path":5590,"title":5591,"date":5592,"tags":5593},"\u002Fblog\u002F2022\u002F02\u002Fannouncing-flowforge-cloud","Announcing FlowFuse Cloud","2022-02-23",[3548,2611,3582,3583],{"path":5595,"title":5596,"date":5597,"tags":5598},"\u002Fblog\u002F2022\u002F02\u002Fflowforge-02-released","FlowFuse 0.2 released","2022-02-17",[3548,2611,3583],{"path":5600,"title":5601,"date":5602,"tags":5603},"\u002Fblog\u002F2022\u002F02\u002Fuse-case-solar-afloat","Using Node-RED to keep Solar PV afloat","2022-02-09",[3548,3631,3630],{"path":5605,"title":5606,"date":5607,"tags":5608},"\u002Fblog\u002F2022\u002F02\u002Fwelcome-joe","Welcome Joe","2022-02-08",[3548,2611,3582],{"path":5610,"title":5611,"date":5612,"tags":5613},"\u002Fblog\u002F2022\u002F01\u002Fcommunity-news-01","Community News January 2022","2022-01-28",[3548,4995,3630],{"path":5615,"title":5616,"date":5617,"tags":5618},"\u002Fblog\u002F2022\u002F01\u002Fflowforge-01-released","FlowFuse 0.1 released","2022-01-20",[3548,2611,3583],{"path":5620,"title":5621,"date":5617,"tags":5622},"\u002Fblog\u002F2022\u002F01\u002Fwelcome-steve","Welcome Steve",[3548,2611,3582],{"path":5624,"title":5625,"date":5626,"tags":5627},"\u002Fblog\u002F2022\u002F01\u002Fwelcome-zj","Welcome ZJ","2022-01-03",[3548,2611,3582],{"path":5629,"title":5630,"date":5631,"tags":5632},"\u002Fblog\u002F2021\u002F05\u002Fwelcome-ben","Welcome Ben","2021-05-10",[2611,3582],{"path":5634,"title":5635,"date":5636,"tags":5637},"\u002Fblog\u002F2021\u002F04\u002Ffirst-deploy","Introducing FlowFuse Inc.","2021-04-06",[2611,3582],1786742774925]