根据Arduino reference


  lowByte提取变量的低位(最右边)字节


如何使用Python(2.7)复制此行为?

最佳答案

lowByte = lambda b: b & 0xff

08-16 01:05