当前位置:   article > 正文

openmv 与arduino 第一次通信_openmv 与arduino使用json通信

openmv 与arduino使用json通信

openmv 与 arduino 第一次 通信成功
几个笔记

mv代码
···

import sensor, image, time
import json
from pyb import UART


sensor.reset() # Initialize the camera sensor.
sensor.set_pixformat(sensor.RGB565) # use RGB565.
sensor.set_framesize(sensor.QQVGA) # use QQVGA for speed.
sensor.skip_frames(10) # Let new settings take affect.
sensor.set_auto_whitebal(False) # turn this off.
clock = time.clock() # Tracks FPS.

uart = UART(3, 9600)

while(True):
   clock.tick() # Track elapsed milliseconds between snapshots().
   img = sensor.snapshot() # Take a picture and return the image.
   img.lens_corr(1.5)
   for code in img.find_qrcodes():
       message = code.payload()
       uart.write(message)
       print(code)
   else:
       print("not found!")
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24

在这里插入图片描述

arduino代码

#include <SoftwareSerial.h>
SoftwareSerial mySerial(10,11);//RX=2,TX=3 

void setup() 
{
  
//硬件串口波特率
Serial.begin(9600);
//软件串口波特率
mySerial.begin(9600);
pinMode(7, OUTPUT); 
} 
void loop()
{ 
  
//如果硬件串口有数据
if(Serial.available())
{
//从硬件串口读出一字节,写入软件串口
mySerial.write(Serial.read());

if(Serial.read()==123)
{
digitalWrite(7, HIGH);
}
}
//如果软件串口有数据
if(mySerial.available())
{
//从软件串口读出一字节,写入硬件串口
Serial.write(mySerial.read());
}

}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/天景科技苑/article/detail/997910
推荐阅读
相关标签
  

闽ICP备14008679号