Sub Process_Globals
'These global variables will be declared once when the application starts.
'Public variables can be accessed from all modules.
Public Serial1 As Serial
Private fs As ESP8266FileSystem
End Sub
Private Sub AppStart
Serial1.Initialize(115200)
Log("AppStart")
Log(fs.Initialize)
Log(fs.OpenReadWrite("test"))
Dim b() As Byte = Array As Byte(0x33, 0x55)
fs.Stream.WriteBytes(b, 0, b.Length)
fs.Close
End Sub