2つの引数を取り、「メソッドのCS1501は、いかなる過負荷 『をGetDeviceSelector』 2つの引数を取ります」方法はありませんオーバーロード「GetDeviceSelectorは、」私は、C#で完全な初心者だと、このエラーになっていない保つ
ビジュアルスタジオにSerialDevice.GetDeviceSelector(vid, pid)
を変更することをお勧めSerialDevice.GetDeviceSelectorFromUsbVidPid(vid, pid)
。
これは動作しますが、私は、Windows 10のIoTコア上で私のラズベリーパイ3上でデバッグを実行すると、それを返します: Exception thrown: 'System.ArgumentOutOfRangeException' in mscorlib.ni.dll Specified argument was out of the range of valid values. Parameter name: index
私の目標は、私のラズベリーパイに私のArduinoを接続し、シリアル経由と通信することです。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Http;
using Windows.ApplicationModel.Background;
using Windows.Devices.SerialCommunication;
using Windows.Devices.Enumeration;
using System.Diagnostics;
// The Background Application template is documented at http://go.microsoft.com/fwlink/?LinkID=533884&clcid=0x409
namespace BackgroundApplication1
{
public sealed class StartupTask : IBackgroundTask
{
//private String debugtest;
private SerialDevice serialDevice = null;
public void Run(IBackgroundTaskInstance taskInstance)
{
//
// TODO: Insert code to perform background work
//
// If you start any asynchronous methods here, prevent the task
// from closing prematurely by using BackgroundTaskDeferral as
// described in http://aka.ms/backgroundtaskdeferral
//
FindDevice();
Debug.WriteLine("test1");
}
/*private async void ListAvailablePorts()
{
UInt32 vid = 0x045E;
UInt32 pid = 0x0611;
try
{
string aqs = SerialDevice.GetDeviceSelector(vid, pid);
var dis = await DeviceInformation.FindAllAsync(aqs);
//status.Text = "Select a device and connect";
for (int i = 0; i < dis.Count; i++)
{
listOfDevices.Add(dis[i]);
}
DeviceListSource.Source = listOfDevices;
comPortInput.IsEnabled = true;
ConnectDevices.SelectedIndex = -1;
}
catch (Exception ex)
{
status.Text = ex.Message;
}
}*/
private async void FindDevice()
{
Debug.WriteLine("begintest");
ushort vid = 2341;
ushort pid = 0001;
string aqs = SerialDevice.GetDeviceSelectorFromUsbVidPid(vid, pid);
var myDevices = await Windows.Devices.Enumeration.DeviceInformation.FindAllAsync(aqs);
try
{
serialDevice = await SerialDevice.FromIdAsync(myDevices[0].Id);
Debug.WriteLine("ok");
/*serialDevice.WriteTimeout = TimeSpan.FromMilliseconds(1000);
serialDevice.ReadTimeout = TimeSpan.FromMilliseconds(1000);
serialDevice.BaudRate = 9600;
serialDevice.Parity = SerialParity.None;
serialDevice.StopBits = SerialStopBitCount.One;
serialDevice.DataBits = 8;
serialDevice.Handshake = SerialHandshake.None;
String debugtest = "Serial port configured successfully: ";
debugtest += serialDevice.BaudRate + "-";
debugtest += serialDevice.DataBits + "-";
debugtest += serialDevice.Parity.ToString() + "-";
debugtest += serialDevice.StopBits;
//debugtest += (DeviceInformation)myDevices[0];
Debug.WriteLine(debugtest);*/
}
catch (Exception exception)
{
Debug.WriteLine(exception.Message.ToString());
Debug.WriteLine("error");
}
finally
{
Debug.WriteLine("Opened device for communication.");
Debug.WriteLine("test");
}
Debug.WriteLine("test2");
}
/*private void ShowStatus(string v)
{
throw new NotImplementedException();
}*/
}
}
が編集:私はそれが
UInt16 vid = 0x2341;
UInt16 pid = 0x0001;
string aqs = SerialDevice.GetDeviceSelectorFromUsbVidPid(vid, pid);
var myDevices = await DeviceInformation.FindAllAsync(aqs);
if (myDevices.Count == 0)
{
Debug.WriteLine("Device not found!");
return;
}
を動作するようにいくつかの行を変更しかし、私
ここでは完全なコードがあります(私は、Microsoftのメーカーのものを使用する必要はありません)新しい問題を発見しました... このserialDevice = await SerialDevice.FromIdAsync(myDevices[0].Id);
が返されます
capabi (私はMicrosoftのサンプルと比較するとき)litiesは、私がSystem.ArgumentOutOfRangeExceptionがエラーを解決したのUInt16にUSHORTを変更
<Capabilities>
<Capability Name="internetClient" />
<DeviceCapability Name="serialcommunication">
<Device Id="any">
<Function Type="name:serialPort"/>
</Device>
</DeviceCapability>
を与えたあなたは 'serialDeviceは= SerialDevice.FromIdAsync(myDevices [0] .IDを)待つラインで例外を取得していますか;'?デバイスの空の配列を取得しているように見えます。 –
ええと私はちょうどそれを見つけました... UInt32をUInt32に変更しなければなりませんでしたが、MicrosoftのサンプルではUInt32です... https://docs.microsoft.com/en-us/uwp/api/windows.devices .serialcommunication.serialdevice#Windows_Devices_SerialCommunication_SerialDevice_FromIdAsync_System_String_ – Principis
問題は修正されましたが、新しい問題が見つかりました...この行: serialDevice = await SerialDevice.FromIdAsync(myDevices [0] .Id); 戻り値常にnull Package.appxmanifestを何度もチェックしました。これは動作するserialUARTサンプルと同じです... – Principis