using System.Collections.Generic; using NucuCar.Telemetry.Abstractions; namespace NucuCar.Sensors.Abstractions { /// /// The GenericSensor is an abstract class, which provides a base for abstracting hardware sensors /// with telemetry support. /// See: /// See: /// public abstract class GenericTelemeterSensor : GenericSensor, ITelemeter { protected bool TelemetryEnabled; public abstract string GetIdentifier(); public abstract Dictionary GetTelemetryJson(); public abstract bool IsTelemetryEnabled(); } }