CHDK Wiki
Register
Line 31: Line 31:
 
* [[uBASIC/Scripts: Unlimited Interval Shooting|Unlimited Interval Shooting]]
 
* [[uBASIC/Scripts: Unlimited Interval Shooting|Unlimited Interval Shooting]]
 
* [[uBASIC/Scripts:Long Exposure Intervalometer|Long Exposure Intervalometer]] (Its purpose is for NIGHT shots. Takes long exposure shots continuously for applications such as night time time-lapse or to take image stacking shots for astrophotography. IMPORTANT NOTE ABOUT THIS SCRIPT. IT TAKES LONG EXPOSURES, SO DON'T PANIC WHEN YOUR SCREEN GOES BLANK FOR 15 SECONDS. IT'S TAKING A PICTURE.)
 
* [[uBASIC/Scripts:Long Exposure Intervalometer|Long Exposure Intervalometer]] (Its purpose is for NIGHT shots. Takes long exposure shots continuously for applications such as night time time-lapse or to take image stacking shots for astrophotography. IMPORTANT NOTE ABOUT THIS SCRIPT. IT TAKES LONG EXPOSURES, SO DON'T PANIC WHEN YOUR SCREEN GOES BLANK FOR 15 SECONDS. IT'S TAKING A PICTURE.)
* [[uBASIC/Scripts: Ultra Intervalometer|Ultra Intervalometer]]
+
* [[uBASIC/Scripts: Ultra Intervalometer|Ultra Intervalometer]] a simple script without many features beyond precise timing
 
* [[uBASIC/Scripts: OMNI Intervalometer|OMNI Intervalometer]] (Use in burst mode with new Tv-bracketing for HDR!) (does not work with Canon s5 IS)
 
* [[uBASIC/Scripts: OMNI Intervalometer|OMNI Intervalometer]] (Use in burst mode with new Tv-bracketing for HDR!) (does not work with Canon s5 IS)
 
* [[uBASIC/Scripts:accurate intervalometer|Acccurate Intervalometer]]
 
* [[uBASIC/Scripts:accurate intervalometer|Acccurate Intervalometer]]

Revision as of 03:31, 4 March 2013

User-written Scripts

Dear script authors and those just learning:

The CHDK Forum has a dedicated Script Writing and uBASIC section. The forum's design and capabilities make it far easier to discuss and help with the sometimes confusing nature of scripts and uBASIC. You are strongly encouraged to post on that forum so that you can get assistance more rapidly and in a much more easy-to-follow discussion format. I hope you can join us there!

For beginners, there is a tutorial: TutorialScratchpad

Final scripts can be linked to this page as a kind of Script Archive. The above mentioned forum is only for those who would like some assistance or input from others with similar goals in mind.

See also the Scripting Cross Reference Page for the complete list of CHDK scripting commands for Lua and uBasic.

Important Notices

The scripts that are posted below were written by CHDK users, and are contributed as is.

Please note that prior to 2009 a number of special builds of CHDK were in general release and some used different uBASIC commands and features.  With the unification of CHDK into one release trunk, some of these older scripts may not run on current versions of CHDK.

Further, some of these scripts use the get_prop and set_prop commands. This directly modifies particular memory locations that store some camera settings. Different generations of cameras have different property number assignments so be cautious in using any script that uses these commands. Use the get_propset command to be sure which parameter set to use for a particular camera.

Scripts

Intervalometers

Bracketing

HDR

Motion Detection

Stacking

Zoom

Other

Old / Obsolete

Other Resources / Archives

Some more scripts that may not appear here at the Wikia archive. Due to the easier method of jointly discussing and working on scripts at the CHDK Forum some new scripts are showing up there that you may not find in any other places. For example: some newer and faster Lightning Photography /Motion Detection scripts have been added (among others).
  • CHDK scripts for Canon SD1000/IXUS70 ::An interesting collection of unique scripts, written primarily for the SD1000/IXUS70 camera (DIGIC III), but can easily be converted to most all DIGIC II cameras by following the directions in the simple REM comments in them. Worth checking them out. They use some creative shortcuts that can be applied to your own scripts, or used as-is.

Information for contributors

Please add your debugged and tested scripts to this section. Reserve discussion and help for writing your script to the CHDK Forum: Script Writing (or the now rarely-used discussion section (tab above)). Final scripts will appear on this page.

Scripts added here should include:
  • Camera model that you wrote it on.
  • Other camera models that it is known to work on.
  • The CHDK build required to run it (if it's an extension beyond GrAnds builds).
  • Any special instructions that may be required for running the script.
  • Your script!
Since some scripts require special instructions that might be too lengthy to write into the script itself with "print" statements, I think it would be a good idea to start a common practice of including a short but informative text-file with each script, that could be saved by the same filename. Using a .TXT extension so the file may be referred to as a help-file using CHDK's "File Reader".
It has been found that some people are irresponsibly/foolishly sharing collections of scripts without the important accompanying documentation for each script. Try to include some extra info in the header of your script in the form of rem statements that might help the unfortunate people that might get hold of undocumented scripts. Beginning of script example:
rem Author: Your Alias/Name
rem For S-Series ONLY!
rem Requires Fingalo's build v 106 or later!
rem Use with caution! Read documentation!

To post your own script to this main Scripts page:

  1. Click on the EDIT TAB at the top of the page (not the ones beside each entry).
  2. Scroll to the bottom of the list of scripts.
  3. Add new line
    * [[uBASIC/Scripts: <<YOUR SCRIPT TITLE>>|<<YOUR SCRIPT TITLE>>]]
    to the list.
  4. Save changes.
  5. Click on the list item you just added.
  6. Use the following template to publish your script:
== <<SCRIPT TITLE>> == 
:'''Written for/on:''' <<CAMERA MODEL>>

:'''Also works on:''' <<CAMERA MODELS>>

:'''Required CHDK build:''' <<either 'any' or specify the build required>> 

<<SCRIPT DESCRIPTION>> 

'''Documentation/Help''' (save as a small "<<script_filename>>.txt" file to your /CHDK/SCRIPTS/ folder) 

----

<<HELP TEXT>>

---- 

'''Script Code''' (save as "<<script_filename>>.bas" to your /CHDK/SCRIPTS/ folder) 

<pre>

<<SCRIPT BODY>>

</pre> 

--~~~

[[Category:Scripts]]