Device.Net (Usb.Net, Hid.Net) 4.0
Device.Net is a cross-platform .NET framework for talking to connected devices such as USB, Serial Port and Hid devices. It aims to make device communication uniform across all platforms and device types. It runs on .NET 5, .NET Framework, UWP, Android, and other platforms. The new version 4.0 brings an array of fixes and features to make device communication more manageable and stable. Star the repo on GitHub and join the conversation on the Device.Net Discord Server.
Support this blog. Sponsor my Github open source, hire me to build an app for your connected device, or sign up for my course Introduction to Uno Platform.
Check out the 4.0 Project for a full list of bugs and features.
#131 — Logging with Microsoft standard ILogger
Logging and tracing is a vast topic for device communication. You need to send telemetry data to a location where it is readable and queryable. Device.Net brings improved logging throughout the system with adjustable log levels. Send your telemetry to a system like Application Insights to store logs and a central queryable location.
#126 — USB Control Transfers
USB devices require special transfer when uploading firmware and performing setup operations. Version 4.0 implements control transfer across all platforms. This example clears the status of the device.
#105 — Improved Public Interface
The public interface is much simpler. Use extension methods to create factories, and quickly enumerate the devices.
#2 — Cancellation Tokens (Timeouts)
You can now implement timeouts with cancellation tokens. Long-running tasks accept CancellationToken
as a parameter.
#182 — SourceLink Support (Stepping into the code)
SourceLink is a debugging feature that allows you to step into code in the Device.Net libraries. It downloads the code from Github so you can step into the code to see what is going wrong.
.NET Resilience and Transient-Fault-Handling with Polly
Use Polly to deal with retries for transient faults. Devices often don’t work as expected, and users sometimes bump cables. This sample uses Polly to retry on failed control transfers.
Reactive Programming
Use the Reactive Extensions to use messaging with a composable, modern syntax. This sample reads from a thermometer and only reports the result when the temperature changes.
Improved Documentation
The documentation is far better and is still improving. XML doc now comes inside the Nuget package, and all documentation is published on Github pages here.
Stability
There are many more fixes and features, but stability is a significant step up in this version. There are far more unit and integration tests, and abstractions make many parts of the system testable. Each revision is an improvement, we have about 70% code coverage, and we will work toward 90% + code coverage.
The community moved to the Device.Net Discord Server. Here you will find other people who work with connected devices in the .NET space. Join and say hello. Feel free to ask questions here before reporting bugs.
Device.Net has gained momentum, and I’m personally working toward bringing this framework up the standard you’d expect from the .NET Foundation. I plan to bring Device.Net to browsers with Blazor and continue to add support for more device types. Please contribute or sponsor if you can.
Originally published at https://christianfindlay.com on January 31, 2021.