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
- Run the flow with the object out of view.
- Move the object into view.
- Confirm that the predicted label changes.
- Confirm that the hardware action follows the correct path.
- 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.
