2

我正在使用独立的 ATMEGA328P-PU 从 mpu6050 获取加速度计数据并以波特率 115200 发送到串行,并将数据发送到另一个串行(到 HC05 蓝牙模块)。但问题是,有时我会遇到一个奇怪的场景,atmega328p-pu 通过 usb 到 ttl 转换器接受程序,但控制器无法通过串行发送任何数据。hc05蓝牙和usb串口的串口数据都是空白的。任何人都知道任何可能的原因。我正在使用以下代码。

我曾尝试检查 veroboard 上的连接,但这种情况有时会修复,有时会再次出现。

#include <SoftwareSerial.h>
#include "I2Cdev.h" // include the I2Cdev library
#include "MPU6050.h" // include the accelerometer library

SoftwareSerial bt(3,4); /* (Rx,Tx) */
MPU6050 accelgyro;  // set device to MPU6050
int16_t ax, ay, az, gx, gy, gz;  // define accel as ax,ay,az
int baselineX = 0;

void setup() {
  Wire.begin();      // join I2C bus
  Serial.begin(115200);    //  initialize serial communication
  bt.begin(9600);
  accelgyro.initialize();  // initialize the accelerometer
  accelgyro.getMotion6(&ax, &ay, &az, &gx, &gy, &gz);
  baselineX = gz;
}
void loop() {
  // read measurements from device
  sendAverage();
}

long sendAverage() {
  long totalX = 0, totalY = 0, totalZ = 0;
  long X, Y, Z;
  for (int i = 0; i < 20; i++) {
    accelgyro.getMotion6(&ax, &ay, &az, &gx, &gy, &gz);
    totalX = totalX + ax;
    totalY = totalY + ay;
    totalZ = totalZ + az;
    delay(1);
  }
  X = 500+ ((totalX/20)*0.05);
  Y = 500+ ((totalY/20)*0.05);
  Z = 500+ ((totalZ/20)*0.05);

  Serial.print(X);Serial.print(";");
  Serial.print(Y);Serial.print(";");
  Serial.println(Z);

  bt.print(X);bt.print(";");
  bt.print(Y);bt.print(";");
  bt.print(Z);bt.print("#");
}

4

1 回答 1

0

您正在使用SoftwareSerial该类更改串行传输的引脚,但setup()您没有设置两个引脚的属性。如果要通过SoftwareSerial类传输,请添加pinMode

SoftwareSerial bt =  SoftwareSerial(rxPin, txPin);

void setup()  {
  // define pin modes for tx, rx of SoftwareSerial:
  pinMode(3, INPUT);
  pinMode(4, OUTPUT);
  // set the data rate for the SoftwareSerial port
  bt.begin(9600);
}

如需完整参考,请参阅SoftwareSerial.begin 文档页面

于 2019-03-23T12:20:12.850 回答