You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tired to use all of the examples LIDARLite -> v4LED folders, and all of them have some form of the error message: "no macthing function for cal to 'LIDARLite_v4LED::write(Int, uint8_t*, int, int)'. Someone in the Arduino forum pointed out that the int parameters don't match.
The text was updated successfully, but these errors were encountered:
As you'll see discussed in that forum, "int" does not refer to the same length of variable, depending on the "natural" length of data on the host system. If it's an 8 bit system, then an int is 8 bits. If it's a 16 bit sytem, then an int is 16 bits. You get the idea... I won't repeat everything here because the discussion at the link is very well written by authors who are quite articulate on the subject.
I tired to use all of the examples LIDARLite -> v4LED folders, and all of them have some form of the error message: "no macthing function for cal to 'LIDARLite_v4LED::write(Int, uint8_t*, int, int)'. Someone in the Arduino forum pointed out that the int parameters don't match.
The text was updated successfully, but these errors were encountered: