Intervalometer script for SX200 IS? - Script Writing - CHDK Forum supplierdeeply

Intervalometer script for SX200 IS?

  • 4 Replies
  • 3944 Views
Intervalometer script for SX200 IS?
« on: 16 / January / 2010, 09:39:23 »
Advertisements
Is there a working intervalometer (timelapse) script for the sx200?

The Ultra Intervalometer, as previously described, script doesn't really work.

scar.

Re: Intervalometer script for SX200 IS?
« Reply #1 on: 19 / January / 2010, 10:42:28 »
minimalistic intervalometer.

save as minitl.lua
Quote
--[[
@title Minimalistic Intervalometer
@param a Shooting interval, min
@default a 0
@param b ...sec
@default b 10
--]]
 
Interval = a*60000 + b*1000
 
function TakePicture()
   press("shoot_half")
   press("shoot_full")
   release("shoot_full")
 
   repeat
      sleep(50)
   until get_shooting() == false
end
 
repeat
   StartTick = get_tick_count()
   TakePicture()
   sleep(Interval - (get_tick_count() - StartTick))
until false
SX200IS 100C

Re: Intervalometer script for SX200 IS?
« Reply #2 on: 20 / January / 2010, 05:22:05 »
Thank you, I'll try it out!

Re: Intervalometer script for SX200 IS?
« Reply #3 on: 12 / February / 2010, 16:45:59 »
That's so awesome, I was going to try to modify a LUA for that but decided to take a look and found this.  Amazingly it works fine on my SD1200 too :) so simplistic that its perfect


*

Offline fe50

  • ******
  • 3147
  • IXUS50 & 860, SX10 Star WARs-Star RAWs
    • fe50
Re: Intervalometer script for SX200 IS?
« Reply #4 on: 13 / February / 2010, 06:14:23 »
...this script is also available from the CHDK wikia since June 2009: LUA - Minimalistic Intervalometer  ;)

 

Related Topics