NucuCar/NucuCar.Sensors/Telemetry/ITelemetrySensor.cs
2019-11-14 16:45:32 +02:00

10 lines
No EOL
239 B
C#

using System.Collections.Generic;
namespace NucuCar.Sensors.Telemetry
{
public interface ITelemetrySensor
{
/* Dictionary containing the topic and the value */
Dictionary<string, double> GetTelemetryData();
}
}