blob: 1af351b6191aa37ff32239a7d9727b92f2156b99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
function ArduinoFunctions = GetArduinoFunctions()
// -----------------------------------------------------------------
// Get list of Arduino functions supported
//
// Input data:
// None
//
// Output data:
// List of Arduino functions supported
//
// Author: Siddhesh Wani
// -----------------------------------------------------------------
ArduinoFunctions = [
"cmd_digital_out"
"cmd_digital_in"
"cmd_analog_out"
"cmd_analog_in"
"cmd_dcmotor_setup"
"cmd_dcmotor_run"
"cmd_servo_attach"
"cmd_servo_detach"
"cmd_servo_move"];
endfunction
|