send(send_buffer, count, offset)
      Provided a `bytearray`, send up to `count`, `len(send_buffer)`, or `len(send_buffer)-offset` (whichever is smallest and passed). Sends bytes starting at `0` by default or from `offset` if passed. The actual number of bytes sent is returned. If the send buffer is larger than 256 bytes, the extra data is not sent.
Parameters:
      send_buffer [value: bytearray, type: bytearray]
      count [value: int (optional), type: int]
      offset [value: int (optional), type: int]
Return Value: numbers of bytes sent (int)

file: src/link/engine_link_module.c

landing