AntPlusDeviceType.cs 1010 B

1234567891011121314151617181920212223242526
  1. public static class AntplusDeviceType {
  2. public const byte Antfs = 1;
  3. public const byte BikePower = 11;
  4. public const byte EnvironmentSensorLegacy = 12;
  5. public const byte MultiSportSpeedDistance = 15;
  6. public const byte Control = 16;
  7. public const byte FitnessEquipment = 17;
  8. public const byte BloodPressure = 18;
  9. public const byte GeocacheNode = 19;
  10. public const byte LightElectricVehicle = 20;
  11. public const byte EnvSensor = 25;
  12. public const byte Racquet = 26;
  13. public const byte ControlHub = 27;
  14. public const byte MuscleOxygen = 31;
  15. public const byte BikeLightMain = 35;
  16. public const byte BikeLightShared = 36;
  17. public const byte BikeRadar = 40;
  18. public const byte WeightScale = 119;
  19. public const byte HeartRate = 120;
  20. public const byte BikeSpeedCadence = 121;
  21. public const byte BikeCadence = 122;
  22. public const byte BikeSpeed = 123;
  23. public const byte StrideSpeedDistance = 124;
  24. public const byte Invalid = (byte)0xFF;
  25. }