21 lines
540 B
C#
Raw Permalink Normal View History

2022-06-23 18:55:08 +08:00
using Assets.Scripts.Ble.Commands;
using Assets.Scripts.Devices.Ble.Characteristic;
2021-09-23 18:14:53 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Assets.Scripts.Devices.Ant.Interfaces
{
interface IRowerDevice
{
C2RowerData c2RowerData { get; }
2021-09-23 18:14:53 +08:00
FtmsRowerData rowerData { get; }
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);
2022-06-23 18:55:08 +08:00
void SendCommand(RowerCommand command,int data = 0);
2021-09-23 18:14:53 +08:00
}
}