-
i am not sure how to import c++ libraries like ones rust uses |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
what lcd do you use? |
Beta Was this translation helpful? Give feedback.
-
As @djdisodo wrote, don't attempt using C++ arduino libraries in Rust. Getting this to work is very complex and for most libraries, it will probably be faster to simply rewrite them in pure rust instead. Or check the |
Beta Was this translation helpful? Give feedback.
-
Thanks guys |
Beta Was this translation helpful? Give feedback.
As @djdisodo wrote, don't attempt using C++ arduino libraries in Rust. Getting this to work is very complex and for most libraries, it will probably be faster to simply rewrite them in pure rust instead. Or check the
embedded-hal
ecosystem if someone else already wrote a crate that does what you need :)