UNPKG

theta-client-react-native

Version:

This library provides a way to control RICOH THETA using.

27 lines (26 loc) 887 B
/** * Mode Memory * * The default setting is "off", preserving the previous behavior. * When set to "on", the following shooting parameters will be retained even after power-off or sleep: * - Still image stitching process * - Exposure program / Aperture / Shutter speed / ISO sensitivity / Exposure compensation * - White balance mode / Color temperature setting * - Filters * - Interval shooting: number of shots / interval * - Multi-bracket shooting: number of shots / parameters * - Interval composite shooting: duration / intermediate saving * - Time-shift shooting settings (excluding shooting order) * - Burst shooting options * - Geotag data */ export const ModeMemoryEnum = { /** Undefined value */ UNKNOWN: 'UNKNOWN', /** ON */ ON: 'ON', /** OFF */ OFF: 'OFF' }; /** type definition of ModeMemoryEnum */ //# sourceMappingURL=option-mode-memory.js.map