namespace RobotNet10.RobotApp.Shared.Enums;
///
/// States cho CartographerService state machine
///
public enum SLAMState
{
Idle,
Initializing,
Ready,
/// MCL is computing initial pose; trajectory not added yet. Transitions to Localizing on MclConverged or MclSkipped.
Relocalizing,
Localizing,
ScanMapping,
SavingMap,
Error
}