added IDataconverter interface

This commit is contained in:
shinichi
2020-09-09 11:35:54 +02:00
parent 213a098356
commit 8dce607028
4 changed files with 29 additions and 8 deletions

View File

@@ -2,9 +2,24 @@
using System.Collections.Generic;
using System.Text;
namespace ProftaakRH
namespace Hardware
{
class DataConverter
class DataConverter : IDataConverter
{
public void Bike(byte[] bytes)
{
throw new NotImplementedException();
}
public void BPM(byte[] bytes)
{
throw new NotImplementedException();
}
}
interface IDataConverter
{
void BPM(byte[] bytes);
void Bike(byte[] bytes);
}
}