private Nau7802 loadSensor;
public int CalibrationFactor { get; set; } = 16526649;
public Mass CalibrationWeight { get; set; } = new Mass(1600, Mass.UnitType.Grams);
public override async Task Initialize()
{
Resolver.Log.Info("Initialize...");
loadSensor = new Nau7802(Device.CreateI2cBus());
if (CalibrationFactor == 0)
{
await GetAndDisplayCalibrationUnits(loadSensor);
}
else
{
await Task.Delay(500);
loadSensor.SetCalibrationFactor(CalibrationFactor, CalibrationWeight);
loadSensor.Tare();
}
loadSensor.Updated += (sender, values) => Resolver.Log.Info($"Mass is now returned {values.New.Grams:N2}g");
}
public override Task Run()
{
loadSensor.StartUpdating(TimeSpan.FromSeconds(2));
return Task.CompletedTask;
}
public async Task GetAndDisplayCalibrationUnits(Nau7802 sensor)
{
Resolver.Log.Info($"Beginning Calibration. First we'll tare (set a zero).");
Resolver.Log.Info($"Make sure scale bed is clear. Next step in 5 seconds...");
await Task.Delay(5000);
sensor.Tare();
Resolver.Log.Info($"Place a known weight on the scale. Next step in 5 seconds...");
await Task.Delay(500);
var factor = sensor.CalculateCalibrationFactor();
Resolver.Log.Info($"Your scale's Calibration Factor is: {factor}. Enter this into the code for future use.");
}