“SensorMotion()”的版本间的差异
Machine1987(讨论 | 贡献) |
Machine1987(讨论 | 贡献) |
||
第27行: | 第27行: | ||
</pre> | </pre> | ||
+ | <br> | ||
+ | <p style="color: #E87E05;font-size:135%">其他</p> | ||
+ | *[[sensorMotion.begin()|begin()]] | ||
+ | *[[sensorMotion.getData()|getData()]] | ||
+ | *[[sensorMotion.setFullScaleGyroRange()|setFullScaleGyroRange()]] | ||
+ | *[[sensorMotion.setFullScaleAccelRange()|setFullScaleAccelRange()]] | ||
+ | <br> | ||
[[https://wiki.microduino.cn/index.php/Sensor-Motion/zh 返回Sensor_Motion语法手册]] | [[https://wiki.microduino.cn/index.php/Sensor-Motion/zh 返回Sensor_Motion语法手册]] |
2017年7月27日 (四) 03:34的最新版本
针对软、硬串口有不同的函数定义 sensorMotion(SoftwareSerial *ser); sensorMotion(HardwareSerial *ser);
- 作用:
Sensor_Motion库的构造函数
- 参数:
- ser:串口指针
- 例子:这里以硬串口通讯为例
#include <Sensor_Motion.h> sensorMotion motion(&Serial1); void setup(){ } void loop(){ }
其他