2019-11-15 15:53:20 +00:00
|
|
|
using System;
|
2019-11-14 14:45:32 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace NucuCar.Sensors.Telemetry
|
|
|
|
{
|
|
|
|
public interface ITelemetrySensor
|
|
|
|
{
|
2019-11-15 15:53:20 +00:00
|
|
|
string GetIdentifier();
|
2019-11-14 14:45:32 +00:00
|
|
|
/* Dictionary containing the topic and the value */
|
|
|
|
Dictionary<string, double> GetTelemetryData();
|
|
|
|
}
|
|
|
|
}
|