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