diff --git a/script/local.py b/script/local.py index 6d8bd3c..670218c 100755 --- a/script/local.py +++ b/script/local.py @@ -14,11 +14,13 @@ LASER_SETTLING_TIME = 0.1 def laser_on(): print "Laser On" caput("SIN-TIMAST-TMA:Beam-Las-Delay-Sel", 0) + caput("SIN-TIMAST-TMA:Beam-Apply-Cmd.PROC", 1) time.sleep(LASER_SETTLING_TIME) def laser_off(): print "Laser Off" caput("SIN-TIMAST-TMA:Beam-Las-Delay-Sel", 1) + caput("SIN-TIMAST-TMA:Beam-Apply-Cmd.PROC", 1) time.sleep(LASER_SETTLING_TIME)