sharonf:
Arduino Uno WiFi Rev 2
Its an issue with the library. Read this…
@vshymanskyy would you take a look at this please?
The supported hardware list says:
Arduino UNO WiFi Rev.2 (use the example for MKR WiFi 1010)
but when you install support for the Arduino Uno Rev2 from Boards Manager…
[image]
and the latest WiFiNINA library the MKR1010 example from here won’t compile…
There are multiple compiler error messages like this:
In file included from C:\Users\Pete Knight\Documents\Arduino\libraries\Blynk\src/Blynk/BlynkApi.h:36:0,
from C:\Us…
Pete.
1 Like
UPDATE on how to fix this error…
@Andyy has figured-out how to fix this issue, the solution is to edit the Arduino\libraries\Blynk\src\Blynk\BlynkParam.h file in the library as documented here:
Hi Pete,
even though I dint want I was spending quite some time yesterday with forensic work on the Blynk libraries (latest version, 1.01) to find why Arduino Wifi Rev2 can not work with Blynk.Cloud and Blynk library (>ver 0.61). Looking at the specific error during compliation I got I was able to identify one specific library:BlynkParam.h inside …Arduino\libraries\Blynk\src\Blynk
The library BlynkParam.h shows two lines of code: return atoll () but in fact atoll does not exist, it is return a…
Pete.