From 57a4490dd00fceafc2f80d1df0a65183f1943085 Mon Sep 17 00:00:00 2001 From: sfop Date: Mon, 29 Aug 2016 19:27:51 +0200 Subject: [PATCH] Script execution --- script/local.py | 2 ++ 1 file changed, 2 insertions(+) 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)