Changes between Version 135 and Version 136 of UserGuideGit


Ignore:
Timestamp:
Mar 2, 2009, 11:05:20 AM (16 years ago)
Author:
Frédéric
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UserGuideGit

    v135 v136  
    159159import subprocess
    160160
    161 def mirrorLockup(delay):
    162     print "Mirror lockup (delay=%.1f)" % delay
     161def mirrorLockup(stabilizationDelay):
     162    print "Mirror lockup (delay=%.1f)" % stabilizationDelay
    163163    # See shoot() function
    164164
    165165
    166 def shoot(bracket):
    167     print "Shoot (bracket=%d)" % bracket
     166def shoot(bracketNumber):
     167    print "Shoot (bracket=%d)" % bracketNumber
    168168
    169169    # 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)
    171171    p = subprocess.Popen(["gphoto2", "--help"], stdin=subprocess.PIPE, stdout=subprocess.PIPE)
    172172