我正试图从我的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