blob: 15f739e9dc6d2a92bab9f4d88f39a2d2b2aef4f9 (
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
26
27
28
29
30
31
|
//
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) 2012-2012 - Scilab Enterprises - Bruno JOFRET
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
//
//
function subdemolist = demo_gateway()
demopath = get_absolute_file_path("arduino.dem.gateway.sce");
subdemolist = ["Potentiometer", "analog_read.dem.sce" ;
"Led Push Button", "digital_read_write.dem.sce" ;
"LED dimmer", "analog_write.dem.sce" ;
"Openloop DC Motor", "motor.dem.sce";
"Encoder", "encodeur.dem.sce";
"Interrupt", "interrupt_compteur.dem.sce";
"Servo position control with PID", "asserv.dem.sce";
"ServoMotor", "servomotor.dem.sce";
"Examples in documentation", "exemples_livret.dem.gateway.sce";
];
subdemolist(:,2) = demopath + subdemolist(:,2);
endfunction
subdemolist = demo_gateway();
clear demo_gateway; // remove demo_gateway on stack
|