CameraLockConfig

data class CameraLockConfig(val isPowerKeyLocked: Boolean? = null, val isShutterKeyLocked: Boolean? = null, val isModeKeyLocked: Boolean? = null, val isWlanKeyLocked: Boolean? = null, val isFnKeyLocked: Boolean? = null, val isPanelLocked: Boolean? = null)

Camera Lock Config

  • It is possible to enable/disable the function for each HW key.

  • It is possible to enable/disable the operation of the panel.

  • When all supported buttons/components are in the "unlock" state, it will be the same as the normal setting.

  • For THETA models, if there are no wlanKey, fnKey, or panel, it will return "lock". If there are no supported buttons/components, setting to "unlock" or "lock" will not return an error and will not perform any action.

Constructors

Link copied to clipboard
constructor(isPowerKeyLocked: Boolean? = null, isShutterKeyLocked: Boolean? = null, isModeKeyLocked: Boolean? = null, isWlanKeyLocked: Boolean? = null, isFnKeyLocked: Boolean? = null, isPanelLocked: Boolean? = null)

Properties

Link copied to clipboard
val isFnKeyLocked: Boolean? = null

fn key locked or unlocked.

Link copied to clipboard

mode key locked or unlocked.

Link copied to clipboard
val isPanelLocked: Boolean? = null

panel locked or unlocked. Fixed to true. Does not cause an error when false, but it is not reflected either.

Link copied to clipboard

power key locked or unlocked.

Link copied to clipboard

Shutter key locked or unlocked.

Link copied to clipboard

wlan key locked or unlocked.