第1步:需要什么
LattePanda/Arduino UNO
軟件
Viusal Studio
Arduino IDE
步驟2:C#代碼
創建一個新的Windows Form項目。在左側的工具箱中,從工具箱中拖出2個按鈕組件。重命名它們,一個為“ ON”,一個為“ OFF”。
public partial class Form1 : Form
{
SerialPort port;
public Form1()
{
InitializeComponent();
this.FormClosed += new FormClosedEventHandler(Form1_FormClosed);
if (port == null)
{
//Change the portname according to your computer
port = new SerialPort(“COM4”, 9600);
port.Open();
}
}
void Form1_FormClosed(object sender, FormClosedEventArgs e)
{
if (port != null && port.IsOpen)
{
port.Close();
}
}
private void button1_Click(object sender, EventArgs e)
{
PortWrite(“1”);
}
private void button2_Click(object sender, EventArgs e)
{
PortWrite(“0”);
}
private void PortWrite(string message)
{
if (port != null && port.IsOpen)
{
port.Write(message);
}
}
}
第3步:Arduino Sketch
打開Arduino IDE,將以下代碼上傳到您的電路板上。
const int LedPin = 3;int ledState = 0;
void setup()
{
pinMode(LedPin, OUTPUT);
Serial.begin(9600);
}
void loop()
{
char receiveVal;
if(Serial.available() 》 0)
{
receiveVal = Serial.read();
if(receiveVal == ‘1’)
ledState = 1;
else
ledState = 0;
}
digitalWrite(LedPin, ledState);
delay(50);
}
步驟4:Showtime
當您單擊“打開”時‘按鈕,LED燈將點亮。
到目前為止還好嗎?
如果您用其他東西代替LED,那么您可以使用鼠標來控制一切!這是一個非常有用的功能。
-
GUI
+關注
關注
3文章
650瀏覽量
39553 -
Arduino
+關注
關注
187文章
6464瀏覽量
186676
發布評論請先 登錄
相關推薦
評論