我正在学习python,我需要从套接字解析一些gcode,然后将命令传递给串行端口。我有一些工作,使用选择器。
conn是我的TCP连接,正在接收Gcode。 sbus是我的串行端口。
假设data = b'G0 X1.0 Y2.0 Z0.0;移至X,Y,Z'
这是典型的gcode行。
我的代码在下面的输出是这样的:
1 b'G0
2 X1.0
3 Y2.0
4 Z0.0
因此,它按我的意愿丢弃了评论后的所有内容。
它像我想要的那样丢弃了裸露的b'\ n'。
但是,第一个元素包括b',其他元素不包括。
我对如何摆脱b'感到困惑
我确定我没有以正确的pythonic方式执行此操作,并且我希望对如何处理第一个项目的b'有一些见识(如果没有gcode注释,最后一个项目的末尾有'',我也必须处理)
谢谢
def read(conn, mask):
data = conn.recv(1000) # Should be ready
print(Color.Red, data,Color.end) #debug print, make text red
if data==b'\n': # don't process the slash-n
return
if data:
conn.send(b'ok\r\n') # sends back to openPnP
print('wroteback ok to tcp') # debug print
i=1
for word in repr(data).split(' '):
if word==';':
break
if word=='':
continue
print(i,Color.Green+word+Color.end) # prints each part of gcode line
i=i+1
sbus.write(data) # will actually send translated commands to serial prot, not just echo the data
else:
print('closing', conn)
sel.unregister(conn)
conn.close()
最佳答案
b是字节。它只是告诉您数据类型是字节。这是检查字节和字符串以及如何从一个移到另一个的代码。
b = b'I am a bytes'
s = 'I am a string'
print(type(b), # bytes
type(s), # string
type(b.decode('utf8')), # string
type(s.encode('utf8')) # bytes
)
# change byte to string
b_s = b.decode('utf8')
print(b_s == 'I am a bytes')
# True
# change string to bytes
s_b = s.encode('utf8')
print(s_b == b'I am a string')
# True
关于python - Gcode解析问题? -用于循环字节和字符串,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53625854/