Canon Powershot A1100IS Ultra Intervalometer Script - Script Writing - CHDK Forum

Canon Powershot A1100IS Ultra Intervalometer Script

  • 4 Replies
  • 4361 Views
Canon Powershot A1100IS Ultra Intervalometer Script
« on: 17 / January / 2012, 18:13:30 »
Advertisements
Hi-
I have a Canon Powershot A1100IS and I'm trying to use the ultra intervalometer script.  Although the website where I downloaded the script from said it did not support my camera model, users on other forums said that they are running this same script on the A1100IS.

Currently the script isn't running on the A1100IS.  Is there a way to change the script so that it works on this model or would I have to write an entirely new script to perform the same function?  If there are ultra intervalometer scripts that work on the A1100IS, please let me know ASAP.


Thanks   :D

Seabury Hall Engineering


Script currently using below:

rem Author - Keoeeit
rem Written for S-Series
rem Should be okay on others
rem Use Endless mode with caution
rem See documentation for important info
rem first version
@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
@default c 5
@param d Interval (Minutes)
@default d 0
@param e Interval (Seconds)
@default e 0
@param f Interval (10th Seconds)
@default f 5
@param g Endless? No=0 Yes=1
@default g 0
p=a*60000+b*1000
t=d*60000+e*1000+f*100
if c<1 then let c=5
if t<100 then let t=100
if g<0 then let g=0
if g>1 then let g=1
if p<0 then let p=0
z=t*c
y=p+z
print "1 Cycle Time:", y/60000; "min", y%60000/1000; "sec"
goto "interval"
:interval
  if p>0 then gosub "pause"
  print "Shot 1 of", c
  shoot     
  if c=1 then end
  for n=2 to c
  sleep t
  print "Shot", n, "of", c
  shoot
  next n
  if g=1 then goto "interval" else end
:pause
  n=(a*60)+b
  for m=1 to n
  q=n-m
  print "Intvl Begins:", q/60; "min", q%60; "sec"
  sleep 930
  next m
  return
« Last Edit: 17 / January / 2012, 18:17:49 by seaburyhallengineering »

Re: Canon Powershot A1100IS Ultra Intervalometer Script
« Reply #1 on: 17 / January / 2012, 20:23:06 »
I have a Canon Powershot A1100IS and I'm trying to use the ultra intervalometer script.  Although the website where I downloaded the script from said it did not support my camera model, users on other forums said that they are running this same script on the A1100IS.
Please provide a link to where it says this script will not work on your camera ?

Quote
Currently the script isn't running on the A1100IS.
Its a pretty "plain vanilla" script - nothing camera specific in the code you posted.  When you say it isn't running, tell us specifically what did you do to load and run the script (including the complete path to where you put it on your SD card). What does it for a title at the bottom of the Scripts menu ? And what parameters are displayed below that title ?  What happens when you press the shutter button in <ALT> mode ?
Ported :   A1200    SD940   G10    Powershot N    G16

Re: Canon Powershot A1100IS Ultra Intervalometer Script
« Reply #2 on: 19 / January / 2012, 13:27:13 »
I got the script from the CHDK website and it had a list of supported camera models.  The A1100IS was not listed.
http://chdk.wikia.com/wiki/UBASIC/Scripts:_Ultra_Intervalometer

To load the script on the camera, I pressed the <ALT> button and then pressed <FUNC SET>.  I looked through all the files until I found the the ultra intervalometer script and then pressed <FUNC SET>.  I loaded the same script onto another model, A540, the same way and it worked fine, so it doesn't seem that the way I loaded the script was a problem.

My script was saved as a text file in the scripts folder on the SD card after it was hacked.

The title at the bottom of the script menu says Ultra Intervalometer\.  The parameters that are displayed below the title are DELAY 1st SHOT(MINS), DELAY 1st SHOT (SECS), NUMBER OF SHOTS, INTERVAL (MINUTES), INTERVAL (SECONDS), INTERVAL (10th SECONDS), ENDLESS? NO=0 YES=1.

Thanks  :D

Re: Canon Powershot A1100IS Ultra Intervalometer Script
« Reply #3 on: 19 / January / 2012, 13:32:17 »
The camera is reading the script, but it is not executing.

*

Offline blackhole

  • *****
  • 946
  • A590IS 101b
    • Planetary astrophotography
Re: Canon Powershot A1100IS Ultra Intervalometer Script
« Reply #4 on: 20 / January / 2012, 11:35:27 »
Try this version, for me it worked without any problems.

Code: [Select]
rem Author - Keoeeit                 
rem Upgraded by Mika Tanninen                 
@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                 
if c<1 then let c=0                 
if t<100 then let t=100                 
g=(a*60)+b
if g<=0 then goto "interval"                 
for m=1 to g                 
 print "Intvl Begins:", (g-m)/60; "min", (g-m)%60; "sec"                 
 sleep 910                 
 next m                 
:interval               
  n=n+1
  if c=0 then print "Shot", n else print "Shot", n, "of", c                 
  shoot                 
  if n=c then end                 
  sleep t                 
  goto "interval"

 

Related Topics


SimplePortal © 2008-2014, SimplePortal