-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMeadowApp.cs
55 lines (45 loc) · 1.59 KB
/
MeadowApp.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
using Meadow;
using Meadow.Devices;
using Meadow.Hardware;
using Meadow.Units;
using System;
using System.Threading.Tasks;
namespace AnalogInputPort;
public class MeadowApp : App<F7FeatherV2>
{
IAnalogInputPort analogIn;
public override Task Initialize()
{
Resolver.Log.Info("Initializing hardware...");
analogIn = Device.CreateAnalogInputPort(Device.Pins.A00);
analogIn.Updated += (s, result) =>
{
Resolver.Log.Info($"Analog event, new voltage: {result.New.Volts:N2}V, old: {result.Old?.Volts:N2}V");
};
var observer = IAnalogInputPort.CreateObserver(
handler: result =>
{
Resolver.Log.Info($"Analog observer triggered; new: {result.New.Volts:n2}V, old: {result.Old?.Volts:n2}V");
},
// filter is optional. in this case, we're only notifying if the
// voltage changes by at least `0.1V`.
filter: result =>
{
if (result.Old is { } oldValue)
{
return (result.New - oldValue).Abs().Volts > 0.1;
}
else { return false; }
}
);
analogIn.Subscribe(observer);
Resolver.Log.Info("Hardware initialized.");
return base.Initialize();
}
public override async Task Run()
{
Voltage voltageReading = await analogIn.Read();
Resolver.Log.Info($"Voltages: {voltageReading.Volts:N3}");
analogIn.StartUpdating(TimeSpan.FromSeconds(1));
}
}