-
Hi. First time using that device. Im a beginner coder that already made some projects with Python in a Raspberry pi but I never use Micropython (also never use a esp32) I buy the Nodemcu esp32s to manage the matrix of the switches. and control some led with a mcp23017 attached. This are the specs of my device:
Because im more familiar with python, i suppose that micropython will do the job here. Also, i see that there is a mcp23017 module for micropython. -----But, what about the bluetooth thing? (i saw this: micropython-lib/micropython Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Use the high-level aioble package for Bluetooth. https://github.com/micropython/micropython-lib/blob/master/micropython/bluetooth/aioble/README.md |
Beta Was this translation helpful? Give feedback.
-
4 MB is a lot of FLASH space, can do a lot with that. 512 kB RAM can be limiting sometimes, but not for such a low-data-intensity application as this. |
Beta Was this translation helpful? Give feedback.
4 MB is a lot of FLASH space, can do a lot with that. 512 kB RAM can be limiting sometimes, but not for such a low-data-intensity application as this.