ICameraV2StartExposure Method |
Starts an exposure. Use
ImageReady to check when the exposure is complete.
Namespace: ASCOM.DeviceInterfaceAssembly: ASCOM.DeviceInterfaces (in ASCOM.DeviceInterfaces.dll) Version: 6.0.0.0 (6.2.0.2774)
Syntaxvoid StartExposure(
double Duration,
bool Light
)
Sub StartExposure (
Duration As Double,
Light As Boolean
)
void StartExposure(
double Duration,
bool Light
)
Parameters
- Duration
- Type: SystemDouble
Duration of exposure in seconds, can be zero if Light is false - Light
- Type: SystemBoolean
true for light frame, false for dark frame (ignored if no shutter)
ExceptionsException | Condition |
---|
InvalidValueException | NumX, NumY, BinX,
BinY, StartX, StartY, or Duration parameters are invalid. |
InvalidOperationException | CanAsymmetricBin is false and BinX != BinY |
NotConnectedException | the exposure cannot be started for any reason, such as a hardware or communications error |
RemarksMust be implemented, must not throw a MethodNotImplementedException.
A dark frame or bias exposure may be shorter than the V2 ExposureMin value and for a bias frame can be zero.
Check the value of Light and allow exposures down to 0 seconds
if Light is false. If the hardware will not
support an exposure duration of zero then, for dark and bias frames, set it to the minimum that is possible.
Some applications will set an exposure time of zero for bias frames so it's important that the driver allows this.
See Also