How to use the yaqc.Client function in yaqc

To help you get started, we’ve selected a few yaqc examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github wright-group / PyCMDS / hardware / spectrometers / MicroHR / MicroHR.py View on Github external
def initialize(self, *args, **kwargs):
        # open control
        self.ctrl = yaqc.Client(self._yaqd_port)
        # import some information from control
        id_dict = self.ctrl.id()
        self.serial_number = id_dict["serial"]
        self.position.write(self.ctrl.get_position())
        # recorded
        self.recorded["wm"] = [self.position, "nm", 1.0, "m", False]
        while self.is_busy():
            time.sleep(0.1)
        # finish
        self.initialized.write(True)
        self.initialized_signal.emit()
github wright-group / PyCMDS / PyCMDS.py View on Github external
def _load_google_drive(self):
        google_drive_ini = ini.Ini(os.path.join(g.main_dir.read(), "project", "google_drive.ini"))
        g.google_drive_enabled.write(google_drive_ini.read("main", "enable"))
        if g.google_drive_enabled.read():
            g.google_drive_control.write(yaqc.Client(google_drive_ini.read("main", "port")))

yaqc

Generic yaq client.

LGPL-3.0
Latest version published 10 months ago

Package Health Score

57 / 100
Full package analysis

Popular yaqc functions