This is an old revision of the document!
Read bytes into a mutable byte array.
from cubloc import GetA GetA(channel: int, arrayName: bytearray, byteLength: int)
channel number.
Returns the number of bytes copied into arrayName.
from cubloc import GetA # Example usage result = GetA(0, [1, 2, 3], 1) print(result)