twelve_ecg.dart 139 B

12345678910
  1. enum TwelveEcgStatus {
  2. /// 未采样
  3. noSampling,
  4. /// 采样不稳定
  5. unstableSampling,
  6. /// 采样已稳定
  7. stableSampling,
  8. }