Flow Studio

Turn a predicted label into a clear sequence of hardware actions.

What Flow Studio does

Flow Studio connects a camera prediction to a response. A flow begins with an event, checks a condition, and then runs the action connected to the matching path.

Start with one condition

Add an If Label block and choose the label you want to react to. Keep the first flow small so you can see whether the prediction or the action needs attention.

Set the true path

Connect the matching path to a hardware action, such as turning Port 1 on.

Set a safe fallback

Use the other path to return the output to its normal state. A clear fallback prevents the last detected label from leaving hardware active unexpectedly.

Example flow

Start prediction
  -> If Label = Robot
     -> True:  Port 1 ON
     -> False: Port 1 OFF

Test the flow

  1. Run the flow with the object out of view.
  2. Move the object into view.
  3. Confirm that the predicted label changes.
  4. Confirm that the hardware action follows the correct path.
  5. Remove the object and verify the fallback state.

Note

Prove one label and one action first. Add more branches only after the basic loop is reliable.