に接続されていません私はUWPを使用してシリアル通信プログラムを作成しています。..C#UWPシリアル通信が
シリアル通信は... 「デバイス」が捕獲されていない接続されていません。 nullを返します。
コードはこちらです。
//指定されたポート名からデバイスセレクタを取得します。 文字列セレクタ= SerialDevice.GetDeviceSelector(portName);
// Get a list of devices that match the given name
DeviceInformationCollection devices = await DeviceInformation.FindAllAsync(selector, null);
// If any device found...
if (devices.Any())
このコードをUWPプロジェクトのPackage.appxmanifestに追加しました。
<DeviceCapability Name="serialcommunication">
<Device Id="any">
<Function Type="name:serialPort" />
</Device>
</DeviceCapability>
が、それは働いていません。..
は、しかし、私は、クラスライブラリのシリアル通信モジュールを作成しています。