本文整理匯總了Python中dronekit_sitl.SITL.connection_string方法的典型用法代碼示例。如果您正苦於以下問題:Python SITL.connection_string方法的具體用法?Python SITL.connection_string怎麽用?Python SITL.connection_string使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類dronekit_sitl.SITL
的用法示例。
在下文中一共展示了SITL.connection_string方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_preserve_eeprom
# 需要導入模塊: from dronekit_sitl import SITL [as 別名]
# 或者: from dronekit_sitl.SITL import connection_string [as 別名]
def test_preserve_eeprom():
# Start an SITL instance and change COMPASS_USE
sitl = SITL()
sitl.download('copter', '3.3')
sitl.launch(copter_args, verbose=True, await_ready=True, use_saved_data=False)
connection_string = sitl.connection_string()
vehicle = dronekit.connect(connection_string, wait_ready=True)
new_compass_use = 10
print("Changing COMPASS_USE to {0}".format(new_compass_use))
while vehicle.parameters["COMPASS_USE"] != new_compass_use:
vehicle.parameters["COMPASS_USE"] = new_compass_use
time.sleep(0.1)
print("Changed COMPASS_USE to {0}".format(new_compass_use))
time.sleep(5) # give parameters time to write
sitl.stop()
vehicle.close()
# Now see if it persisted
sitl.launch(copter_args, await_ready=True, use_saved_data=True)
vehicle = dronekit.connect(connection_string, wait_ready=True)
assert_equals(new_compass_use, vehicle.parameters["COMPASS_USE"])
vehicle.close()
sitl.stop()
示例2: SITL
# 需要導入模塊: from dronekit_sitl import SITL [as 別名]
# 或者: from dronekit_sitl.SITL import connection_string [as 別名]
sitl = SITL()
sitl.stop()
sitl.download('copter', '3.3')
sitl.launch(copter_args, verbose=True, await_ready=True, use_saved_data=False)
sitl.stop()
sys.exit(0)
versions = version_list()
models = list(versions.keys())
print models.sort()
download('copter','3.3', None)
connection_string = sitl.connection_string()
vehicle = dronekit.connect(connection_string, wait_ready=True)
new_compass_use = 10
sitl.block_until_ready()
sitl.poll()
sitl.using_sim
sitl.stop()
sitl.poll()
sitl.launch(copter_args)
sitl.stop()