c#不断将串行数据流式传输到arduino
本文关键字:传输 arduino 数据流 | 更新日期: 2023-09-27 17:53:28
当选中某个框时,我遇到了流逗号分隔变量的问题。我希望数据流不断地流向arduino,即使变量没有变化。我唯一一次能接近目标的时候,却陷入了无限循环。这里是目前的代码我有,任何帮助将不胜感激。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Timers;
namespace feeder3
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void streamBox_CheckedChanged(object sender, EventArgs e)
{
int a = 1;
int b = 2;
int c = 3;
bool state = streamBox.Checked;
while (state == true)
{
System.Console.WriteLine("{0},{1},{2}", a,b,c);
}
}
private void stopStreamBtn_Click(object sender, EventArgs e)
{
streamBox.Checked = false;
}
}
}
我用巴尼给我的信息算出来了。我现在可以调整延迟以匹配波特率。
private async void streamBox_CheckedChanged(object sender, EventArgs e) { int a = 1; int b = 2; int c = 3; bool state = streamBox.Checked; while (state == true) { System.Console.WriteLine("{0},{1},{2}", a,b,c); await Task.Delay(10); } }