CHDK Wiki
(→‎Links: updated with better wikilinks)
(Adding categories)
Line 50: Line 50:
 
====Scripts====
 
====Scripts====
 
* [[UBASIC/Scripts| User written uBASIC scripts]]
 
* [[UBASIC/Scripts| User written uBASIC scripts]]
  +
[[Category:Lua]]
  +
[[Category:UBASIC]]
  +
[[Category:Development]]
  +
[[Category:Scripts]]
  +
[[Category:Scripting]]

Revision as of 07:40, 26 January 2011

CHDK allows you to automate your camera by running "scripts", small and simple programs written by end-users and executed on the camera. Currently, CHDK allows you to use scripts written in Lua (filetype: *.lua) and uBASIC (filetype: *.bas). The file extension indicates how the script should be parsed. There are scripts for exposure bracketing, focus bracketing, intervalometer and many more.

Differences between Lua and UBASIC

uBASIC was the first scripting language supported in CHDK and is a smaller language (both in memory size and extensiveness of features). Lua came later and can be found in CHDK builds > version 0.5 / changeset 512. In general Lua scripts will use more memory and run faster. Some scripts use particular implementation details of one or the other language and will need some re-factoring (re-writing the flow and content of the program) in order to accomplish the same goals

Running a script

Script

The Script Menu

Script

Running a Script - Exposure Bracketing

Overview

  • Download or write your own script and place it in the chdk/scripts/ folder of your SD-card with the proper extension (.lua for Lua scripts, .bas for UBASIC scripts).
  • Enter the script menu, load the script, adjust the parameters to your liking and leave the menu.
  • While still in <ALT> mode just press the shutter button and the script will start. A mini console will be displayed while you run the script.
  • Note: set the Review parameter in the NORMAL camera menu to "off", other options like "x sec" or "hold" will interfere with the execution of scripts.
  • You may interrupt a running script by just pressing the shutter button again. Or pause a running script by exiting <ALT> mode, if paused the script will resume right where it left off when re-entering <ALT> mode.

Running a Lua script

  • The script should be saved with the filename extension .lua in the CHDK scripts folder chdk/scripts
  • Lua scripts support libraries, place these files in either chdk/scripts or chdk/lualib (see Lua syntax: Libraries).

Running a uBASIC script

  • The script should be saved with the filename extension .bas in the CHDK scripts folder chdk/scripts

Setting up a development environment

For help in setting up a Lua development environment, see Lua Dev Environment. Scripts can be tested locally and then uploaded to the camera. You may wish to build CHDK without some components (such as games) to increase the available memory on the camera.

For setting up a UBASIC development environment see UBASIC/TutorialScratchpad and UBDebug

Links

Lua

  • Lua - An introduction to Lua on CHDK
  • Lua Reference - Describes additional and/or changed scripting commands for the Lua scripting language
  • Lua Syntax - Basic syntax for Lua scripts

Scripts

uBASIC

Scripts