从多个类访问串行端口

时间:2013-07-20 05:48:00

标签: c#

我正在尝试使用串口在arduino和c#程序之间进行通信。我是c#编程的新手。该程序有多个用户控制表单。每个人都需要访问串口才能发送数据。我需要做的就是从每个类写入主窗体的串口。

我了解如何设置和写入串口。这是我的Form1代码:

partial class Form1 : Form
{
    lightsControl u1;
    fanControl u2;
    public Form1()
    {
        InitializeComponent();
        u1 = new lightsControl();
        u2 = new fanControl();
        u1.Dock = DockStyle.Fill;
        u2.Dock = DockStyle.Fill;
        serialPort1.PortName = "COM4";
        serialPort1.BaudRate = 9600;
        serialPort1.Open();
    }

    private void lightsButton_Click(object sender, EventArgs e)
    {
        u2.Hide();
        u1.Show();
        controlPanel.Controls.Add(u1);
    }

    private void fansButton_Click(object sender, EventArgs e)
    {
        u1.Hide();
        u2.Show();
        controlPanel.Controls.Add(u2);
    }

    private void monitorButton_Click(object sender, EventArgs e)
    {
        u1.Hide();
        u2.Hide();
    }

     public void sendData(ref string tx1, ref string tx2, ref string tx3)
    {
        serialPort1.WriteLine(tx1);
        serialPort1.WriteLine(tx2);
        serialPort1.WriteLine(tx3);
    }      
}

到目前为止我只写了另外一节课。在继续休息之前,我正在尝试进行串行通信设置。我创建了sendData函数,希望能够从另一个类访问它,但我似乎无法让它工作。我正在使用visual studio 2012。

编辑: 它现在正在工作。这是我的Form1代码:

partial class Form1 : Form
{
    lightsControl u1;
    fanControl u2;
    public Form1()
    {

        InitializeComponent();
        u1 = new lightsControl(serialPort);
        u2 = new fanControl();
        u1.Dock = DockStyle.Fill;
        u2.Dock = DockStyle.Fill;
        serialPort.PortName = "COM4";
        serialPort.BaudRate = 9600;
        serialPort.Open();
    }

这是我的第二个表单代码:

    private SerialPort port; //declare port
    public lightsControl(SerialPort port)//import serialPort from Form1 to port
    {
        InitializeComponent();
        this.port = port;
        hideTimer();
        updateTimer.Enabled = true;
        stopButton.Enabled = false;
    }

    public void WriteToPort(string data)
    {
        this.port.WriteLine(data); //function that writes to serial port
    }
    private void onButton_Click(object sender, EventArgs e)
    {
        statusLabel.Text = "Always On";
        hideTimer();
        switch (light)
        {
            case 0://Light 1
                com = light1Name + "On";
                Tx2 = "a";
                WriteToPort(Tx2);//This is where I need to write to the port
                light1Status = 1;
                light1Reset();
                break;

串行端口对象位于Form1中,并将其传递给正在使用的其他表单。

2 个答案:

答案 0 :(得分:2)

我假设您的表单都是父表单的子表单,或者您的其他表单可能是Form1的子表单。在这种情况下,您可以在父类中创建SerialPort对象,并通过其构造函数将其发送到您孩子的类。

像这样:

private SerialPort port;
public Form2(SerialPort port)
{
    InitializeComponent();
    this.port = port;
}

// Use your port object throughout the class now.
public void WriteToPort(string data)
{
    this.port.WriteLine(data);
}

您可以像这样加载Form2:

Form2 form = new Form2(serialPort);
form.Show();

基本上,您在程序结构中创建了高级的SerialPort对象,并通过类构造函数传递它。

答案 1 :(得分:2)

同时您只能通过一个班级连接到串口。所以你需要创建一个单例类并在其他类中使用它。

 public class SerialPortClass
 {
    private SerialPort _serialPort = new SerialPort() ;

    private SerialPortClass()
    {
       // you can set serialPort setting here
    }

    private static SerialPortClass _instance=new SerialPortClass();
    public static SerialPortClass Instance
    {
      get
      {
          return _instance;
      }
    }


    private void Write()
    {
        _serialPort.Write(.....);
    }

现在在每个类中使用它:

   SerialPortClass.Instance.Write();