我想从串口读取数据,但不知道该怎么做。
我正在使用Arduino,所以这是我的代码:
int switchPin = 7;
int ledPin = 13;
boolean lastButton = LOW;
boolean currentButton = LOW;
boolean flashLight = LOW;
void setup()
{
pinMode(switchPin, INPUT);
pinMode(ledPin, OUTPUT);
Serial.begin(9600);
}
boolean debounce(boolean last)
{
boolean current = digitalRead(switchPin);
if (last != current)
{
delay(5);
current = digitalRead(switchPin);
}
return current;
}
void loop()
{
currentButton = debounce(lastButton);
if (lastButton == LOW && currentButton == HIGH)
{
Serial.println("UP");
digitalWrite(ledPin, HIGH);
}
if (lastButton == HIGH && currentButton == LOW)
{
Serial.println("DOWN");
digitalWrite(ledPin, LOW);
}
lastButton = currentButton;
}
如您所见,一切都很简单:按下按钮设备后,将“DOWN”或“UP”发送到串口。 我想从我的WPF应用程序中收到它。 这是代码:
namespace Morse_Device_Stuff
{
{
public MainWindow()
{
InitializeComponent();
}
private SerialPort port;
private bool recordStarted = false;
private void recordButton_Click(object sender, RoutedEventArgs e)
{
SerialPort port = new SerialPort("COM3", 9600);
port.Open();
recordStarted = !recordStarted;
string lane;
if(recordStarted)
{
(recordButton.Content as Image).Source = new BitmapImage(new Uri("stop.png", UriKind.Relative));
port.DataReceived += new SerialDataReceivedEventHandler(port_DataReceived);
}
else
{
(recordButton.Content as Image).Source = new BitmapImage(new Uri("play.png", UriKind.Relative));
}
port.Close();
}
private void port_DataReceived(object sender, SerialDataReceivedEventArgs e)
{
textBox.Text += port.ReadExisting();
}
}
}
按下按钮后没有任何变化,我的TextBox仍为空。
有什么不对?
答案 0 :(得分:0)
在recordButton_Click函数内关闭了端口。由于DataReceived是异步调用的,所以没有任何反应。使SerialPort端口变量类成员,并从recordButton_Click中删除port.Close行。
您可以在其他位置关闭端口,例如,在窗体关闭时。
此外,您不应直接在port_DataReceived函数内更改textBox.Text,因为它是在任意线程上下文中调用的。使用Dispatcher.BeginInvoke将此操作重定向到主应用程序线程。