From 1e55f34e5a2f332d56240ca9db7a44be59793142 Mon Sep 17 00:00:00 2001 From: sfop Date: Mon, 29 Aug 2016 19:05:27 +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 b991c75..d815116 100755 --- a/script/local.py +++ b/script/local.py @@ -13,10 +13,12 @@ LASER_SETTLING_TIME = 0.1 def laser_on(): #caput("SIN-TIMAST-TMA:Beam-Las-Delay-Sel", 0) + print "Laser On" time.sleep(LASER_SETTLING_TIME) def laser_off(): #caput("SIN-TIMAST-TMA:Beam-Las-Delay-Sel", 1) + print "Laser Off" time.sleep(LASER_SETTLING_TIME)