setOutputMode abstract method

Future<CommandResponse> setOutputMode({
  1. required String deviceId,
  2. required CompositeCodesOutputMode outputMode,
})

Sets the output mode for composite codes.

deviceId - The identifier of the target device. outputMode - The CompositeCodesOutputMode enum value representing the desired output mode. Returns a CommandResponse indicating the success or failure of the operation.

Implementation

Future<CommandResponse> setOutputMode({
  required String deviceId,
  required CompositeCodesOutputMode outputMode,
});