IXUS100 question - General Discussion and Assistance - CHDK Forum

IXUS100 question

  • 3 Replies
  • 2534 Views
IXUS100 question
« on: 11 / September / 2014, 10:33:12 »
Advertisements
Hi, is it possibble to turn off the display of the camera after the script start? Or maybe is there any script for turn off the display?
Thanks a lot

Re: IXUS100 question
« Reply #1 on: 11 / September / 2014, 13:30:15 »
Hi, is it possibble to turn off the display of the camera after the script start?
Which script ?

Quote
Or maybe is there any script for turn off the display?
http://chdk.wikia.com/wiki/Script_commands#set_lcd_display.28.29
Ported :   A1200    SD940   G10    Powershot N    G16

Re: IXUS100 question
« Reply #2 on: 13 / September / 2014, 17:03:13 »
Quote
Which script ?

rem Author - Keoeeit
 rem Upgraded by Mika Tanninen
 rem Time accuracy and shutdown for a710is by Viktoras Stanaitis
 rem h-accuracy for delay, j-accuracy for interval
 h=-1
 j=-1755
 @title Ultra Intervalometer
 @param a Delay 1st Shot (Mins)
 @default a 0
 @param b Delay 1st Shot (Secs)
 @default b 0
 @param c Number of Shots (0 inf)
 @default c 0
 @param d Interval (Minutes)
 @default d 0
 @param e Interval (Seconds)
 @default e 10
 @param f Interval (10th Seconds)
 @default f 0
 n=0
 t=(d*600+e*10+f)*100+j
 if c<1 then let c=0
 if t<100 then let t=100
 g=(a*60)+b+h
 if g<=0 then goto "interval"
 for m=1 to g
  print "Intvl Begins:", (g-m)/60; "min", (g-m)%60; "sec"
  sleep 930
  next m
 :interval
   n=n+1
   if c=0 then print "Shot", n else print "Shot", n, "of", c
   shoot
   if n=c then shut_down
   sleep t
   goto "interval"

I'm using this script, Is it possible to insert a command for turn off the lcd display?

Re: IXUS100 question
« Reply #3 on: 13 / September / 2014, 17:48:47 »
Here you go :
Code: [Select]
rem Author - Keoeeit
 rem Upgraded by Mika Tanninen
 rem Time accuracy and shutdown for a710is by Viktoras Stanaitis
 rem h-accuracy for delay, j-accuracy for interval
 h=-1
 j=-1755
 @title Ultra Intervalometer
 @param a Delay 1st Shot (Mins)
 @default a 0
 @param b Delay 1st Shot (Secs)
 @default b 0
 @param c Number of Shots (0 inf)
 @default c 0
 @param d Interval (Minutes)
 @default d 0
 @param e Interval (Seconds)
 @default e 10
 @param f Interval (10th Seconds)
 @default f 0
 n=0
 t=(d*600+e*10+f)*100+j
 if c<1 then let c=0
 if t<100 then let t=100
 g=(a*60)+b+h
 if g<=0 then goto "interval"
 for m=1 to g
  print "Intvl Begins:", (g-m)/60; "min", (g-m)%60; "sec"
  sleep 930
  next m
 :interval
   set_lcd_display 0
   n=n+1
   if c=0 then print "Shot", n else print "Shot", n, "of", c
   shoot
   if n=c then shut_down
   sleep t
   goto "interval"
Ported :   A1200    SD940   G10    Powershot N    G16

 

Related Topics


SimplePortal © 2008-2014, SimplePortal