NucuCar/NucuCar.Sensors/Telemetry/ITelemetrySensor.cs

12 lines
No EOL
285 B
C#

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