-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMeadowApp.cs
36 lines (27 loc) · 945 Bytes
/
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
using Meadow;
using Meadow.Devices;
using Meadow.Hardware;
using ProjectLab_Logging.Controllers;
using ProjectLab_Logging.Hardware;
using System.Threading.Tasks;
namespace ProjectLab_Logging;
// Change ProjectLabCoreComputeApp to ProjectLabFeatherApp for ProjectLab v2
public class MeadowApp : ProjectLabCoreComputeApp
{
private MainController mainController;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
var hardware = new MeadowCloudLoggingHardware(Hardware);
var network = Hardware.ComputeModule.NetworkAdapters.Primary<IWiFiNetworkAdapter>();
mainController = new MainController(hardware, network);
mainController.Initialize();
return Task.CompletedTask;
}
public override Task Run()
{
Resolver.Log.Info("Run...");
mainController.Run();
return Task.CompletedTask;
}
}