ESP32使用mpu6050以及pid调参

pid

//pid参考教程  https://www.xpstem.com/article/10120
#include <MPU6050_tockn.h>
#include <Wire.h>MPU6050 mpu6050(Wire);// pid相关参数
unsigned long lastTime;
double Input, Output, Setpoint;
double ITerm, lastInput;
double kp, ki, kd;
int SampleTime = 1000; //1秒
double outMin,outMax;void setup() {Serial.begin(115200);delay(5000);Wire.begin();mpu6050.begin();mpu6050.calcGyroOffsets(true);// pid初始化Setpoint = 0; //设置目标值SetTunings(15,0.3,0);  //设置kp ki kd 参数SetSampleTime(50);//设置采样时间  毫秒SetOutputLimits(-255,255); //设置输出的最大最小值
}void loop() {mpu6050.update();// Serial.print("angleX : ");// Serial.print(mpu6050.getAngleX());Serial.print("\tangleY : ");Serial.println(mpu6050.getAngleY());// Serial.print("\tangleZ : ");// Serial.println(mpu6050.getAngleZ());Input = mpu6050.getAngleY(); //设置 输入值Compute();//计算Serial.println(Output);//输出
}//pid计算 Output输出值的范围在 -255--255
void Compute()
{/*How long since we last calculated*/unsigned long now = millis();int timeChange = (now-lastTime);if(timeChange >= SampleTime){double error = Setpoint - Input;ITerm += (ki*error);if(ITerm > outMax) ITerm = outMax;else if(ITerm < outMin) ITerm = outMin;double dInput =(Input-lastInput);Output = kp * error + ITerm - kd * dInput;if(Output > outMax) Output = outMax;else if(Output < outMin) Output = outMin;lastInput = Input;lastTime = now;} 
}
// 设置kp ki kd参数值
void SetTunings(double Kp, double Ki, double Kd)
{double SampleTimeInSec = ((double)SampleTime)/1000;kp = Kp;ki = Ki*SampleTimeInSec;kd = Kd/SampleTimeInSec;
}
// 设置采样时间
void SetSampleTime(int NewSampleTime)
{if(NewSampleTime >0){double ratio = (double)NewSampleTime/(double)SampleTime;ki *= ratio;kd /= ratio;SampleTime = (unsigned long)NewSampleTime;}
}
// 设置输出值的范围
void SetOutputLimits(double Min,double Max)
{if(Min >Max) return;outMin = Min;outMax = Max;if(Output >outMax ) Output = outMax;else if (Output <outMin) Output = outMin;if(ITerm >outMax) ITerm = outMax;else if(ITerm < outMin) ITerm = outMin;
}/*
#include <MPU6050_tockn.h>
#include <Wire.h>MPU6050 mpu6050(Wire);long timer = 0;void setup() {Serial.begin(115200);Wire.begin();mpu6050.begin();mpu6050.calcGyroOffsets(true);delay(5000);
}void loop() {mpu6050.update();if(millis() - timer > 1000){Serial.println("=======================================================");Serial.print("temp : ");Serial.println(mpu6050.getTemp());Serial.print("accX : ");Serial.print(mpu6050.getAccX());Serial.print("\taccY : ");Serial.print(mpu6050.getAccY());Serial.print("\taccZ : ");Serial.println(mpu6050.getAccZ());Serial.print("gyroX : ");Serial.print(mpu6050.getGyroX());Serial.print("\tgyroY : ");Serial.print(mpu6050.getGyroY());Serial.print("\tgyroZ : ");Serial.println(mpu6050.getGyroZ());Serial.print("accAngleX : ");Serial.print(mpu6050.getAccAngleX());Serial.print("\taccAngleY : ");Serial.println(mpu6050.getAccAngleY());Serial.print("gyroAngleX : ");Serial.print(mpu6050.getGyroAngleX());Serial.print("\tgyroAngleY : ");Serial.print(mpu6050.getGyroAngleY());Serial.print("\tgyroAngleZ : ");Serial.println(mpu6050.getGyroAngleZ());Serial.print("angleX : ");Serial.print(mpu6050.getAngleX());Serial.print("\tangleY : ");Serial.print(mpu6050.getAngleY());Serial.print("\tangleZ : ");Serial.println(mpu6050.getAngleZ());Serial.println("=======================================================\n");timer = millis();}}
*/

串口调参

#include <Arduino.h>
//串口输入字符串的模式  10,0.01,0   中间使用,间隔
double pid_array[] ={10,0.01,0};  //申明一个数组  分别存放 kp  ki  kd 的值void setup() {Serial.begin(115200);
}void loop() {String inString="";while(Serial.available()>0){inString += char(Serial.read());delay(10);      // 延时函数用于等待字符完全进入缓冲区}// 检查是否接收到数据,如果接收到数据,则输出该数据if(inString!=""){Serial.print("Input String:");Serial.println(inString);       //Input String:10,0.01,0char *ptr = strtok(const_cast<char*>(inString.c_str()),",");   // string转化为char* 使用   const_cast<char*>(inString.c_str())int i = 0;while(ptr != NULL){Serial.println(ptr);String tmp_str = ptr;    //char*转化为stringpid_array[i] = tmp_str.toDouble();i++;ptr = strtok(NULL,",");}SetTunings(pid_array[0],pid_array[1],pid_array[2]);}
}// 设置kp ki kd参数值
void SetTunings(double Kp, double Ki, double Kd)
{Serial.print("kp=");Serial.print(Kp);Serial.print("\t ki=");Serial.print(Ki);Serial.print("\t kd=");Serial.println(Kd);    //kp=10.00	 ki=0.01	 kd=0.00// double SampleTimeInSec = ((double)SampleTime)/1000;//  kp = Kp;//  ki = Ki*SampleTimeInSec;//  kd = Kd/SampleTimeInSec;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/193578.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

HTML知识点梳理

em 自动适应用户所使用的字体。元素像素就是指px dp 虚拟像素&#xff0c;在不同的像素密度的设备上会自动适配 align只能用于div &#xff0c;align直接写在是div的属性 &#xff0c;text-align则是Css的属性 &#xff0c;两个属性使用的地方不一样&#xff0c;但是作用一样…

模板可变参数/包装器

一、什么是模板可变参数 1、对比函数可变参数 可变参数即参数的数量是不确定的&#xff0c;底层根据用户传入的数量&#xff0c;开一个数组存储对应的参数。 2、基本形式 args -- argument 参数 [0,n]个参数 // Args是一个模板参数包&#xff0c;args是一个函数形参参数包…

liunx常用指令之清空文件内容

ChatGPT国内站点&#xff1a;海鲸AI 在Linux系统中&#xff0c;可以使用以下命令清空文件内容&#xff1a; 使用重定向符号>将一个空字符串写入文件&#xff0c;这将覆盖文件的内容&#xff1a; > filename使用echo命令将空字符串写入文件&#xff0c;也会清空文件内容&a…

课题学习(十四)----三轴加速度计+三轴陀螺仪传感器-ICM20602

本篇博客对ICM20602芯片进行学习&#xff0c;目的是后续设计一个电路板&#xff0c;采集ICM20602的数据&#xff0c;通过这些数据对各种姿态解算的方法进行仿真学习。 一、 ICM20602介绍 1.1 初识芯片 3轴陀螺仪&#xff1a;可编程全刻度范围(FSR)为250 dps&#xff0c;500 d…

JavaWeb(四)

一、约束的概念和分类 约束是作用于表中列上的规则&#xff0c;用于限制加入表的数据&#xff0c;约束的存在保证了数据库中数据的正确性、有效性和完整性。 1.1、单表约束 利用约束创建表 需要注意的是: 1、主键是一行数据的唯一标识&#xff0c;要求非空且唯一。一张表只能…

使用wininet下载一个网页

WinInet基础知识 | Microsoft Learn //this code excerpt also demonstrates try/catch exception handling #include <afxinet.h> void DisplayHttpPage(LPCTSTR pszServerName, LPCTSTR pszFileName) { CInternetSession session(_T("My Session")); …

Ubuntu20.04安装ROS2

官方参考文章 Ubuntu (Debian) — ROS 2 Documentation: Foxy documentation curl密钥问题 sudo curl -sSL https://raw.githubusercontent.com/ros/rosdistro/master/ros.key -o /usr/share/keyrings/ros-archive-keyring.gpg curl: (7) Failed to connect to raw.githubus…

DNA模糊匹配(动态规划)

我做动态规划还是少的 只会做那些显而易见的动态规划题&#xff08;这题是看了给出来的解题思路做的&#xff09; 以后可能就会做与这类似的了 代码如下&#xff1a; #include<stdio.h> #include<string.h> int get_min(int a, int b, int c); int min_l[301][…

R语言gWQS包在加权分位数和回归模型的应用

在流行病学研究中&#xff0c;相较于单一因素的暴露&#xff0c;多因素同时暴露的情况更为常见。传统模型在评价多因素联合暴露时存在数据维度高、多重共线性等问题. WQS 回归模型的基本原理是通过分位数间距及加权的方法&#xff0c;将多种研究因素的效应综合成为一个指数&…

LLM大语言模型(一):ChatGLM3-6B试用

前言 LLM大语言模型工程化&#xff0c;在本地搭建一套开源的LLM&#xff0c;方便后续的Agent等特性的研究。 本机环境 CPU&#xff1a;AMD Ryzen 5 3600X 6-Core Processor Mem&#xff1a;32GB GPU&#xff1a;RTX 4060Ti 16G ChatGLM3代码库下载 # 下载代码库 ​git c…

java后端自学错误总结

java后端自学错误总结 MessageSource国际化接口总结 MessageSource国际化接口 今天第一次使用MessageSource接口,比较意外遇到了一些坑 messageSource是spring中的转换消息接口&#xff0c;提供了国际化信息的能力。MessageSource用于解析 消息&#xff0c;并支持消息的参数化…

【中文编码】利用bert-base-chinese中的Tokenizer实现中文编码嵌入

最近接触文本处理&#xff0c;查询了一些资料&#xff0c;记录一下中文文本编码的处理方法吧。   先下载模型和词表&#xff1a;bert-base-chinese镜像下载   如下图示&#xff0c;下载好的以下文件均存放在 bert-base-chinese 文件夹下    1. 词编码嵌入简介 按我通俗的…

编程实战:类C语法的编译型脚本解释器(三)插件(自定义函数)接口

系列入口&#xff1a; 编程实战&#xff1a;类C语法的编译型脚本解释器&#xff08;系列&#xff09;-CSDN博客 本文讲解插件&#xff08;自定义函数&#xff09;的接口。 下文中的“插件”和“自定义函数”是两个概念&#xff1a; “插件” 提供自定义函数功能的类&#xff…

基于SpringBoot的公益慈善平台

✌全网粉丝20W,csdn特邀作者、博客专家、CSDN新星计划导师、java领域优质创作者,博客之星、掘金/华为云/阿里云/InfoQ等平台优质作者、专注于Java技术领域和毕业项目实战✌ &#x1f345;文末获取项目下载方式&#x1f345; 一、项目背景介绍&#xff1a; 基于SpringBoot的公益…

华为OD机试真题-最长子字符串的长度(一)-2023年OD统一考试(C卷)

题目描述&#xff1a; 给你一个字符串 s&#xff0c;字符串s首尾相连成一个环形 &#xff0c;请你在环中找出 o 字符出现了偶数次最长子字符串的长度。 输入描述&#xff1a; 输入是一串小写字母组成的字符串 输出描述&#xff1a; 输出是一个整数 补充说明&#xff1a; 1 <…

用Python实现石头剪刀布的游戏(扩展)

剪刀石头布是一种划拳游戏&#xff0c;规则是剪刀赢布&#xff0c;布赢石头&#xff0c;石头赢剪刀。假设使用3个整数0、1、2来分别代表石头、剪刀、布。每一局中&#xff0c;计算机随机生成3个整数0、1、2中的一个&#xff0c;用户使用键盘输入0、1、2中的一个整数&#xff0c…

arcgis导出某个属性的栅格

选中栅格特定属性想要导出时&#xff0c;无法选中“所选图形” 【方法】spatial analyst 工具——提取分析——按属性提取

C++笔试训练day_1

文章目录 选择题编程题 选择题 编程题 #include <iostream> #include <algorithm> #include <vector>using namespace std;int main() {int n 0;cin >> n;vector<int> v;v.resize(3 * n);int x 0;for(int i 0; i < v.size(); i){cin >&…

删除容器挂载卷打包容器镜像并传到阿里云

简单记录下打包上传的全过程&#xff0c;补充docker知识&#xff0c;利用阿里云进行docker镜像共享开发。 阿里云登录 sudo docker login --usernameyouxiangyouxiang.com registry.cn-hangzhou.aliyuncs.com这个登录密码可以在容器镜像服务/实例列表/镜像仓库页面左侧tab下的…

【Java基础篇 | 面向对象】—— 聊聊什么是多态(下篇)

个人主页&#xff1a;兜里有颗棉花糖 欢迎 点赞&#x1f44d; 收藏✨ 留言✉ 加关注&#x1f493;本文由 兜里有颗棉花糖 原创 收录于专栏【JavaSE_primary】 本专栏旨在分享学习JavaSE的一点学习心得&#xff0c;欢迎大家在评论区讨论&#x1f48c; 目录 一、动态绑定和静态绑…