def __init__(self):
     self.stimulus = StimCommand(
         server_hostname=ExperimentConfig.STIM_SERVER_HOST)
     self.exp_name = None
     self.post_fix = None
     self.stim_source = None
     self.logger = logging.getLogger('Experimenter.Experiments')
Exemple #2
0
#!/usr/bin/python
# QuitServer script
#
# Copyright (C) 2010-2012 Huang Xin
#
# See LICENSE.TXT that came with this file.

if __name__ == '__main__':
    from StimControl.ControlCmd import StimCommand
    cmd = StimCommand('192.168.1.105', 7766)
    cmd.quit_server()
Exemple #3
0
# QuitServer script
#
# Copyright (C) 2010-2012 Huang Xin
#
# See LICENSE.TXT that came with this file.

if __name__ == '__main__':
    from StimControl.ControlCmd import StimCommand
    cmd = StimCommand('localhost', 7766)
    cmd.quit_server()