Skip to content

v2.8.1 : File System Update

Compare
Choose a tag to compare
@pradosh-arduino pradosh-arduino released this 07 Oct 13:01
· 34 commits to main since this release
f5c7df0
  • Implemented a new library called FileSystem
  • Implemented readFile function you use it like:
foo = readFile("C:\hello.txt")
  • Implemented writeFile function you use it like:
writeFile("C:\hello.txt", "How%0aYea?")
  • Implemented appendFile function you use it like:
appendFile("C:\hello.txt", "How%0aYea?")
  • Implemented deleteFile function you use it like:
deleteFile("C:\hello.txt")
  • Implemented moveFile function you use it like:
moveFile("C:\hello.txt", "world.txt?")
  • Implemented createFile function you use it like:
createFile("C:\hello.txt")
  • Implemented readlineFile function you use it like:
foo = readlineFile("C:\hello.txt", 1)

other than file system

  • You can get user input, like:
foo = userInput()

Support for ARM Hardware