每次打开 GPIO 引脚时,都会出现以下异常:
WinRT information: Failed to open a handle to the device.
A resource required for this operation is disabled.
我似乎无法在互联网上找到很多关于此的信息。可能是因为 UAP 仍处于预览阶段。而且我认为我的代码没有问题,它与 Blink 示例中的几乎相同:
GpioController gpio = GpioController.GetDefault();
if (gpio != null)
{
var ledpin = gpio.OpenPin(11);
ledpin.Write(_light ? GpioPinValue.High : GpioPinValue.Low);
ledpin.SetDriveMode(GpioPinDriveMode.Output);
}