10 lines
239 B
C#
10 lines
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();
|
||
|
}
|
||
|
}
|