summaryrefslogtreecommitdiff
path: root/src/c/scilab-arduino/cmd_i2c_read
diff options
context:
space:
mode:
authoryash11122017-06-19 05:40:46 +0530
committeryash11122017-06-19 05:40:46 +0530
commit369c257b9ae0320621b43ca75b38ff66cc13f37b (patch)
treeb100ab94e7ea15a310be05ee8b647c43c2317fb7 /src/c/scilab-arduino/cmd_i2c_read
parentb33afdb2311fbe8aad4c5c614c6098585fe2d279 (diff)
downloadscilab2c-369c257b9ae0320621b43ca75b38ff66cc13f37b.tar.gz
scilab2c-369c257b9ae0320621b43ca75b38ff66cc13f37b.tar.bz2
scilab2c-369c257b9ae0320621b43ca75b38ff66cc13f37b.zip
1.3 new scilab-arduino functions added2. all functions have been tested on hardware 3. 5 i2c library functions added 4. Now generates code for 27 Boards(arduino and lilypad). 5. New GUI
Diffstat (limited to 'src/c/scilab-arduino/cmd_i2c_read')
-rw-r--r--src/c/scilab-arduino/cmd_i2c_read/u8cmd_i2c_reads.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/c/scilab-arduino/cmd_i2c_read/u8cmd_i2c_reads.cpp b/src/c/scilab-arduino/cmd_i2c_read/u8cmd_i2c_reads.cpp
new file mode 100644
index 00000000..8f02a87e
--- /dev/null
+++ b/src/c/scilab-arduino/cmd_i2c_read/u8cmd_i2c_reads.cpp
@@ -0,0 +1,18 @@
+#include "cmd_i2c_read.h"
+#include "Arduino.h"
+#include "Wire.h"
+
+float u8cmd_i2c_reads(uint8 address, uint8 bytes)
+{
+
+ float c; //variable declaration to save received data
+
+ // request reading from sensor
+ Wire.requestFrom(address, bytes); // request no. of bytes(given) from slave device with address
+
+ // receive reading from sensor
+ while (Wire.available()) //If data is received
+ c = Wire.read(); //Save received data in variable
+ return(c);
+
+}