Skip to content
This repository was archived by the owner on Nov 16, 2025. It is now read-only.

HierarchicalStateMachine update()

ged edited this page Sep 10, 2024 · 2 revisions

Definition

Updates the state machine by processing all queued transitions, including the update callbacks of the current state.

void update();

Remarks

This function processes any transitions that have been queued, including state updates, by calling their respective update callbacks.

Usage

void loop()
{
    hsm.update();
}

Clone this wiki locally