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

相关文章

Python获取C++中返回的char*字段的两种思路

《Python获取C++中返回的char*字段的两种思路》有时候需要获取C++函数中返回来的不定长的char*字符串,本文小编为大家找到了两种解决问题的思路,感兴趣的小伙伴可以跟随小编一起学习一下... 有时候需要获取C++函数中返回来的不定长的char*字符串,目前我找到两种解决问题的思路,具体实现如下:

C++ Sort函数使用场景分析

《C++Sort函数使用场景分析》sort函数是algorithm库下的一个函数,sort函数是不稳定的,即大小相同的元素在排序后相对顺序可能发生改变,如果某些场景需要保持相同元素间的相对顺序,可使... 目录C++ Sort函数详解一、sort函数调用的两种方式二、sort函数使用场景三、sort函数排序

Java调用C++动态库超详细步骤讲解(附源码)

《Java调用C++动态库超详细步骤讲解(附源码)》C语言因其高效和接近硬件的特性,时常会被用在性能要求较高或者需要直接操作硬件的场合,:本文主要介绍Java调用C++动态库的相关资料,文中通过代... 目录一、直接调用C++库第一步:动态库生成(vs2017+qt5.12.10)第二步:Java调用C++

C/C++错误信息处理的常见方法及函数

《C/C++错误信息处理的常见方法及函数》C/C++是两种广泛使用的编程语言,特别是在系统编程、嵌入式开发以及高性能计算领域,:本文主要介绍C/C++错误信息处理的常见方法及函数,文中通过代码介绍... 目录前言1. errno 和 perror()示例:2. strerror()示例:3. perror(

Linux中的计划任务(crontab)使用方式

《Linux中的计划任务(crontab)使用方式》:本文主要介绍Linux中的计划任务(crontab)使用方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、前言1、linux的起源与发展2、什么是计划任务(crontab)二、crontab基础1、cro

C++变换迭代器使用方法小结

《C++变换迭代器使用方法小结》本文主要介绍了C++变换迭代器使用方法小结,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 目录1、源码2、代码解析代码解析:transform_iterator1. transform_iterat

详解C++中类的大小决定因数

《详解C++中类的大小决定因数》类的大小受多个因素影响,主要包括成员变量、对齐方式、继承关系、虚函数表等,下面就来介绍一下,具有一定的参考价值,感兴趣的可以了解一下... 目录1. 非静态数据成员示例:2. 数据对齐(Padding)示例:3. 虚函数(vtable 指针)示例:4. 继承普通继承虚继承5.

C++中std::distance使用方法示例

《C++中std::distance使用方法示例》std::distance是C++标准库中的一个函数,用于计算两个迭代器之间的距离,本文主要介绍了C++中std::distance使用方法示例,具... 目录语法使用方式解释示例输出:其他说明:总结std::distance&n编程bsp;是 C++ 标准

Linux换行符的使用方法详解

《Linux换行符的使用方法详解》本文介绍了Linux中常用的换行符LF及其在文件中的表示,展示了如何使用sed命令替换换行符,并列举了与换行符处理相关的Linux命令,通过代码讲解的非常详细,需要的... 目录简介检测文件中的换行符使用 cat -A 查看换行符使用 od -c 检查字符换行符格式转换将

Linux系统配置NAT网络模式的详细步骤(附图文)

《Linux系统配置NAT网络模式的详细步骤(附图文)》本文详细指导如何在VMware环境下配置NAT网络模式,包括设置主机和虚拟机的IP地址、网关,以及针对Linux和Windows系统的具体步骤,... 目录一、配置NAT网络模式二、设置虚拟机交换机网关2.1 打开虚拟机2.2 管理员授权2.3 设置子