צפייה בגרסה מלאה : CHDK Canon SD780 is Script - Help
guyrud
06-12-2010, 22:44:09
HI
I am back!
My Quad is ok after geting a NEW motor from the company.
I had added on it LED lights Green/Red/ Flash
It looks Great at low light now.
----------------------------------
I have loaded a CHDK program into my Canon camera
I would like Your help with a simple script that-
When powering the camera -
Will take auto Pic every X time .
Will power the camera OFF after Y time
( As i could change these time settings in the script)
Thats all
As i am NOT into programing things/ scripts write.
Dose anyone can help with that Pleae..
It should NOT be hard to a person that have done scripts writing
TX allot
Guy
guyrud
06-12-2010, 23:53:34
This looks like a interesting Info web for this camera
With Two sets of scripts
[http://www.andrewhazelden.com/blog/2010/04/loading-the-chdk-beta-for-the-canon-powershot-sd780is-ixus-100-is-camera/
GUY
guyrud
07-12-2010, 00:13:50
ok
from the rc forum out there:
Here's a script I use all the time (I didn't write it). It doesn't shut the camera down at the end of the sequence but does allow you to change the number of shots, start delay, interval etc. just copy the code into notpad and save as a file with a .bas extension
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
@title Ultra Intervalometer
@param a Delay 1st Shot (Mins)
@default a 1
@param b Delay 1st Shot (Secs)
@default b 0
@param c Number of Shots
@default c 600
@param d Interval (Minutes)
@default d 0
@param e Interval (Seconds)
@default e 3
@param f Interval (10th Seconds)
@default f 0
@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
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
igalr
07-12-2010, 07:26:35
השורה הזו :
if g=1 then goto "interval" else end
גורמת לסיום הסקריפט.
אם תחליף ל :
if g=1 then goto "interval" else shut_down
זה אמור לכבות את המצלמה מה שיאפשר לנחות עם מצלמה כבויה ועדשה סגורה.
תבדוק אם זה נתמך בדגם המצלמה שלך, אצלי ב A590 זה עובד.
עוד רעיון קטן - אתה יכול להוסיף שניים שלושה פלאשים לפני כיבוי וכך תקבל אינדיקציה מהקרקע שהמצלמה כבתה אם כי זה לא קריטי כי תמיד אפשר לכוון טיימר בשלט מקביל לזמן פעולת המצלמה.
guyrud
07-12-2010, 21:17:58
Tx allot igal
I will let you know how things came out
GUY
vBulletin® v4.2.5, זכויות יוצרים ©2000-2025, Jelsoft Enterprises Ltd, תורגם על ידי vBHeb.