MakoIoT.Device 1.0.40.18601

There is a newer version of this package available.
See the version list below for details.
dotnet add package MakoIoT.Device --version 1.0.40.18601                
NuGet\Install-Package MakoIoT.Device -Version 1.0.40.18601                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MakoIoT.Device" Version="1.0.40.18601" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MakoIoT.Device --version 1.0.40.18601                
#r "nuget: MakoIoT.Device, 1.0.40.18601"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install MakoIoT.Device as a Cake Addin
#addin nuget:?package=MakoIoT.Device&version=1.0.40.18601

// Install MakoIoT.Device as a Cake Tool
#tool nuget:?package=MakoIoT.Device&version=1.0.40.18601                

Mako-IoT.Device

This is the composition framework of MAKO-IoT. These components provide backbone for your solution.

Projects structure

Create two nanoFramework projects:

MyProject.Device (nanoFramework Class Library)

Implement your logic here. You will be able to unit test this project (without hardware!). Place everything your software needs to do here, abstracting hardware-specific operations with interfaces. For example, if you want to blink a LED - create IBlinker interface here with void Blink(bool isOn); method.

MyProject.Device.App (nanoFramework Application)

This is the entry point to your software. Use DeviceBuilder to link all components together (MAKO IoT and your code) in the Main() method of Program class. Also, implement your hardware-specific logic here. For example, concrete blinker class for the interface above: LedBlinker : IBlinker. Link the interface with the class in ConfigureDI section of DeviceBuilder.

public class Program
{
    public static void Main()
    {
        DeviceBuilder.Create()
            .ConfigureDI(services =>
            {
                //dependency injection registrations go here
            })
            //add other MAKO-IoT components & configuration here
            
            .Build()
            .Start();

        Thread.Sleep(Timeout.InfiniteTimeSpan);
    }
}

See Blink sample

Device events

You can attach handlers to DeviceStarting and DeviceStopped events:

var builder = DeviceBuilder.Create();

builder.DeviceStarting += device =>
{
    //do something on start
};

builder.DeviceStopped += device =>
{
    //do something on stop
};

builder.Build().Start();

Device start behavior

With IDeviceStartBehavior you can intercept device startup. For example, based on certain condition either continue normal operation go into configuration mode.

public class MyDeviceStartBehavior : IDeviceStartBehavior
{
    public bool DeviceStarting()
    {
      if (normalOperationMode)
        return true; //continue normal device startup
      
      return false; //don't continue device startup
    }
}

public class Program
{
    public static void Main()
    {
        DeviceBuilder.Create()
            .ConfigureDI(services =>
            {
                services.AddSingleton(typeof(IDeviceStartBehavior), typeof(MyDeviceStartBehavior));
            }).Build().Start();

        Thread.Sleep(Timeout.InfiniteTimeSpan);
    }
}
Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.69.37961 90 11/28/2024
1.0.67.59807 91 11/26/2024
1.0.66.8997 94 11/25/2024
1.0.65.58783 97 11/19/2024
1.0.64.19809 134 10/18/2024
1.0.63.63404 92 10/16/2024
1.0.62.29514 92 9/26/2024
1.0.61.29719 101 9/20/2024
1.0.60.55995 99 9/12/2024
1.0.59.53404 106 8/27/2024
1.0.58.20500 124 8/10/2024
1.0.57.14777 81 8/5/2024
1.0.56.61472 96 6/12/2024
1.0.55.5721 116 5/17/2024
1.0.54.63609 128 4/9/2024
1.0.53.24180 105 4/8/2024
1.0.52.63211 132 4/3/2024
1.0.51.45151 111 3/22/2024
1.0.50.17678 126 3/21/2024
1.0.49.6323 180 1/5/2024
1.0.48.60571 152 12/30/2023
1.0.47.685 163 12/7/2023
1.0.46.2121 133 12/1/2023
1.0.45.15740 155 11/17/2023
1.0.44.43607 129 11/16/2023
1.0.43.29125 129 11/11/2023
1.0.42.40216 133 11/10/2023
1.0.41.32684 130 11/8/2023
1.0.40.18601 136 11/7/2023
1.0.39.25121 123 11/7/2023
1.0.38.15761 167 10/10/2023
1.0.37.45390 153 10/7/2023
1.0.36.19472 136 10/6/2023
1.0.35.50262 127 10/6/2023
1.0.33.13068 213 5/25/2023
1.0.32.25738 181 5/24/2023
1.0.31.21550 189 5/24/2023
1.0.29.14811 177 5/22/2023
1.0.28.30730 162 5/22/2023
1.0.26.23643 167 5/22/2023
1.0.25.10113 175 5/22/2023
1.0.24.11452 184 5/22/2023