Device.Net icon indicating copy to clipboard operation
Device.Net copied to clipboard

Out of date docs

Open BryanCrotaz opened this issue 4 years ago • 1 comments

https://melbournedeveloper.github.io/Device.Net/articles/LinuxmacOSSupport.html

The code sample doesn't compile. WindowsUsbDeviceFactory and WindowsHidDeviceFactory are unknown types.

With the following imports:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
using Device.Net;
#if !LIBUSB
using Usb.Net;
using Usb.Net.Windows;
#else
using Device.Net.LibUsb;
#endif

BryanCrotaz avatar Jun 28 '21 19:06 BryanCrotaz

Yes, I can confirm that the documentation here is out of date.

MelbourneDeveloper avatar Jun 28 '21 21:06 MelbourneDeveloper