﻿namespace Aidlab
{
    public enum ActivityType : int
    {
        Unspecific = 0,
        Automotive = 1,
        Walking = 2,
        Running = 4,
        Cycling = 8,
        Still = 16,
    }

    public enum WearState : int
    {
        PlacedProperly = 0,
        PlacedUpsideDown = 1,
        Loose = 2,
        Detached = 3,
        Unknown = 4,
        Unsettled = 5,
    }

    public enum Exercise : int
    {
        None = -1,
        PushUp = 0,
        Jump = 1,
        SitUp = 2,
        Burpee = 3,
        PullUp = 4,
        Squat = 5,
        PlankStart = 6,
        PlankEnd = 7,
    }

    public enum SyncState : int
    {
        Start = 0,
        End = 1,
        Stop = 2,
        Empty = 3,
        Unavailable = 4,
    }

    public enum BodyPosition : int
    {
        Undefined = 0,
        Prone = 1,
        Supine = 2,
        LeftSide = 3,
        RightSide = 4,
    }

    public enum Signal : int
    {
        Ecg = 0,
        Respiration = 1,
        Temperature = 2,
        Motion = 3,
        Battery = 4,
        Activity = 5,
        Orientation = 6,
        Steps = 7,
        HeartRate = 8,
        HealthThermometer = 9,
        SoundVolume = 10,
        Rr = 11,
        Pressure = 12,
        RespirationRate = 14,
        BodyPosition = 15,
        Eda = 16,
        Gps = 17,
    }
}
