0
我正在開發UWP樹莓的應用程序,我需要通過串行端口讀取硬幣選擇器的輸入,我遵循示例https://github.com/ms-iot/samples/tree/develop/SerialSample/CS,但我無法適應它該等待輸入從硬幣選擇uwp應用程序中的計時器和serialdevice樹莓pi2
由於
我正在開發UWP樹莓的應用程序,我需要通過串行端口讀取硬幣選擇器的輸入,我遵循示例https://github.com/ms-iot/samples/tree/develop/SerialSample/CS,但我無法適應它該等待輸入從硬幣選擇uwp應用程序中的計時器和serialdevice樹莓pi2
由於
public MainPage()
{
var timer = new DispatcherTimer();
timer.Tick += DispatcherTimerEventHandler;
timer.Interval = new TimeSpan(0, 0, 0, 1);
timer.Start();
}
private void DispatcherTimerEventHandler(object sender, object e)
{
coin();
}
private void coin()
{
//Runs every second.
}
計時器