码迷,mamicode.com
首页 > 其他好文 > 详细

processing与arduino互动编程

时间:2018-05-16 13:13:17      阅读:501      评论:0      收藏:0      [点我收藏+]

标签:serial   inpu   bsp   proc   oid   delay   hardware   串口通信   begin   

Processing向串口发送数据

 1 import processing.serial.*;
 2 Serial port;
 3 String message;
 4 void setup() {
 5   message = "c";
 6   port = new Serial(this, "COM3", 9600);
 7 }
 8 
 9 void draw() {
10   port.write(message);
11 }

arduino连接的是com3,执行程序后Arduino板载的RX灯一直亮起,说明有数据在不停地发送过去。关闭程序后,RX灯熄灭。

2.3Arduino串口编程

通过头文件HardwareSerial.h中定义一个HardwareSerial类的对象serial,然后直接使用类的成员函数来实现的。

Serial.begin()  用于设置串口的比特率,除以8可得到每秒传输的字节数

Serial.end()   停止串口通信

Serial.available()  用来判断串口是否收到数据,该函数返回值为int型,不带参数

示例:从串口输出“The char I havr received:" 字符

 1 int c = 0;
 2 
 3 void setup()
 4 {
 5   Serial.begin(9600);
 6 }
 7 
 8 void loop()
 9 {
10   if (Serial.available()){
11     c = Serial.read();
12     Serial.print("The char I have received:");
13     Serial.println(c, DEC);
14   }
15   delay(200);
16 }

打开Arduino界面的串口监视器,输入任意字符,单片机收到会返回该字符的ASCII码。一次输入多个字符,会返回多个ASCII码。

 

2.4 Process与Arduino通信编程

实例一:在Processing界面上画一个矩形,当用鼠标单击矩形内的时候,Arduino板载的LED灯点亮,单击矩形外的时候,Arduino板载的LED熄灭。

processing代码

 1 import processing.serial.*;
 2 Serial port;
 3 
 4 void setup() {
 5   port = new Serial(this, "COM3", 9600);
 6   size(300, 300);
 7 }
 8 
 9 void draw() {
10   rect(100, 100, 50, 50);
11 }
12 
13 void mouseClicked() {
14   if ((mouseX >= 100) & (mouseX <= 150) & (mouseY >= 100) & (mouseY <= 150)) {
15     println("LED turn ON!");
16     port.write("a");
17   } else {
18     println("LED turn OFF!");
19     port.write("b");
20   }
21 }

Arduino代码

int c = 0;

void setup() {
  Serial.begin(9600);
  pinMode(13, OUTPUT);
  digitalWrite(13, LOW);
}

void loop() {
  if(Serial.available()) {
    c = Serial.read();
    if (c == 97)
      digitalWrite(13, HIGH);
    else
      digitalWrite(13, LOW);
  }
}

 实例二:将一个开关连接到Arduino上的+引脚,信号线连接在D8,长按开关,Processing上的圆形变成红色;松开开关,Processing上的圆变成绿色。初始为绿色。

processing代码:

 1 import processing.serial.*;
 2 Serial myPort;
 3 
 4 void setup() {
 5   size(300, 300);
 6   fill(0, 255, 0);
 7   ellipse(100, 100, 100, 100);
 8   myPort = new Serial(this, "COM3", 9600);
 9 }
10 
11 void draw() {
12   while (myPort.available() > 0) {
13     char inByte = myPort.readChar();
14     println(inByte);
15     switch (inByte) {
16       case a: fill(0, 255, 0);
17                 ellipse(100, 100, 100, 100);
18                 break;
19       case b: fill(255, 0, 0);
20                 ellipse(100, 100, 100, 100);
21                 break;
22       default: break;
23     }
24   }
25 }

Arduino代码:

 1 boolean button;
 2 
 3 void setup() {
 4   button = false;
 5   pinMode (8, INPUT);
 6   Serial.begin(9600);
 7 }
 8 
 9 void loop() {
10   button = digitalRead(8);
11   if (button) {
12     Serial.write("a");
13   } else {
14     Serial.write("b");
15   }
16 }
17     

 

processing与arduino互动编程

标签:serial   inpu   bsp   proc   oid   delay   hardware   串口通信   begin   

原文地址:https://www.cnblogs.com/zlqw/p/9044633.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!