For the file system you can use the usual Python file operations. Just look for it in any Python lesson.
Again, I would just like to say thank you very much.
And thank you for the pointer where to look.
I wish there was a reputation function on this forum so I could +1 you rep.
Thanks mate
Is there away to write a value to it in micropython?
Looking to store temperate say 36.60 and then put the esp32 to sleep and then wake up after some time and only change the value if it changes significantly before writing to an e-Ink screen.
Sorry is this goes way beyond a Idiotic question but I cant for the life of me.
Is there anywhere on an esp32 pico D4 to store values that will not be deleted or lost when the primary cores are powered down of the esp32 is powered off?
Warning Newbie alert! Hi guys, I want to use and ESP 32 as a wireless controller for film editing. I have micropython reading the states of the two pins but I lack the understanding of working out the logic of getting micropython to tell me which way the rotary encoder is turning. I know there are 2...
I'm working on a scrolling text demo on the M5Stack and this is my code from m5stack import * from m5ui import * clear_bg(0x222222) btnA = M5Button(name="ButtonA", text="ButtonA", visibility=False) btnB = M5Button(name="ButtonB", text="ButtonB", visibility=False) btnC = M5Button(name="ButtonC", text...
So M5 is a fork of a fork of MicroPython, so this might not be the ideal place to find help. Maybe try http://community.m5stack.com/ But some ideas to try: - Can you try this with a simpler example? Maybe try doing this entirely on the REPL: - Use os.listdir to confirm that the file definitely exis...
I'm struggling to get an image to show on the screen of an m5Stack. I have managed to reduce the file to 6Kb and it is supposed to be on the devices internal storage but it doesn't show on screen. This is my code. from m5stack import * from m5ui import * clear_bg(0x222222) btnA = M5Button(name="Butt...