diff options
author | Siddhesh Wani | 2017-06-20 14:50:21 +0530 |
---|---|---|
committer | GitHub | 2017-06-20 14:50:21 +0530 |
commit | 2859e00d3f1da2d4b5b47514161bf0c63fcef83f (patch) | |
tree | 42fc74d21d1506f2e69359f4083e2d17b4328394 /2.3-1/src/c/scilab-arduino/includes/cmd_analog_out_volt.h | |
parent | 02a004ea1500c403ac1a18a52aaf79aaeb7280ed (diff) | |
parent | 3121a1f5a8203bfd14d46f71930ac5cd22afdf7d (diff) | |
download | Scilab2C-2859e00d3f1da2d4b5b47514161bf0c63fcef83f.tar.gz Scilab2C-2859e00d3f1da2d4b5b47514161bf0c63fcef83f.tar.bz2 Scilab2C-2859e00d3f1da2d4b5b47514161bf0c63fcef83f.zip |
Merge pull request #6 from yash1112/master
Merged with Yash's work. GUI updated for selecting Arduino boards. More functions for Arduino added.
Diffstat (limited to '2.3-1/src/c/scilab-arduino/includes/cmd_analog_out_volt.h')
-rw-r--r-- | 2.3-1/src/c/scilab-arduino/includes/cmd_analog_out_volt.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/2.3-1/src/c/scilab-arduino/includes/cmd_analog_out_volt.h b/2.3-1/src/c/scilab-arduino/includes/cmd_analog_out_volt.h new file mode 100644 index 00000000..51580fbb --- /dev/null +++ b/2.3-1/src/c/scilab-arduino/includes/cmd_analog_out_volt.h @@ -0,0 +1,27 @@ +/* Copyright (C) 2017 - IIT Bombay - FOSSEE + + 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 + Author: Yash Pratap Singh Tomar + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + +#ifndef __CMD_ANALOG_OUT_VOLT_H__ +#define __CMD_ANALOG_OUT_VOLT_H__ + +#include "types.h" +#ifdef __cplusplus +extern "C" { +#endif + +void u8cmd_analog_out_volts(uint8 board_no, uint8 pin, float value); + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /* __CMD_ANALOG_OUT_VOLT_H__ */ |