Skip to main content

Meadow.Foundation.Sensors.Environmental.AnalogWaterLevel

AnalogWaterLevel
StatusStatus badge: working
Source codeGitHub
NuGet packageNuGet Gallery for Meadow.Foundation

The analog water level sensor will output a voltage based on the amount of conductivity detected across the sensor area. Most sensors will jump to a signal of about ~1V as soon as the sensor area touches water and the voltage increases linearly as the depth increases.

Be careful to limit the water contact to only the the sensor area. Do not submerge the water level sensor.

Code Example

AnalogWaterLevel analogWaterLevel;

public override Task Initialize()
{
Resolver.Log.Info("Initializing...");

// configure our AnalogWaterLevel sensor
analogWaterLevel = new AnalogWaterLevel(
analogPin: Device.Pins.A00
);

// Example that uses an IObservable subscription to only be notified
// when the level changes by at least 0.1cm
analogWaterLevel.Subscribe(AnalogWaterLevel.CreateObserver(
h => Resolver.Log.Info($"Water level changed by 10 mm; new: {h.New}, old: {h.Old}"),
null //e => { return Math.Abs(e.Delta) > 0.1f; }
));

// classical .NET events can also be used:
analogWaterLevel.Updated += (object sender, IChangeResult<float> e) =>
{
Resolver.Log.Info($"Level Changed, level: {e.New}cm");
};

// Get an initial reading.
ReadLevel().Wait();

// Spin up the sampling thread so that events are raised and IObservable notifications are sent.
analogWaterLevel.StartUpdating(TimeSpan.FromSeconds(5));

return Task.CompletedTask;
}

protected async Task ReadLevel()
{
var conditions = await analogWaterLevel.Read();
Resolver.Log.Info($"Initial level: {conditions}");
}

Sample project(s) available on GitHub

Wiring Example

To wire a AnalogWaterLevel to your Meadow board, connect the following:

AnalogWaterLevelMeadow Pin
GNDGND
INA00
VCC3.3V