Changes between Version 135 and Version 136 of UserGuideGit
- Timestamp:
- Mar 2, 2009, 11:05:20 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UserGuideGit
v135 v136 159 159 import subprocess 160 160 161 def mirrorLockup( delay):162 print "Mirror lockup (delay=%.1f)" % delay161 def mirrorLockup(stabilizationDelay): 162 print "Mirror lockup (delay=%.1f)" % stabilizationDelay 163 163 # See shoot() function 164 164 165 165 166 def shoot(bracket ):167 print "Shoot (bracket=%d)" % bracket 166 def shoot(bracketNumber): 167 print "Shoot (bracket=%d)" % bracketNumber 168 168 169 169 # Launch external command 170 #p = subprocess.Popen(["myTetheredShootingProgram", "-capture", "%d" % bracket ], stdin=subprocess.PIPE, stdout=subprocess.PIPE)170 #p = subprocess.Popen(["myTetheredShootingProgram", "-capture", "%d" % bracketNumber], stdin=subprocess.PIPE, stdout=subprocess.PIPE) 171 171 p = subprocess.Popen(["gphoto2", "--help"], stdin=subprocess.PIPE, stdout=subprocess.PIPE) 172 172