CHDK Wiki
Advertisement
Notice

This page describes USB Remote operation for the new development version of CHDK. For USB remote operation with the older CHDK stable version, refer to USB Remote Cable

Using a USB cable, a low voltage power supply, and a push button switch, you can construct a device that will allow you to control the operation of your CHDK-enabled camera.


Ricon ca-1

Ricoh CA-1

Background

For several years, CHDK has provided a simple method of operating a Canon P&S camera from a remote USB port connected device. Built-in functionality allowed remote replication of basic "press half" and "press full" actions on the shutter button. The ability to synchronize the release of the shutter between multiple camera connected to a common control unit was implemented. There was also a limited remote zoom functionality, usefull for coordinating the zoom position when many cameras were connected together.

With the passing of time, the code base supporting this functionality had become increasingly complicated and difficult to maintain or extend. To that end, starting with CHDK svn version 15xx a new set of functionality has been released. This new version provides a more stable and easy to understand interface and considerably expanded build in functionality.

The "stable" release branch of CHDK designated 1.0 continues to include the older implementation.

Introduction

CHDK version 2 USB remote code introduce a modular concept for the selection of what device is connected to the camera and how the camera reacts to that device.

USB Remote Functional Block Diagram - v2-1

The operation of devices connected to the USB port is converted to one the following states:

  • switch released
  • switch half pressed
  • switch full pressed

A value indicating number of activations (pulse count) and a value indicating of the duration the activation (pulse width / pulse gap) is also maintained.

Supported Hardware

Usb cable release v2 0 800

CHDK now supports the use of several different remote control devices to control a set of camera shooting functions.

For basic shooting functions, a simple switch can be used to provide 5V to the USB connector power pins. Details about how to build such a device can be found here : USB_Remote_Cable

Note that software functionality described on that page refers to CHDK stable release 1.0

In addition to "home made" devices, a commercial product called a Ricoh CA-1 can also be used. These are widely available at camera stores or online from many sources.

For more complex operations, devices that produce multiple pulses or pulses of different time duration (width) can be used. This functionality can often be emulated with a simple switch as well.

Enabling USB Remote operation

USB Remote 01

To enable USB remote operation, go to the CHDK Remote parameters menu and select Enable Remote.

When this option is selected, the USB port on the camera will no longer be available for uploading picture files or ptp operations.





Switch Types

USB Remote 02

None

Default setting at start-up. Indicates that no USB device is to be monitored. Useful when a script will be interacting with the USB port.






USB Remote 03

OnePush

Used with simple switch inputs. Pressing the switch initiates a "half-press" state. Releasing the switch initiates a "full-press" state for 100 mSec. There is no mechanism to cancel a "half-press" once this sequence is started.




USB Remote 04

TwoPush

Used with simple switch inputs. Pressing the switch initiates a "half-press" state. Releasing the switch and then immediately pressing the again switch in less than 1/2 second initiates a "full-press" state. Full press state continues while the switch is held. Failing to immediately press the switch the second time will cancel the sequence.



USB Remote 05

CA-1

Used with a Ricoh CA-1 switch device. Half pressing the button causes the CA-1 to create a 30 mSec pulse that initiates a "half press" state. Releasing the switch at that point will generate 2x30 mSec pulses that cancel the shooting sequences. Full pressing the button will create a 150 mSec pulse that will initiate a "full press" state for 100 mSec.




Control Modes

CHDK control modes support the translation of input device activation sequences into specific camera operations.

USB Remote 06

None

Tells CHDK to do nothing with switch inputs. Allows the input devices to operate - useful for scripting modes.





USB Remote 07

Normal

Reacts to the state of the input device. On half press it places the camera in "half press" mode to focus, set exposure and flash settings. On full press it places the camera in "full press" mode to take the actual photograph. Supports sync mode - see below.




USB Remote 08

Quick

Causes the camera to immediatly enter shooting mode (focus, exposure, flash) and take a picture immediately on the occurance of a "half shoot". Useful for automation projects where the picture should occur as quickly as possible after some condition is detected.

Sync not curently available in this mode.




USB Remote 09

Burst

Cause the camera to enter continuous shooting mode while a half press is active. Similiar to the built in camera continuous function except that it does not reset each time the camera power is removed.

Sync not curently available in this mode.



USB Remote 10

Bracket

Uses the CHDK Bracketing in Continuous Mode settings on each half press / full press operation, changing the bracketing setting on each shot. Times out after 5 seconds of no operations. Useful for bracketing operations as it does not require settting up camera continuous mode or timer settings, which clear after each camera power cycle.

Sync not curently available in this mode.



USB Remote 11

Zoom

Uses the Pulse Count input mode to control zoom operations . used with pulse count mode. The following action happes for the listed pulse counts.

  1. press = zoom in
  2. press = zoom out,
  3. press = full press
  4. press = shoot ( sync action = )
  5. press = full zoom out
  6. press = full zoom in

Sync not curently available in this mode.


USB Remote 12

Video

If camera is in video shooting mode, activates filming on the first half press. Stops filming on the next half press.

If camera has a dedicated video button, will start and stop video using that button rather than the shutter switch.

Sync not curently available in this mode.

Multi-Camera Synchronization

USB Remote 13

Enable Sync

A useful application of CHDK is the ability to connect two or more cameras together via a common USB cable so that their operation can be synchronized. The fact that the cameras are connected in parallel ensure that things happen at approximately the same time. To achieve better synchronization when taking an actual photograph, CHDK has the ability to "freeze" the picture taking process immediately before the image is actually captured. This allows CHDK on each camera to focus, adjust exposure, setup the flash and then wait for a signal to complete the shot (i.e. sync). If the Enable Sync option is set in CHDK then each camera will wait for the final transition of the USB signal ( 5V to 0V ).

USB Remote 14

Enable Sync Delay

To more precisely tune the synchronization between cameras, CHDK allows a precise fixed delay to be added to each camera to adjust for differences in the time each camera takes to finish shooting a picture.



File:USB Remote 15.png


Notice in the example pictures the use of the "range muliplier" function in the upper right corner of the screenshot - used to more easily change the delay adjustment value.

(Developer's note : the USB remote code includes optional code that can be used to calibrate the sync delay units precisely for each camera.)

Other Settings

USB Remote 16

Enable Script Start

Tells CHDK to activate the currently loaded script when the USB remote performs a full press. Useful for repetitive activation of a script without needing to press the shutter button.





USB Remote 17

Bracketing in Continuous Mode

A menu link to provide convenient access to the bracketing parameters used in USB remote bracketing mode.






USB Remote Timing Diagrams

File:USB Remote4a.gif


Scripting Interface

With the release of the new USB remote functionality the get_usb_power() function has been extended to include new functionality. The basic functionality provided by get_usb_power and is_key "remote" continues to be supported.

while 1
  wait_click 1
  if is_key "remote" then shoot
wend

Calling function get_usb_power with no parameters ( or parameter = 0 ) returns the pulse width of the most recent USB power activation

do p = get_usb_power 0 until p>0


Calling function get_usb_power with parameters = 1 returns the current state of USB power ( 0=off, 1=on)

do p = get_usb_power 1 until p>0


In addition, it is also possible to return the most recent count of pulses received and a buffered list of pulse width and pulse gap information :

do p = get_usb_power 2 until p>0

returns a buffered pulse width or pulse gap value (width values are positive, gap values are negative)


do p = get_usb_power 3 until p>0

returns the most recent number of pulses in a window (terminates after 1 second of inactivity)



Links

Remote hardware

Advertisement