Changeset 762 in ETALON


Ignore:
Timestamp:
May 23, 2018, 5:18:35 PM (6 years ago)
Author:
moutardier
Message:

Code written by Alexandre Moutardier

Location:
BPM
Files:
11 added
4 edited

Legend:

Unmodified
Added
Removed
  • BPM/bpm_constants.py

    r759 r762  
    11__author__ = 'delerue'
    22
     3import os
     4
    35global data_dir
    4 data_dir='/Users/delerue/Downloads/'
     6if os.path.exists('home/alexandre/Bureau/stage/BPM/') :
     7        data_dir='home/alexandre/Bureau/stage/BPM/'
     8if os.path.exists('/Users/delerue/Downloads/'):
     9        data_dir='/Users/delerue/Downloads/'
     10else:
     11        data_dir='./'
     12
    513
    614#SCOPE_IP='192.168.197.145'
  • BPM/initialise_motors.py

    r759 r762  
    218218    return ret
    219219
    220 controller_hello()
    221 move_motor_relative(1,1000,-1000)
    222 time.sleep(1)
    223 move_motor_relative(1,1000,1000)
     220#controller_hello()
     221#move_motor_relative(1,1000,-1000)
     222#time.sleep(1)
     223#move_motor_relative(1,1000,1000)
  • BPM/scope_function.py

    r760 r762  
    66import urllib
    77from datetime import datetime
    8 from sparc_constants import *
     8#from sparc_constants import *
    99from writeclient import writeclient
    1010
     11global SCOPE_IP
     12SCOPE_IP = '10.0.1.112'
    1113scope_image_url="http://"+SCOPE_IP+"/crt_print.png"
    1214
  • BPM/writeclient.py

    r759 r762  
    22__author__ = 'delerue'
    33
     4#import urllib
    45import time
    56from datetime import datetime
Note: See TracChangeset for help on using the changeset viewer.