Command allows you to use expert commands. The Command UObject contains the following methodes:
Table A.8. Command's methodes:
| Name | Description |
|---|---|
| send(buffer) | Sends a command without requiering any answer.
Example: Command.send([3,10,10,0,0]); that plays a beep. |
| request(bufferIn, sizeOut) | Sends a command requiering an answer, and returns the buffer out. This is only recommanded to expert users.
Beware of the
Example: answer = Command.request([7,0], 15); that returns the informations on input port 0. |