Hi all,
I'm using IDE 1.8.13 for NANO 33 IoT (reinstalled on this morning) and it seems there is a problem with the Wire library version, the error is:
'class TwoWire' has no member named 'setWireTimeout'; did you mean 'setTimeout'?
when trying to compile an ultra simple sketch:
#include <Wire.h>
void setup() {
Wire.begin();
Wire.setWireTimeout(25000, true);
Wire.end();
}
void loop() {
// put your main code here, to run repeatedly:
}
It seems to get an old library, I see that in a detailed error message:
Utilisation de la bibliothèque Wire version 1.0 dans le dossier:
C:\Users\xxx\AppData\Local\Arduino15\packages\arduino\hardware\samd\1.8.6\libraries\Wire
What should I do ?