You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Actually homebrewed fprintf_ works fine (SD file checked on PC), just fscanf_ muddles all up.
Up to now I've used a homebrewed function fscanf_ but it doesn't work for floats in larger files (>400 elements), neither by 1.6.1 nor by 1.6.3 nor by 1.6.5.
I don't understand unfortunately how in your topic they can read and write strings sequentially from an SD file and convert it to int or float. There also are no Arduino SD class functions available like, e.g., SD.freadFloat() or SD.freadDouble() or SD.freadInt16() or SD.freadInt32(). In principle, a file system plus ANSI C stdio.h functionality would be best (i.e., fprintf, fscanf) because they work with standard format strings ("%f %d %ld" ) both for writing to and reading from an SD file.
Urgently needed: ANSI-C-like
fprintf()
,fscanf()
Actually homebrewed
fprintf_
works fine (SD file checked on PC), justfscanf_
muddles all up.Up to now I've used a homebrewed function
fscanf_
but it doesn't work for floats in larger files (>400 elements), neither by 1.6.1 nor by 1.6.3 nor by 1.6.5.These are the homebrewed functions:
Code:
The text was updated successfully, but these errors were encountered: