MicroPython_ESP32_psRAM_LoBo icon indicating copy to clipboard operation
MicroPython_ESP32_psRAM_LoBo copied to clipboard

MicroPython for ESP32 with psRAM support

Results 105 MicroPython_ESP32_psRAM_LoBo issues
Sort by recently updated
recently updated
newest added

I did the following test code: ``` import time init_time = time.time() time.sleep_us(1000000) print('exec time: ', str(time.time() - init_time)) ``` It gaves me the following output: `exec time: 0.102143` I...

Here's a test code I made: ``` import _thread import utime def test(): while True: start_time = utime.time() utime.sleep(2) print('Delta Time: ', str(utime.time() - start_time)) th_id = _thread.start_new_thread('test', test, ())...

Hi, Is that 5 sleep mode supported by the Lobo MicroPython? https://lastminuteengineers.com/esp32-sleep-modes-power-consumption/ Thank you.

This request is related to the following `curl` [feature note](https://github.com/loboris/MicroPython_ESP32_psRAM_LoBo/wiki/curl#Features): > If TLS is enabled, the module uses mbedTLS and more memory is required. > If not using psRAM, you...

The UART deinit() method always returns `ValueError: Cannot stop UART task` Caused by a bug in the C implementation in function=machine_uart_deinit(), file=machine_uart.c. Fixed by changing test for `tmo` With bug:...

Error Log ``` >>> 0x402691d3: mp_decode_uint_skip at /home/averes/projects/esp32-logger/micropython-loboris/MicroPython_BUILD/components/micropython/py/bc.c:68 (discriminator 1) Guru Meditation Error: Core 1 panic'ed (LoadStoreError). Exception was unhandled. Core 1 register dump: PC : 0x402691d3 PS : 0x00060d30...

I'm using a TFT ILI9341 module with XPT2066 touch controller, like this one: ![2.4" 240x320 ILI9341 conroller with Touch panel](https://raw.githubusercontent.com/loboris/MicroPython_ESP32_psRAM_LoBo/master/Documents/disp_ili9341.jpg) While the display works fine and a touch can be...

As the MicroPython commit being synced with (`bcfff4fc98a73c5ad9b7d3e338649955e861ada4`) is almost 1 year old is anyone working on using a more up-to-date version of the MicroPython source? Thanks Wayne

I am using the curl module and I ran into problems when it comes to DNS resolution ### Example 1 using curl ```python import curl curl.get('google.com') (-5, '', '') ```...

I have the display module working with a TTGO V1.0 ( 4M PSRAM) module driving a ILI9341 screen, using latest firmware 21-3-18 The display functions work fine, however, touch screen...