addInt16 method

AtemCommandBuilder addInt16(
  1. int value
)

Adds an int16 value (big endian).

Implementation

AtemCommandBuilder addInt16(int value) {
  _buffer.addByte((value >> 8) & 0xFF);
  _buffer.addByte(value & 0xFF);
  return this;
}