Search found 3 matches

by Oct_opus
Mon Aug 12, 2019 12:48 pm
Forum: Programs, Libraries and Tools
Topic: Asynchronous requests
Replies: 5
Views: 3850

Re: Asynchronous requests

Thank you for the info. ENOMEM is a memory error. Did you try to increase the stack size for the thread? I tried the _thread.stack_size method but I still get the same error. It's weird because even if I only put a useless function like this inside a thread and everything outside of it the network c...
by Oct_opus
Sun Aug 11, 2019 3:54 pm
Forum: Programs, Libraries and Tools
Topic: Asynchronous requests
Replies: 5
Views: 3850

Re: Asynchronous requests

Thank you for your responses. I'm not really looking into using another device alongside the smart watch project as it would only add complexity. Currently I can turn my phone into a wifi hotspot and use it as is. I could maybe in a second time add bluetooth to the project and the make a mobile nati...
by Oct_opus
Sat Aug 10, 2019 5:02 pm
Forum: Programs, Libraries and Tools
Topic: Asynchronous requests
Replies: 5
Views: 3850

Asynchronous requests

Hello everyone, I have recently started making a smart watch project using the ESP32 board with OLED using Micropython. https://github.com/Oct-opus/Ayon When adding GET requests to fetch from Google Drive, I found out about network requests blocking the OLED from updating. I was happy to change my c...