ADXL345 三轴加速度角度传感器

news/2024/11/23 20:53:04/

@[topic]ADXL345 三轴加速度角度传感器目录

ADXL345 三轴加速度角度传感器

简介

这款ADXL345三轴加速度采用ADXL345芯片,具有体积小,功耗低的特点,13位数字精度分辨能够测量超过±16g的加速度变换。信号输出为16位数字输出,可以通过SPI与I2C接口实现信号采集。ADXL345适用于倾斜角度测量,能够进行静态重力加速度检测。同时也适用于运动状态的追踪,测量运动或冲击过程造成的瞬时加速度。其高分辨率(4mg/LSB)使之能够感应变化小于1°的倾斜角度。
DFrobot的ADXL345三轴加速度计还内置一款LDO模块让你的加速度计能够工作于3.3~6v的工作电压之下。同时传感器提供了几个特殊的功能。能够在静态或动态情况下检测是否有运动或停止出现,另外能够感知单轴的加速度值是否超出用户的设定值。检测单击/双击。如果该设备正在下降,能进行自由落体感应检测。这些功能能够被映射到两个中断输出引脚上。在低功耗模式是用户能够基于ADXL345动作感应,进行电源管理,同时只损耗极低的功耗。
另外,我们提供了一些常用的三轴加速度传感器数据处理的方法:How to Use a Three-Axis Accelerometer for Tilt Sensing.

技术规格

工作电压:3.3~6v
超低功耗:测量模式下40uA电流损耗,待机模式下0.1uA@2.5v
通讯接口:I2C、SPI(3线or4线)
接口类型:0.1"插针孔
尺寸:20x15mm

应用

单击/双击检测
自由落体检测
倾角测量
切换横屏/竖屏模式

连线图

ADXL345接线图

ADXL345Arduino
VCC5V / 3V3
GNDGND
CS5V / 3V3
SDOGND
SDAA4
SCLA5

注:该连线方式适用于ADXL345的IIC通讯方式与Uno的通讯。如果您使用其他控制板,IIC管脚可能有所不同,请查阅对应管脚确保连线正确。如需使用ADXL345的SPI通讯模式,请查阅其数据手册。

样例代码

复制以下代码到您的Arduino IDE中并上传。该代码是用来收集传感器三轴加速度值,并计算Roll及Pitch角度信息。

#include <Wire.h>#define DEVICE (0x53)      //ADXL345 device address
#define TO_READ (6)        //num of bytes we are going to read each time (two bytes for each axis)byte buff[TO_READ] ;        //6 bytes buffer for saving data read from the device
char str[512];              //string buffer to transform data before sending it to the serial port
int regAddress = 0x32;      //first axis-acceleration-data register on the ADXL345
int x, y, z;				        //three axis acceleration data
double roll = 0.00, pitch = 0.00;		//Roll & Pitch are the angles which rotate by the axis X and y 
//in the sequence of R(x-y-z),more info visit
// https://www.dfrobot.com/wiki/index.php?title=How_to_Use_a_Three-Axis_Accelerometer_for_Tilt_Sensing#Introductionvoid setup() {Wire.begin();         // join i2c bus (address optional for master)Serial.begin(9600);  // start serial for output//Turning on the ADXL345writeTo(DEVICE, 0x2D, 0);      writeTo(DEVICE, 0x2D, 16);writeTo(DEVICE, 0x2D, 8);
}void loop() {readFrom(DEVICE, regAddress, TO_READ, buff); //read the acceleration data from the ADXL345//each axis reading comes in 10 bit resolution, ie 2 bytes.  Least Significat Byte first!!//thus we are converting both bytes in to one intx = (((int)buff[1]) << 8) | buff[0];   y = (((int)buff[3])<< 8) | buff[2];z = (((int)buff[5]) << 8) | buff[4];//we send the x y z values as a string to the serial portSerial.print("The acceleration info of x, y, z are:");sprintf(str, "%d %d %d", x, y, z);  Serial.print(str);Serial.write(10);//Roll & Pitch calculateRP_calculate();Serial.print("Roll:"); Serial.println( roll ); Serial.print("Pitch:"); Serial.println( pitch );Serial.println("");//It appears that delay is needed in order not to clog the portdelay(50);
}//---------------- Functions
//Writes val to address register on device
void writeTo(int device, byte address, byte val) {Wire.beginTransmission(device); //start transmission to device Wire.write(address);        // send register addressWire.write(val);        // send value to writeWire.endTransmission(); //end transmission
}//reads num bytes starting from address register on device in to buff array
void readFrom(int device, byte address, int num, byte buff[]) {Wire.beginTransmission(device); //start transmission to device Wire.write(address);        //sends address to read fromWire.endTransmission(); //end transmissionWire.beginTransmission(device); //start transmission to deviceWire.requestFrom(device, num);    // request 6 bytes from deviceint i = 0;while(Wire.available())    //device may send less than requested (abnormal){ buff[i] = Wire.read(); // receive a bytei++;}Wire.endTransmission(); //end transmission
}//calculate the Roll&Pitch
void RP_calculate(){double x_Buff = float(x);double y_Buff = float(y);double z_Buff = float(z);roll = atan2(y_Buff , z_Buff) * 57.3;pitch = atan2((- x_Buff) , sqrt(y_Buff * y_Buff + z_Buff * z_Buff)) * 57.3;
}

Micropython示例

from machine import Pin,I2C
import ADXL345
import timei2c = I2C(scl=Pin(22),sda=Pin(21), freq=10000)
adx = ADXL345.ADXL345(i2c)while True:x=adx.xValuey=adx.yValuez=adx.zValueprint('The acceleration info of x, y, z are:%d,%d,%d'%(x,y,z))roll,pitch = adx.RP_calculate(x,y,z)print('roll=',roll)print('pitch=',pitch)time.sleep_ms(50)

结果

打开串口监视窗口,可以看到类似下图的数据,分别为:三轴加速度的数据,按照R-xyz旋转顺序时的Roll及Pitch角。按各轴旋转可以观测到相应的数据变化。


http://www.ppmy.cn/news/872439.html

相关文章

舵机无法控制机械臂旋转,反而自转的问题

学校举办的机器人大赛需要用arduino uno开发板做一辆小车&#xff0c;同时需要我们配套制作一个机械臂安装在上面。 于是我用储存了好久的纸板制作了一个非常简陋的“机械臂”--↑↑↑↑↑ 但我忽略了一个问题&#xff1a; 纸板太重了&#xff0c;舵机运行的时候只能自转&…

倍福--PLC通过功能块读取第三方伺服COE-Online参数,获取的温度、扭矩、驱动器报错代码

本文介绍通过COE功能块添加第三方伺服的温度、扭矩、驱动器报错PDO。 扫描IO 首先扫描IO配置 CoE 接口的驱动器,要在 PLC 程序中修改驱动器参数,可以使用 CoeSDO 通讯的方式 。 CoeSDO 通 讯 的 功 能 块 包 括 FB_EcCoeSdoRead , FB_EcCoeSdoWrite ,FB_EcCoeSdoReadEx ,…

三轴加速度传感器的驱动编程

CSDN话题挑战赛第2期 参赛话题&#xff1a;学习笔记 学习之路&#xff0c;长路漫漫&#xff0c;写学习笔记的过程就是把知识讲给自己听的过程。这个过程中&#xff0c;我们去记录思考的过程&#xff0c;便于日后复习&#xff0c;梳理自己的思路。学习之乐&#xff0c;独乐乐&a…

机器人手眼标定 (四轴六轴都适用)

机器人手眼标定 &#xff08;四轴/六轴都适用&#xff09; 问题解析 ​ 机器人手眼标定分为两种情况&#xff1a;eye-in-hand和eye-to-hand&#xff0c;即传感器是否安装在机器人手抓末端。不管是那种情况&#xff0c;手眼标定的科学问题都是求解AXXD的问题&#xff0c;其中X…

DFIG控制1:转子侧变换器控制

双馈发电机控制1&#xff1a;转子侧变换器控制 软件版本&#xff1a;MATLAB Simulink R2022b 参考资料&#xff1a; DFIM Tutorial 1 - Implementation and Control of a DFIM in Matlab-SimulinkH. Abu-Rub, M. Malinowski, and K. Al-Haddad, Power Electronics for Renewab…

伺服增益调整方法

伺服增益参数调整方法 2012-05-10 11:23:29| 分类&#xff1a; 默认分类 | 标签&#xff1a;伺服 增益 伺服增益 松下 松下电机 |字号大中小 订阅 http://www.autozhaopin.com/bbs/thread-18593-1-1.html 引用地址 首先&#xff0c;机械本身的结构对伺服增益的调整…

基于ESP32四旋翼无人机如何根据PID算法进行电机的PWM duty补偿

1.计算模型 电机位置和补偿输出的关系&#xff0c;需要求解的是C1,C2,C3,C4的电机输出补偿值。分别对应M1,M2,M3,M4四个电机。 2.推导过程&#xff08;可以跳过不看&#xff0c;直接到第三步&#xff09; 3. 四个电机的PID补偿输出的算法如下&#xff1a; C1到C4的值是根据…

伺服增益参数简述及其调整

参考文献 [1] 颜嘉男. 伺服电机应用技术[M]. 第1版. 北京:科学出版社, 2010. [2] 台达. ASDA-B2伺服手册[EB/OL]. [3] 陈国强, Putra A S. 工业自动化中的驱动与控制[M]. 第1版. 北京:机械工业出版社, 2016 :86-105. 相关内容回顾&#xff1a; 伺服电机基本概念解析&#xff1…