Closed arnobaer closed 4 years ago
An easy approach to load/overwrite settings for registered devices using method load_settings().
load_settings()
... >>> app.devices.add("smu", K2140(Resource("GBIP::1::INSTR"))) >>> app.devices.get("smu").resource.resource_name 'GBIP::1::INSTR' ... >>> app.devices.load_settings() # overwrite resource values by settings >>> app.devices.get("smu").resource.resource_name 'ASRL1::INSTR'
An easy approach to load/overwrite settings for registered devices using method
load_settings()
.