2021-09-23 18:14:53 +08:00
|
|
|
|
using Assets.Scripts.Devices.Ble.Characteristic;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Assets.Scripts.Devices.Ant.Interfaces
|
|
|
|
|
|
{
|
|
|
|
|
|
interface IRowerDevice
|
|
|
|
|
|
{
|
2022-03-10 18:10:34 +08:00
|
|
|
|
C2RowerData c2RowerData { get; }
|
2021-09-23 18:14:53 +08:00
|
|
|
|
FtmsRowerData rowerData { get; }
|
2021-09-29 11:06:05 +08:00
|
|
|
|
void Reset();
|
2022-02-10 12:57:43 +08:00
|
|
|
|
void SetResistanceLevel(ushort v);
|
2022-05-11 17:11:48 +08:00
|
|
|
|
void C2GetStatus(byte[] bs);
|
2021-09-23 18:14:53 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|