I have a C code I want to embed with Arduino .ino
, this code using some shared library (.so
) present in current working directory. How can I build and upload this code to my Arduino Yun
using Arduino IDE (or any other method).
If I'm doing it the hard way, please suggest what's the right thing to do here.
"Use Bridge
to access Linux side of Arduino Yun you're using and run bash
or python
or even C using yun-gcc
programs. This will help you embedding shared (.so
) libraries for C and importing other libraries also to expand your scope you're working on. Good luck!"