Streetcam : My first script - Script Writing - CHDK Forum
supplierdeeply

Streetcam : My first script

  • 0 Replies
  • 1410 Views
Streetcam : My first script
« on: 02 / December / 2014, 12:52:39 »
Advertisements
Here is my first script. I wanted to write a script
where LCD is switched off and I could click candids
using FuncSet button without anyone noticing.

Here is simple script hope to improve it further
Code: [Select]
rem Author YNDESAI
rem Version 0.1
rem
rem Purpose street photography
rem Disable LCD and click with FuncSet button
rem this script does the job on SX130IS but to exit
rem I need to power the cam off.
@title StreetCam simple 0.1

set_lcd_display 0

do

wait_click
is_key k "set"
if k=1 then
    shoot
endif

until (0)

 

Related Topics