当前位置: 首页>>代码示例>>Python>>正文


Python Encoder.unpack_response_with_string方法代码示例

本文整理汇总了Python中makerbot_driver.Encoder.unpack_response_with_string方法的典型用法代码示例。如果您正苦于以下问题:Python Encoder.unpack_response_with_string方法的具体用法?Python Encoder.unpack_response_with_string怎么用?Python Encoder.unpack_response_with_string使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在makerbot_driver.Encoder的用法示例。


在下文中一共展示了Encoder.unpack_response_with_string方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_unpack_response_with_string_no_format

# 需要导入模块: from makerbot_driver import Encoder [as 别名]
# 或者: from makerbot_driver.Encoder import unpack_response_with_string [as 别名]
 def test_unpack_response_with_string_no_format(self):
   expected_string = 'abcde\x00'
   b = bytearray()
   b.extend(expected_string)
   data = Encoder.unpack_response_with_string('',b)
   assert(len(data) == 1)
   assert data[0] == expected_string
开发者ID:dgs3,项目名称:s3g,代码行数:9,代码来源:pi_test_Coding.py

示例2: test_unpack_response_with_string

# 需要导入模块: from makerbot_driver import Encoder [as 别名]
# 或者: from makerbot_driver.Encoder import unpack_response_with_string [as 别名]
 def test_unpack_response_with_string(self):
   expected_data = [1, 'a', 'b', 'c', 'ABCDE\x00']
   b = bytearray()
   b.extend(Encoder.encode_uint32(1))
   for data in expected_data[1:-1]:
     b.append(data)
   b.extend(expected_data[-1])
   data = Encoder.unpack_response_with_string('<Iccc',b)
   for expected, d in zip(expected_data, data):
     self.assertEqual(expected, d)
开发者ID:dgs3,项目名称:s3g,代码行数:12,代码来源:pi_test_Coding.py

示例3: test_unpack_response_with_string_empty_string

# 需要导入模块: from makerbot_driver import Encoder [as 别名]
# 或者: from makerbot_driver.Encoder import unpack_response_with_string [as 别名]
 def test_unpack_response_with_string_empty_string(self):
   expected_string = '\x00'
   b = bytearray()
   b.append(expected_string)
   data = Encoder.unpack_response_with_string('', b)
   self.assertEqual(expected_string, data[0])
开发者ID:dgs3,项目名称:s3g,代码行数:8,代码来源:pi_test_Coding.py


注:本文中的makerbot_driver.Encoder.unpack_response_with_string方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。