@title gentled chdk2 script rem author Dave Mitchell - dave@zenonic.demon.co.uk rem this script does nothing except display the state of the two transmitter joysticks that rem correspond to the two receiver servo slots connected to the Gentled CHDK2 rem it's designed to let you test that your Gentled CHDK2 is working properly rem rem you can modify this script by putting whatever camera actions you like in place of the "print" statements while 1 do a = get_usb_power until a>0 if a <=4 then gosub "ch1up" else if a <=7 then gosub "ch1mid" else if a <=10 then gosub "ch1down" else if a <=13 then gosub "ch2up" else if a <=16 then gosub "ch2mid" else if a <=19 then gosub "ch2down" else print "error" endif wend end :ch1up print "channel 1 up" return :ch1mid print "channel 1 middle" return :ch1down print "channel 1 down" return :ch2up print "channel 2 up" return :ch2mid print "channel 2 middle" return :ch2down print "channel 2 down" return