MicroPython_ESP32_psRAM_LoBo
MicroPython_ESP32_psRAM_LoBo copied to clipboard
MicroPython for ESP32 with psRAM support
Hello, I dont know if I am just not looking in the right places, but I cannot find how to implement the SSD1351 OLED display into the display module built...
I still dont understand why, but the pyserial for python 2.7 apparently works differently than 3, because I get errors concerning pyserial with only python 3 installed (ex. Ubuntu 20.04)....
I created a dumb example in order to test the Neopixel module: ``` import machine import time np = machine.Neopixel(22, 5, machine.Neopixel.TYPE_RGB) np.brightness(100) for pos in range(1, 5): np.set(pos, 0xFF0000)...
Hi. Idk if this project is still supported, but i have got some troubles when using multithreading with gc.collect(). This issue is particulary same as #241, but just I hope...
I am finding PWM behaving less accurately for over 1Khz frequency. Is there a way to reduce the duty resolution to 1 bit? I only need 50% duty cycle.
I'd like to use the [Stage library](https://github.com/python-ugame/micropython-stage) with the LoBo MicroPython. However, the build instructions rely on base MicroPython compilation support, in particular the `USER_C_MODULES` parameter to `make`. Here is...
I have come across a can bus implementation for esp-idf (https://github.com/ThomasBarth/ESP32-CAN-Driver). There is also an implementation for the pyboard available here https://github.com/micropython/micropython/blob/master/tests/pyb/can.py. Are there any plans to support CAN BUS?...
We have an issue where the MQTT client is connected to server and all work fines. But if we stop the server, the client is not detecting that the server...
Hi, can't find ucryptolib module, any plan to get it on lobo's firmware ? he's implemented in micropython original firmware v1.11. Thanks
 not correctly work MISO = not connected, but display lib required **miso** parameter, im set to pin 0 ``` >>> tft.init(tft.ST7789, rst_pin=23, backl_pin=4, miso=0, mosi=19, clk=18, cs=5, dc=16, width=135,...