addBool method

AtemCommandBuilder addBool(
  1. bool value
)

Adds a boolean value (1 byte).

Implementation

AtemCommandBuilder addBool(bool value) {
  _buffer.addByte(value ? 1 : 0);
  return this;
}