LogControl

interface LogControl : Peripheral

LogControl peripheral interface.

This peripheral allows to deactivate logs on the drone.

This peripheral can be obtained from a drone using: drone.getPeripheral(LogControl::class.java)

See also

com.parrot.drone.groundsdk.device.Drone

Functions

Link copied to clipboard
@JvmName(name = "deprecated_areLogsEnabled")
open fun areLogsEnabled(): Boolean
Link copied to clipboard
@JvmName(name = "deprecated_canDeactivateLogs")
open fun canDeactivateLogs(): Boolean
Link copied to clipboard
abstract fun deactivateLogs(): Boolean

Deactivate log recording on the drone.

Properties

Link copied to clipboard
@get:JvmName(name = "areLogsEnabled")
abstract val logsEnabled: Boolean

Tells whether log recording is enabled.

Link copied to clipboard
abstract val missionLogs: OptionalBooleanSetting

Setting controlling whether mission logs are recorded.

Link copied to clipboard
@get:JvmName(name = "canDeactivateLogs")
abstract val supportsLogDeactivation: Boolean

Tells whether log recording deactivation is supported.