Replies: 1 comment 5 replies
-
Hi - I believe you may be trying to read the file the wrong way. Files opened with To open it for reading, you need to use |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
For my Data logging I want to append a new line.
var filename = "TEST_6.9_LOG.csv";
var f = require("Storage").open(filename , "a");
f.write("timestamp, x, y, z\n");
I always get a filename with the extension " \u0001" like TEST_6.9_LOG.csv\u0001 and the size of the file is zero.
Beta Was this translation helpful? Give feedback.
All reactions