c#/ Arduino SerialPort.read()为空

时间:2015-12-14 20:30:28

标签: c# arduino

我正试图从我的arduino

中检索一些数据

我在我的arduino上使用它:

Serial.println((String)animation);

这是我的c#应用程序

log.WriteEntry(message, EventLogEntryType.Information);

port.Write(message.Replace(Environment.NewLine, ""));

byte[] buffer = new byte[1024];

port.Read(buffer, 0, buffer.Length);

message = Encoding.ASCII.GetString(buffer).Replace("\0", "");

log.WriteEntry(message, EventLogEntryType.Information);

我也尝试使用.ReadTo(NewLine thing);.ReadLine();

我的消息总是如下所示:img

0 个答案:

没有答案