You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
392 B
16 lines
392 B
using System;
|
|
using leak_test_project.Models;
|
|
|
|
namespace leak_test_project.Services
|
|
{
|
|
public interface IIdSensorService : IDisposable
|
|
{
|
|
event EventHandler<string> ProgressMessage;
|
|
event EventHandler<string> ErrorMessage;
|
|
event EventHandler<bool> ConnectionChanged;
|
|
|
|
bool Connect();
|
|
void Disconnect();
|
|
SensorIdData ReadSensor();
|
|
}
|
|
}
|
|
|