Skip to content

Commit 101d3f4

Browse files
committed
Fix WiFIStorage example for FW 1.1.0
1 parent 84969aa commit 101d3f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/WiFiStorage/WiFiStorage.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
APIs are modeled on SerialFlash library (not on SD) to speedup operations and avoid buffers.
44
*/
55

6-
#include <WiFi1010.h>
6+
#include <WiFiNINA.h>
77

88
void setup() {
99

@@ -17,7 +17,7 @@ void setup() {
1717
while (true);
1818
}
1919

20-
WiFiStorageFile file = WiFiStorage.open("/storage/testfile");
20+
WiFiStorageFile file = WiFiStorage.open("/fs/testfile");
2121

2222
if (file) {
2323
file.erase();

0 commit comments

Comments
 (0)