2019-11-09 14:54:06 +00:00
|
|
|
using System;
|
2019-11-14 14:45:32 +00:00
|
|
|
using System.Collections.Generic;
|
2019-11-09 14:54:06 +00:00
|
|
|
using System.Device.I2c;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using Iot.Device.Bmxx80;
|
|
|
|
using Iot.Device.Bmxx80.PowerMode;
|
|
|
|
using Microsoft.Extensions.Logging;
|
2019-11-14 14:45:32 +00:00
|
|
|
using NucuCar.Sensors.Telemetry;
|
2019-11-11 11:28:52 +00:00
|
|
|
using NucuCarSensorsProto;
|
2019-11-09 14:54:06 +00:00
|
|
|
|
2019-11-09 17:23:07 +00:00
|
|
|
namespace NucuCar.Sensors.EnvironmentSensor
|
2019-11-09 14:54:06 +00:00
|
|
|
{
|
2019-11-14 14:45:32 +00:00
|
|
|
public class Sensor : IDisposable, ITelemetrySensor
|
2019-11-09 14:54:06 +00:00
|
|
|
{
|
2019-11-10 12:38:40 +00:00
|
|
|
private ILogger _logger;
|
2019-11-09 14:54:06 +00:00
|
|
|
private I2cConnectionSettings _i2CSettings;
|
|
|
|
private I2cDevice _i2CDevice;
|
|
|
|
private Bme680 _bme680;
|
2019-11-11 10:59:07 +00:00
|
|
|
private EnvironmentSensorMeasurement _lastMeasurement;
|
2019-11-10 14:02:50 +00:00
|
|
|
private SensorStateEnum _sensorStateEnum;
|
2019-11-09 14:54:06 +00:00
|
|
|
|
2019-11-10 12:38:40 +00:00
|
|
|
/* Singleton Instance */
|
|
|
|
public static Sensor Instance { get; } = new Sensor();
|
|
|
|
|
|
|
|
static Sensor()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
private Sensor()
|
|
|
|
{
|
2019-11-10 14:02:50 +00:00
|
|
|
_sensorStateEnum = SensorStateEnum.Uninitialized;
|
2019-11-10 12:38:40 +00:00
|
|
|
}
|
|
|
|
|
2019-11-11 10:59:07 +00:00
|
|
|
public EnvironmentSensorMeasurement GetMeasurement()
|
2019-11-10 12:38:40 +00:00
|
|
|
{
|
2019-11-11 10:59:07 +00:00
|
|
|
return _lastMeasurement;
|
2019-11-10 12:38:40 +00:00
|
|
|
}
|
|
|
|
|
2019-11-10 14:02:50 +00:00
|
|
|
public SensorStateEnum GetState()
|
2019-11-10 12:38:40 +00:00
|
|
|
{
|
2019-11-10 14:02:50 +00:00
|
|
|
return _sensorStateEnum;
|
2019-11-10 12:38:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
_bme680?.Dispose();
|
|
|
|
}
|
|
|
|
|
|
|
|
internal void SetLogger(ILogger logger)
|
2019-11-09 14:54:06 +00:00
|
|
|
{
|
|
|
|
_logger = logger;
|
|
|
|
}
|
2019-11-09 17:37:28 +00:00
|
|
|
|
2019-11-09 14:54:06 +00:00
|
|
|
internal void InitializeSensor()
|
|
|
|
{
|
2019-11-10 14:02:50 +00:00
|
|
|
if (_sensorStateEnum == SensorStateEnum.Initialized)
|
2019-11-10 12:38:40 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-11-09 14:54:06 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
/* Connect to default i2c address 0x76 */
|
|
|
|
_i2CSettings = new I2cConnectionSettings(1, Bme680.DefaultI2cAddress);
|
|
|
|
_i2CDevice = I2cDevice.Create(_i2CSettings);
|
|
|
|
_bme680 = new Bme680(_i2CDevice);
|
2019-11-09 17:37:28 +00:00
|
|
|
|
2019-11-09 14:54:06 +00:00
|
|
|
/* Initialize measurement */
|
2019-11-11 10:59:07 +00:00
|
|
|
_lastMeasurement = new EnvironmentSensorMeasurement();
|
2019-11-09 17:37:28 +00:00
|
|
|
_bme680.Reset();
|
|
|
|
_bme680.SetHumiditySampling(Sampling.UltraLowPower);
|
|
|
|
_bme680.SetTemperatureSampling(Sampling.UltraHighResolution);
|
|
|
|
_bme680.SetPressureSampling(Sampling.UltraLowPower);
|
2019-11-10 14:02:50 +00:00
|
|
|
_sensorStateEnum = SensorStateEnum.Initialized;
|
2019-11-09 17:37:28 +00:00
|
|
|
|
2019-11-09 14:54:06 +00:00
|
|
|
_logger.LogInformation($"{DateTimeOffset.Now}:BME680 Sensor initialization OK.");
|
|
|
|
}
|
|
|
|
catch (System.IO.IOException e)
|
|
|
|
{
|
|
|
|
_logger.LogError($"{DateTimeOffset.Now}:BME680 Sensor initialization FAIL.");
|
|
|
|
_logger.LogTrace(e.Message);
|
2019-11-10 14:02:50 +00:00
|
|
|
_sensorStateEnum = SensorStateEnum.Error;
|
2019-11-09 14:54:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
internal async Task TakeMeasurement()
|
|
|
|
{
|
2019-11-10 14:02:50 +00:00
|
|
|
if (_sensorStateEnum != SensorStateEnum.Initialized)
|
2019-11-09 14:54:06 +00:00
|
|
|
{
|
2019-11-09 17:37:28 +00:00
|
|
|
_logger.LogWarning(
|
|
|
|
$"{DateTimeOffset.Now}:BME680: Attempting to take measurement while sensor is not initialized!");
|
2019-11-09 14:54:06 +00:00
|
|
|
return;
|
|
|
|
}
|
2019-11-09 17:37:28 +00:00
|
|
|
|
2019-11-09 14:54:06 +00:00
|
|
|
/* Force the sensor to take a measurement. */
|
|
|
|
_bme680.SetPowerMode(Bme680PowerMode.Forced);
|
2019-11-09 17:37:28 +00:00
|
|
|
|
2019-11-11 10:59:07 +00:00
|
|
|
_lastMeasurement.Temperature = (await _bme680.ReadTemperatureAsync()).Celsius;
|
|
|
|
_lastMeasurement.Pressure = await _bme680.ReadPressureAsync();
|
|
|
|
_lastMeasurement.Humidity = await _bme680.ReadHumidityAsync();
|
2019-11-09 17:37:28 +00:00
|
|
|
|
2019-11-09 14:54:06 +00:00
|
|
|
_logger.LogInformation($"{DateTimeOffset.Now}:BME680: reading");
|
|
|
|
_logger.LogInformation(
|
2019-11-11 10:59:07 +00:00
|
|
|
$"{_lastMeasurement.Temperature:N2} \u00B0C | {_lastMeasurement.Pressure:N2} hPa | {_lastMeasurement.Humidity:N2} %rH");
|
2019-11-09 14:54:06 +00:00
|
|
|
}
|
2019-11-14 14:45:32 +00:00
|
|
|
|
|
|
|
public Dictionary<string, double> GetTelemetryData()
|
|
|
|
{
|
|
|
|
return new Dictionary<string, double>
|
|
|
|
{
|
|
|
|
["temperature"] = _lastMeasurement.Temperature,
|
|
|
|
["humidity"] = _lastMeasurement.Humidity,
|
|
|
|
["pressure"] = _lastMeasurement.Pressure,
|
|
|
|
["voc"] = _lastMeasurement.VolatileOrganicCompound
|
|
|
|
};
|
|
|
|
}
|
2019-11-09 14:54:06 +00:00
|
|
|
}
|
|
|
|
}
|