我是 C# 新手
我正在尝试向 USB 端口发送命令(usbport=========fx3(Cypress 芯片),在 LED 上点亮而不是在定制板上))
我尝试扫描端口但失败了,因为我的计算机(win10)将 USB 识别为相机(fx3 是图像处理芯片)
所以我在 sysnet.pe.kr 中找到了这段代码
using System;
using System.Threading.Tasks;
using Windows.Devices.Enumeration;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
ListDevices().GetAwaiter().GetResult();
}
private static async Task ListDevices()
{
var devices = await DeviceInformation.FindAllAsync(DeviceClass.VideoCapture);
foreach (var item in devices)
{
Console.WriteLine($"{item.Id}: {item.Name}");
devices.
}
}
}
}
有用!!!所以我找到了端口
但我不知道如何向端口发送命令!!!
请帮帮我ㅠㅠ