Just got my new QWIIC OpenLog board a week ago. Have been battling to make it run any of the example Arduino sketches. Turns out my issues are due to the board being incompatible with two of the three processor boards I’ve tried, none of which are from SparkFun.
- Arduino UNO R4 WIFI - does not work at all with OpenLog.
- Arduino NANO R4 - does not work at all with OpenLog
- Adafruit Metro Mini - works with all example sketches I’ve tried so far.
Limitation though is that when you read directories (Example7) you can only see the old 8.3 format file names in all caps. And to change directory before reading to something like “Arduino/sketches/”, you have to do it like
myLog.changeDirectory("ARDUINO/"); // added line
myLog.changeDirectory("LIBRAR~1/"); // added line
myLog.searchDirectory("*"); //Give me everything
Kind of annoying….
Thomas W Rackers