blob: c992057b9918747a3b05575aad9e9f47585f7b55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
function ArduinoSetupFunctions = GetArduinoSetupFunctions()
// -----------------------------------------------------------------
// Get list of Arduino setup functions supported
//
// Input data:
// None
//
// Output data:
// List of Arduino setup functions supported
//
// Author: Siddhesh Wani
// -----------------------------------------------------------------
ArduinoSetupFunctions = [
"cmd_dcmotor_setup"
"cmd_servo_attach"
"cmd_servo_detach"];
endfunction
|