-
this seem better to use a library for all the sensor i experimented lot of icompatibility when trying to setup a screen with sensors |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
the libraries in the repository are all C libraries. Arduino is (a variant of) C++. a C++ application can use C libraries. include one in your arduino code. #include <whatever.h> replace no, we don't have examples for Arduino. |
Beta Was this translation helpful? Give feedback.
-
you mean none ever used this library for arduino ? |
Beta Was this translation helpful? Give feedback.
the libraries in the repository are all C libraries. Arduino is (a variant of) C++. a C++ application can use C libraries. include one in your arduino code.
replace
whatever.h
with the one you want to use. in theory, all the example should work if you pastemain()
in the example intosetup()
, and other functions to outside ofsetup()
.no, we don't have examples for Arduino.