“SensorMotion.getAccelerationRawZ()”的版本间的差异
(创建页面,内容为“ <p style="color: #666666;font-size:220%">'''SensorMotion.getAccelerationRawZ(void)'''</p> <br> <p style="color: #E87E05;font-size:135%">'''作用'''</p> 获取姿…”) |
|||
(未显示同一用户的2个中间版本) | |||
第12行: | 第12行: | ||
<p style="color: #E87E05;font-size:135%">'''返回值'''</p> | <p style="color: #E87E05;font-size:135%">'''返回值'''</p> | ||
− | + | Z轴方向上的加速度,float型变量,单位m/s² | |
第32行: | 第32行: | ||
{ | { | ||
Serial.print("Roll: "); | Serial.print("Roll: "); | ||
− | Serial.println(mpu6050.getAccelerationRawZ | + | Serial.println(mpu6050.getAccelerationRawZ()); |
delay(10); | delay(10); | ||
} | } |
2018年5月21日 (一) 12:13的最新版本
SensorMotion.getAccelerationRawZ(void)
作用
获取姿态传感器Z轴加速度
参数
无
返回值
Z轴方向上的加速度,float型变量,单位m/s²
示例
#include <Microduino_sensorMotion.h>
sensorMotion mpu6050;
void setup()
{
//串口初始化
Serial.begin(115200);
mpu6050.begin();
}
void loop()
{
Serial.print("Roll: ");
Serial.println(mpu6050.getAccelerationRawZ());
delay(10);
}