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
It's not the Arduino IDE version that matters, but the version of ArduinoCore-samd (and our SodaqCore-samd which is a derivative of it). In version ArduinoCore-same 1.6.7 they introduced String.toDouble.
If you're using the SODAQ ONE board then you should be using the 1.6.14 of our SodaqCore-samd boards files.
Maybe it was not the intention of the software to support other boards, but I got this to work on the track and trace board:http://www.allthingstalk.com/lorawan-track-and-trace
Had to make a small change to
//_speed = speed.toDouble();
_speed = speed.toInt();
and then it works fine for me. I could not get toDouble() to compile on my Arduino 1.8.4 IDE libs, but used toInt() instead.
The text was updated successfully, but these errors were encountered: