diff options
author | siddhu8990 | 2017-06-20 15:34:06 +0530 |
---|---|---|
committer | siddhu8990 | 2017-06-20 15:34:06 +0530 |
commit | 0051253bc224286c118c080c79eaed5bf611bd35 (patch) | |
tree | b8198628efac2024ac0592b4a1a14ad1b0233f5c /2.3-1/src/c/scilab-arduino/includes/cmd_analog_out_volt.h | |
parent | 633deb856914bd374d62b3fb3b63447bd81bc03c (diff) | |
parent | 2859e00d3f1da2d4b5b47514161bf0c63fcef83f (diff) | |
download | Scilab2C-0051253bc224286c118c080c79eaed5bf611bd35.tar.gz Scilab2C-0051253bc224286c118c080c79eaed5bf611bd35.tar.bz2 Scilab2C-0051253bc224286c118c080c79eaed5bf611bd35.zip |
Merged with Yash's work. Gui modified for Arduino board selection. Arduino I2C functions 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__ */ |