- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将 Arduino 和 Python 3.4 与 pySerial 一起使用,并试图通过串行通信发送多个字节,但由于我的代码正在运行,所以我遇到了问题,但是我在某些地方用于调试目的的打印语句正在输出字符串,我我没有期待。我已经尝试编写此代码的简化版本并且它可以正常工作,所以我不确定我做错了什么!此外,为了解决这个问题,我加入了一个 if 语句,这大大降低了代码速度。非常感谢任何有关如何简化代码以提高速度和/或如何发送和接收正确数据的建议!
python :
#sources:
#http://stackoverflow.com/questions/676172/full-examples-of-using-pyserial-package for more info
#http://pyserial.sourceforge.net/pyserial_api.html
import serial
import time
#sets the connection parameters, relook at when know more
ser = serial.Serial(
port ='COM4',
baudrate = 9600,
parity = serial.PARITY_ODD,
stopbits = serial.STOPBITS_TWO,
bytesize = serial.EIGHTBITS,
timeout = 5
)
def decToPercent (decimal):
#maps value from 0-1 to 0-255 and makes into an interger, then to hex
intPercent = round(decimal*255)
return intPercent
ser.isOpen() #returns true?
firstContact = False
inByte = 0
wrist = 0.9 #setup of variables which I will get from dictionary of other code once integrate
elbow = 0 #assuming variables will be included in (0-1)
wristPerc = decToPercent(wrist)
elbowPerc = decToPercent(elbow)
forceBytes = bytearray([wristPerc, elbowPerc]) #puts the motor values into an array as hex
print(forceBytes)
#set up initial contact with the arduino
inByte = ser.read(1)
print(inByte)
while True:
if (firstContact == False):
if inByte == b'A' :
firstContact = True
ser.write('a'.encode())
inByte = ser.read(1)
else:
ser.write(forceBytes)
time.sleep(0.05)
print(ser.readline())
最初我让代码开始,并在使用这段代码后返回整个 while 语句,但我把它去掉了,因为我认为它使代码流稍微弄乱了输出:
#starts the process over again, clears so that have time to get information
firstContact = False
inByte = ser.read(1)
print(inByte)
Arduino 代码:
//See Arduino Cookbook chapter 4 for info on sending and recieving multiple messages in one
//See example of serial call response for strategy on how to process information faster
int motorPinLeft = 10;
int motorPinRight = 11;
int motorSpeedLeft = 0;
int motorSpeedRight = 0;
int fieldIndex = 1;
char values[2]; //array holding values for the fields we expect
char newByte = 0;
void setup() {
pinMode(motorPinLeft, OUTPUT);
pinMode(motorPinRight, OUTPUT);
Serial.begin(9600);
while(!Serial){}; //waits for arduino to be ready, not neaded for duo
establishContact();
}
void loop()
{
while (Serial.available()>0) //checks to see if anything needs to be sent,
{ //denoted by recieveing signal from pySerial
char inByte = Serial.read();
switch (inByte)
{
case 97:
inByte = 0;
break;
default:
values[0] = inByte;
//could just call Serial.read and asign 2nd byte, but loop allows to send more variables later
if (fieldIndex < 2)
{
newByte = Serial.read();
values[fieldIndex] = newByte;
fieldIndex++;
}
else
{
Serial.print(values[0], DEC); //debugging purposes
Serial.print(values[1], DEC);
motorSpeedLeft = values[0];
motorSpeedRight = values[1];
//Serial.print(motorSpeedLeft);
//Serial.print(motorSpeedRight);
analogWrite(motorPinLeft, motorSpeedLeft);
analogWrite(motorPinRight, motorSpeedRight);
delay(3000); // to make the motor vibrate for 1 second
motorSpeedRight = 0;
motorSpeedLeft = 0;
analogWrite(motorPinLeft, motorSpeedLeft);
analogWrite(motorPinRight, motorSpeedRight);
delay(1000);
}
}
//Serial.print('A');
}
}
//allows arduino to be ready before pySerial sends any messages
void establishContact()
{
while (Serial.available()<=0)
{
Serial.print('A');
delay(300);
}
}
输出:
bytearray('b\xb2\x00')
b'A'
b'0K\xfe'
b'-\x13j10k\xfe'
b'-\x13j10k\xfe'
每次出现打印语句时我的电机都在运行,所以我不确定是否只是我的打印语句出错,而不是实际的串行通信?
我不确定的另一件事是,在我的 arduino 代码中的 switch-case 语句中,我使用的是 'a' (97) 的 ascii 代码,而不是实际放置 'a'。两者都应该有效吗?
最佳答案
经过更多的折腾,我得到了通过在 arduino 代码中从 Serial.print() 切换到 Serial.write() 来打印出正确输出的代码,因为我很确定这是主要问题,我回到我的原始代码,没有 if 语句来减少运行代码所需的时间。我确实在打印出两个输出时遇到了一些麻烦,但是通过放置:
delay(10)
在 Serial.write 语句之间,它解决了这个问题。
关于python - 通过串行通信发送多个字节,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30604257/
美好的一天!我试图添加两个字节变量并注意到奇怪的结果。 byte valueA = 255; byte valueB = 1; byte valueC = (byte)(valueA + valueB
嗨,我是 swift 的新手,我正在尝试解码以 [Byte] 形式发回给我的字节数组?当我尝试使用 if let string = String(bytes: d, encoding: .utf8)
我正在使用 ipv4 和 ipv6 存储在 postgres 数据库中。 因为 ipv4 需要 32 位(4 字节)而 ipv6 需要 128(16 字节)位。那么为什么在 postgres 中 CI
我很好奇为什么 Go 不提供 []byte(*string) 方法。从性能的角度来看,[]byte(string) 不会复制输入参数并增加更多成本(尽管这看起来很奇怪,因为字符串是不可变的,为什么要复
我正在尝试为UDP实现Stop-and-Wait ARQ。根据停止等待约定,我在 0 和 1 之间切换 ACK。 正确的 ACK 定义为正确的序列号(0 或 1)AND消息长度。 以下片段是我的代码的
我在下面写了一些代码,目前我正在测试,所以代码中没有数据库查询。 下面的代码显示 if(filesize($filename) != 0) 总是转到 else,即使文件不是 0 字节而是 16 字节那
我使用 Apache poi 3.8 来读取 xls 文件,但出现异常: java.io.IOException: Unable to read entire header; 0 by
字典大小为 72 字节(根据 getsizeof(dict) 在字典上调用 .clear() 之后发生了什么,当新实例化的字典返回 240 字节时? 我知道一个简单的 dict 的起始大小为“8”,并
我目前正在努力创建一个函数,它接受两个 4 字节无符号整数,并返回一个 8 字节无符号长整数。我试图将我的工作基于 this research 描述的方法,但我的所有尝试都没有成功。我正在处理的具体输
看看这个简单的程序: #include using namespace std; int main() { unsigned int i=0x3f800000; float* p=(float*)(
我创建了自己的函数,将一个字符串转换为其等效的 BCD 格式的 bytes[]。然后我将此字节发送到 DataOutputStram (使用需要 byte[] 数组的写入方法)。问题出在数字字符串“8
此分配器将在具有静态内存的嵌入式系统中使用(即,没有可用的系统堆,因此“堆”将只是“char heap[4096]”) 周围似乎有很多“小型内存分配器”,但我正在寻找能够处理非常小的分配的一个。我说的
我将数据库脚本从 64 位系统传输到 32 位系统。当我执行脚本时,出现以下错误, Warning! The maximum key length is 900 bytes. The index 'U
想知道 128 字节 ext2 和 256 字节 ext3 文件系统之间的 inode 数据结构差异。 我一直在为 ext2、128 字节 inode 使用此引用:http://www.nongnu.
我试图理解使用 MD5 哈希作为 Cassandra key 在“内存/存储消耗”方面的含义: 我的内容(在 Java 中)的 MD5 哈希 = byte[] 长 16 个字节。 (16 字节来自维基
检查其他人是否也遇到类似问题。 shell脚本中的代码: ## Convert file into Unix format first. ## THIS is IMPORTANT. ###
我们有一个测量数据处理应用程序,目前所有数据都保存为 C++ float,这意味着在我们的 x86/Windows 平台上为 32 位/4 字节。 (32 位 Windows 应用程序)。 由于精度成
我读到在 Java 中 long 类型可以提升为 float 和 double ( http://www.javatpoint.com/method-overloading-in-java )。我想问
我有一个包含 n 个十进制元素的列表,其中每个元素都是两个字节长。 可以说: x = [9000 , 5000 , 2000 , 400] 这个想法是将每个元素拆分为 MSB 和 LSB 并将其存储在
我使用以下代码进行 AES-128 加密来编码一个 16 字节的 block ,但编码值的长度给出了 2 个 32 字节的 block 。我错过了什么吗? plainEnc = AES.enc
我是一名优秀的程序员,十分优秀!