Search found 20 matches

by kindmartin
Sat Jul 30, 2022 2:56 am
Forum: Development of MicroPython
Topic: Cellular / modem comunnications port
Replies: 3
Views: 20574

Re: Cellular / modem comunnications port

Thanks P_J. I will try that network.PPP and comment also over here. I have also SIM7600 SA also with PCIE for those Lilygo ttgo-PCIe ESP32 board. I will be trying first Quectel BG600 LTE/GPRS small factor with a ESP 32 s3 board as is what I chose for my project, if any is also aiming this modules.
by kindmartin
Mon Jul 18, 2022 12:25 pm
Forum: Development of MicroPython
Topic: Cellular / modem comunnications port
Replies: 3
Views: 20574

Cellular / modem comunnications port

Hi all, I asked this question on /librarys forum part long time ago without response. https://forum.micropython.org/viewtopic.php?f=15&t=10001 After searching for a lib supporting cellular modem modules in latest micropython (now 1.19) and Im not finding anything but that old loboris ESP32 port free...
by kindmartin
Mon Jul 18, 2022 12:12 pm
Forum: ESP32 boards
Topic: running uasyncio in main thread plus in a 2nd thread also with uasyncios ?
Replies: 4
Views: 2827

Re: running uasyncio in main thread plus in a 2nd thread also with uasyncios ?

Thanks Peter. I finished to rewrite all now only using uasyncios sleeps. works greats.
/M
by kindmartin
Mon Jun 20, 2022 5:58 am
Forum: Announcements and News
Topic: MicroPython version 1.19 released
Replies: 18
Views: 88963

Re: MicroPython version 1.19 released

Happy to read how live is this project, it had passed a time from that kickstarter days and in the while I got into basic micropython. thanks to all the team that makes our days more easy with each update.

M
by kindmartin
Mon May 23, 2022 2:14 pm
Forum: ESP32 boards
Topic: running uasyncio in main thread plus in a 2nd thread also with uasyncios ?
Replies: 4
Views: 2827

Re: running uasyncio in main thread plus in a 2nd thread also with uasyncios ?

Running uasyncio in multiple threads is not supported: see this issue . Why do you believe that uasyncio in a single thread cannot solve your problem? Thanks Pete, you make me think on how one can retribute your kind attention. Ok with those issues running a separate instance ok uasyncio. I will ne...
by kindmartin
Fri May 20, 2022 6:44 am
Forum: ESP32 boards
Topic: running uasyncio in main thread plus in a 2nd thread also with uasyncios ?
Replies: 4
Views: 2827

running uasyncio in main thread plus in a 2nd thread also with uasyncios ?

HI all here, I m trying to make some multi threading code and Im stuck getting errors and rebooting due to Guru panics . The actual code is like running in a thread a main program path with uasyncio coroutines that works ok alone, and also if an issue a new thread from there to check every second if...
by kindmartin
Wed Jul 28, 2021 6:07 am
Forum: ESP32 boards
Topic: Console logging ( write a file for debug/analysis)
Replies: 2
Views: 2608

Re: Console logging ( write a file for debug/analysis)

something similar to this but on last micropython at ESP32: https://stackoverflow.com/questions/65244427/redirect-stderr-in-micropython import io, os class logToFile(io.IOBase): def __init__(self): pass def write(self, data): with open("logfile.txt", mode="a") as f: f.write(data) return len(data) # ...
by kindmartin
Wed Jul 28, 2021 4:34 am
Forum: ESP32 boards
Topic: Console logging ( write a file for debug/analysis)
Replies: 2
Views: 2608

Console logging ( write a file for debug/analysis)

Hi all, I was searching here and in the web too what options could I have to debug a wrover E module that run some threads and asyncio coroutines, but sometimes stop on those when the module is the field without me at the serial console. Im sure I could easily debug it if I would be there all the ti...
by kindmartin
Thu Jun 03, 2021 7:04 am
Forum: ESP32 boards
Topic: combined touch and ext0 wakes get "ValueError: no resources" ?
Replies: 2
Views: 1668

Re: combined touch and ext0 wakes get "ValueError: no resources" ?

some other reference suggesting use ext1 as a workaround but it doesn't work either/ >>> import lib_full as lib >>> sensor2 = lib.machine.Pin(2, lib.machine.Pin.IN, lib.machine.Pin.PULL_UP) # sensor INT2 >>> wake = lib.machine.Pin(32, mode = lib.machine.Pin.IN) >>> touch = lib.machine.TouchPad(wake)...