Day 66 of 200days of programming. Today I'll be talking about "State Machines" in LabVIEW. A state machine in LabVIEW is a programming architecture that allows you to design systems which behave ...
This allows you to specify a sequence of operations to be executed as a group (pipe), in which data from one operation is available to be further processed or used by ...
At its core, a LabVIEW state machine is a While Loop + Case Structure + Shift Register pattern. The shift register holds the current state enum. Each frame of the Case Structure is one discrete state.