diff options
author | yash1112 | 2017-07-10 17:08:48 +0530 |
---|---|---|
committer | yash1112 | 2017-07-10 17:08:48 +0530 |
commit | 09d11751736a5812ebfc22cd488f51de02e5375a (patch) | |
tree | 603cb29022e575db10ab26fbb75a5cc5bdf01ad8 /2.3-1/tests/unit_tests/testArduino/i2c_master.sci | |
parent | 26ab8620e89571314bc1a828bd9aca3d288eaede (diff) | |
download | Scilab2C-09d11751736a5812ebfc22cd488f51de02e5375a.tar.gz Scilab2C-09d11751736a5812ebfc22cd488f51de02e5375a.tar.bz2 Scilab2C-09d11751736a5812ebfc22cd488f51de02e5375a.zip |
Arduino toolbox error Resolved
Diffstat (limited to '2.3-1/tests/unit_tests/testArduino/i2c_master.sci')
-rw-r--r-- | 2.3-1/tests/unit_tests/testArduino/i2c_master.sci | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/2.3-1/tests/unit_tests/testArduino/i2c_master.sci b/2.3-1/tests/unit_tests/testArduino/i2c_master.sci new file mode 100644 index 00000000..2636185a --- /dev/null +++ b/2.3-1/tests/unit_tests/testArduino/i2c_master.sci @@ -0,0 +1,9 @@ +function i2c_master()
+
+ dev1 = cmd_i2c_dev(1);
+ cmd_i2c_write(dev1,10);
+ sleep(1000);
+ cmd_i2c_write(dev1,9);
+ sleep(1000);
+
+endfunction
|