From c47588da6e9d732732247248b8e6d430d1be8192 Mon Sep 17 00:00:00 2001 From: biol75 Date: Tue, 31 May 2016 12:00:29 +0100 Subject: [PATCH] filesystem-example.ion fails to compile Line 33 should be f.close(); --- arduino-ide/filesystem-example/filesystem-example.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arduino-ide/filesystem-example/filesystem-example.ino b/arduino-ide/filesystem-example/filesystem-example.ino index 782dd2c..353a5ad 100644 --- a/arduino-ide/filesystem-example/filesystem-example.ino +++ b/arduino-ide/filesystem-example/filesystem-example.ino @@ -30,7 +30,7 @@ void setup() { } } - file.close(); + f.close(); } void loop() {