Still haven't found any luck through searching on this one as most of my results talk about far more complex projects that aren't being hosted on the ATOM. Is it possible to use the EZData library with the ATOM Matrix? If so, is there a list of common libraries that do or don't work so I can get a better idea of what my limits are?
O
Latest posts made by otacon239
-
RE: Unable to create simple EZData entries on M5Stack Atom Matrix
-
Unable to create simple EZData entries on M5Stack Atom Matrix
I've made the simplest example of an EZData Post I could using UIFlow with the following Pyhton output:
from m5stack import * from m5ui import * from uiflow import * from flow import ezdata import wifiCfg rgb.set_screen([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]) wifiCfg.autoConnect(lcdShow=False) ezdata.setData('[key removed]', 'asdf', '1')
When I try and run this, I get the following back in the serial terminal:
Traceback (most recent call last): File "flow/m5cloud.py", line 82, in _exec_fun File "<string>", line 17, in <module> File "flow/ezdata.py", line 13, in setData Exception: [Errno 12] ENOMEM
Is this hardware just not powerful enough for the EZData library?