Linux-MDK can电机带导轨 C++封装

2024-03-19 13:12
文章标签 c++ linux 封装 mdk 电机 导轨

本文主要是介绍Linux-MDK can电机带导轨 C++封装,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

我使用的是MKS的52D can电机带导轨,现在我要根据电机说明书将运动指令封装,有一个限位开关, 闭合时高电平

滑块需要运动在限位开关左侧,所以限位归零的方向为顺时针

根据说明书,我要设置的命令应该是:

cansend can0 001#900100004001D3

将滑块运动到适当位置,执行限位归零命令 :

cansend can0 001#9192

滑块就会回到限位开关的位置了

但是限位归零后,再给电机发送命令它就没有反应了;原因是我设置的归零方向是顺时针,所以电机只能向逆时针方向运动了...这应该是电机问题了,先放一边

我直接用按照脉冲数相对运动封装运动控制

采用C++编写代码

#include <iostream>
#include <sstream>
#include <iomanip>
#include <string>// Function to convert integer to a zero-padded hexadecimal string
std::string intToHex(int value, int width) {std::stringstream stream;stream << std::setfill('0') << std::setw(width) << std::hex << value;return stream.str().substr(0, width); // Ensure the string is of the correct width
}// Function to calculate checksum
std::string calculateChecksum(const std::string &command) {int sum = 1; // Starting with the value of byte 1 (01)for (int i = 0; i < command.length(); i += 2) {std::string byteString = command.substr(i, 2);sum += std::stoi(byteString, nullptr, 16);}return intToHex(sum % 256, 2);
}int main(int argc, char *argv[]) {if (argc != 2) {std::cout << "Usage: " << argv[0] << " <number of rotations>\n";return 1;}const int stepsPerRotation = 16; // Assuming 16 steps per rotation// Convert rotations to steps and then to hexadecimalint rotations = std::stoi(argv[1]);int steps = rotations * stepsPerRotation;std::string stepsHex = intToHex(steps, 4); // Convert steps to 4-character hexadecimal// Construct the CAN commandstd::string command = "FD014002" + stepsHex + "00"; // Assuming the steps need to be placed in the middle// Calculate checksumstd::string checksum = calculateChecksum(command);// Complete CAN commandstd::string canCommand = "cansend can0 001#" + command + checksum;// Print and execute the CAN commandstd::cout << "Executing command: " << canCommand << std::endl;system(canCommand.c_str());return 0;
}

执行为可编译文件

g++ test.cpp -o thefirst

代码分析

//其功能是将一个整数(int)转换成它的十六进制(hex)字符串表示,并确保字符串的宽度(长度)为指定的宽度。
std::string intToHex(int value, int width) {//创建一个stringstream对象stream。stringstream是C++中一种方便的流类,用于字符串的格式化            操作std::stringstream stream;//std::setfill('0')设置填充字符为'0',std::setw(width)设置字段宽度为width,std::hex设置流的格式为十六进制,最后value是要转换的整数值。stream << std::setfill('0') << std::setw(width) << std::hex << value;//stream.str()将流内容转换为字符串。然后,substr(0, width)函数从这个字符串的开头开始截取长度为width的子字符串。这是为了确保即使生成的字符串长度超过了width,也只返回长度为width的部分。return stream.str().substr(0, width);
}
//它的功能是计算输入字符串的校验和,具体实现方法是将字符串中的每两个字符视为一个16进制数,然后求和,最后将和转换为两个字符的16进制数。
std::string calculateChecksum(const std::string &command) {int sum = 1;    //在指令中001就是电机的ID,不会变for (int i = 0; i < command.length(); i += 2) {//使用substr方法从command中提取两个字符(从索引i开始)。这两个字符被视为一个16进制的字节,并存储在byteString字符串中。std::string byteString = command.substr(i, 2);//将byteString从16进制转换为整数(使用std::stoi函数),并加到sum上。std::stoi函数的第三个参数指定了基数,这里是16,表示输入字符串是16进制的。sum += std::stoi(byteString, nullptr, 16);}return intToHex(sum % 256, 2);
}
int main(int argc, char *argv[]) {//检查命令行参数的数量。如果不等于2(argc是参数总数,包括程序名),则输出使用说明并返回1,表示错误。if (argc != 2) {std::cout << "Usage: " << argv[0] << " <number of rotations>\n";return 1;}//定义细分步数为16const int stepsPerRotation  16;//将命令行中的第二个参数(旋转次数)转换为整数。int rotations = std::atoi(argv[1]);//计算总步骤数,即旋转次数乘以每次旋转的步骤数。int steps = rotations * stepsPerRotation;//将步骤数转换为4字符长的16进制数。std::string stepsHex = inToHex(steps, 4);//其中FD014002和00是固定的命令部分,stepsHex是可变的部分,表示步骤数std::string command = "FD014002" + stepsHex + "00";//计算检验和std::string checksum = calculateChecksum(command);//组合can命令std::string canCommand = "cansend can0 001#" + command + checksum;std::cout << "Executing command: " << canCommand << std::endl;//使用system函数执行命令。canCommand.c_str()将C++字符串转换为C风格的字符串。system(canCommand.c_str());return 0;
}

上面的程序只有旋转次数是可变的,现在修改代码使得速度,加速度,位置都是可变的

#include <iostream>
#include <sstream>
#include <iomanip>
#include <string>
#include <vector>// Function to convert integer to a zero-padded hexadecimal string
std::string intToHex(int value, int width) {std::stringstream stream;stream << std::setfill('0') << std::setw(width) << std::hex << value;return stream.str();
}// Function to calculate checksum
std::string calculateChecksum(const std::vector<int> &bytes_values) {int sum = 0x01 + 0xFD; // Starting sum with the motor ID (01) and function code (FD)for (int value : bytes_values) {sum += value;}return intToHex(sum % 256, 2);
}int main(int argc, char *argv[]) {if (argc != 5) {std::cout << "Usage: " << argv[0] << " <direction (0 for CCW, 1 for CW)> <speed (0-3000)> <acceleration (0-255)> <number of rotations>\n";return 1;}int direction = std::stoi(argv[1]);int speed = std::stoi(argv[2]);int acceleration = std::stoi(argv[3]);int rotations = std::stoi(argv[4]);// Total pulses calculation modified as per the new requirementint totalPulses = rotations * 3200;// Constructing the CAN commandint speedHigh = (speed >> 8) & 0x0F; // Extract high 4 bits of speedif (direction == 0) {speedHigh |= 0x80; // Set high bit for CCW direction}int speedLow = speed & 0xFF;  // Low part of the speedstd::vector<int> bytes_values = {speedHigh, speedLow, acceleration, (totalPulses >> 16) & 0xFF, (totalPulses >> 8) & 0xFF, totalPulses & 0xFF};std::string checksum = calculateChecksum(bytes_values);// Combine all parts into the final CAN command with motor ID and function codestd::string canCommand = "cansend can0 001#FD";for (size_t i = 0; i < bytes_values.size(); ++i) {canCommand += intToHex(bytes_values[i], 2);}canCommand += checksum;// Print and execute the CAN commandstd::cout << "Executing command: " << canCommand << std::endl;system(canCommand.c_str());return 0;
}

上面的代码可以实现用户输入方向,速度,加速度,和旋转次数

这篇关于Linux-MDK can电机带导轨 C++封装的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/826104

相关文章

golang程序打包成脚本部署到Linux系统方式

《golang程序打包成脚本部署到Linux系统方式》Golang程序通过本地编译(设置GOOS为linux生成无后缀二进制文件),上传至Linux服务器后赋权执行,使用nohup命令实现后台运行,完... 目录本地编译golang程序上传Golang二进制文件到linux服务器总结本地编译Golang程序

Linux下删除乱码文件和目录的实现方式

《Linux下删除乱码文件和目录的实现方式》:本文主要介绍Linux下删除乱码文件和目录的实现方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录linux下删除乱码文件和目录方法1方法2总结Linux下删除乱码文件和目录方法1使用ls -i命令找到文件或目录

Linux在线解压jar包的实现方式

《Linux在线解压jar包的实现方式》:本文主要介绍Linux在线解压jar包的实现方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录linux在线解压jar包解压 jar包的步骤总结Linux在线解压jar包在 Centos 中解压 jar 包可以使用 u

linux解压缩 xxx.jar文件进行内部操作过程

《linux解压缩xxx.jar文件进行内部操作过程》:本文主要介绍linux解压缩xxx.jar文件进行内部操作,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、解压文件二、压缩文件总结一、解压文件1、把 xxx.jar 文件放在服务器上,并进入当前目录#

Linux系统性能检测命令详解

《Linux系统性能检测命令详解》本文介绍了Linux系统常用的监控命令(如top、vmstat、iostat、htop等)及其参数功能,涵盖进程状态、内存使用、磁盘I/O、系统负载等多维度资源监控,... 目录toppsuptimevmstatIOStatiotopslabtophtopdstatnmon

c++ 类成员变量默认初始值的实现

《c++类成员变量默认初始值的实现》本文主要介绍了c++类成员变量默认初始值,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 目录C++类成员变量初始化c++类的变量的初始化在C++中,如果使用类成员变量时未给定其初始值,那么它将被

C++中NULL与nullptr的区别小结

《C++中NULL与nullptr的区别小结》本文介绍了C++编程中NULL与nullptr的区别,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编... 目录C++98空值——NULLC++11空值——nullptr区别对比示例 C++98空值——NUL

C++ Log4cpp跨平台日志库的使用小结

《C++Log4cpp跨平台日志库的使用小结》Log4cpp是c++类库,本文详细介绍了C++日志库log4cpp的使用方法,及设置日志输出格式和优先级,具有一定的参考价值,感兴趣的可以了解一下... 目录一、介绍1. log4cpp的日志方式2.设置日志输出的格式3. 设置日志的输出优先级二、Window

在Linux中改变echo输出颜色的实现方法

《在Linux中改变echo输出颜色的实现方法》在Linux系统的命令行环境下,为了使输出信息更加清晰、突出,便于用户快速识别和区分不同类型的信息,常常需要改变echo命令的输出颜色,所以本文给大家介... 目python录在linux中改变echo输出颜色的方法技术背景实现步骤使用ANSI转义码使用tpu

linux hostname设置全过程

《linuxhostname设置全过程》:本文主要介绍linuxhostname设置全过程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录查询hostname设置步骤其它相关点hostid/etc/hostsEDChina编程A工具license破解注意事项总结以RHE