“SensorMotion.getRoll()”的版本间的差异

来自Microduino Wikipedia
跳转至: 导航搜索
(创建页面,内容为“ <p style="color: #666666;font-size:220%">'''SensorMotion.getRoll()'''</p> <br> <p style="color: #E87E05;font-size:135%">'''作用'''</p> 获取姿态传感器滚…”)
 
第11行: 第11行:
  
 
<p style="color: #E87E05;font-size:135%">'''返回值'''</p>
 
<p style="color: #E87E05;font-size:135%">'''返回值'''</p>
姿态传感器滚转值
+
姿态传感器滚转值,范围-180°~+180°
  
  

2018年5月17日 (四) 08:18的版本

SensorMotion.getRoll()


作用

获取姿态传感器滚转值


参数

返回值

姿态传感器滚转值,范围-180°~+180°


示例

#include <Microduino_sensorMotion.h>

sensorMotion mpu6050;

void setup()
{
  //串口初始化
  Serial.begin(115200);
  mpu6050.begin();
}

void loop()
{
  Serial.print("Roll: ");
  Serial.println(mpu6050.getRoll());
  delay(10);
}



【返回Sensor-Motion_Reference页面】