Questions tagged [micropython]

5 questions
4
votes
3 answers

ESP32 CAM unable to use micropython and connect to the esp

I am trying to install micropython on my esp32 cam. I tried 3 differents ways to do it. First one command and putty I installed python and esptool with pip install esptool. Then I looked wich COM was my esp32 (In my case COM5), then I ereased the…
Gregory Boutte
  • 181
  • 2
  • 8
3
votes
0 answers

Is there any solution to run any RTOS on windows/linux virtual machine?

I am writing firmware for different boards supporting FreeRTOS, Zephyr, ... My problem is when I am developing the firmware, I should run the firmware on the "real" device from the beginning and makes it: Hard to debug the code, view variables, ...…
2
votes
2 answers

Unable to run micropython on ESP32-WROOM

I just took delivery of a trio of ESP32-WROOM-32 dev boards and am unable to get micropython to run on them. I've successfully flashed sketches from the Arduino IDE, but after I flash the latest esp32spiram.bin and try to connect with Thonny, I see…
Darwin von Corax
  • 123
  • 1
  • 1
  • 5
1
vote
0 answers

Creating a Non Blocking socket for making GET requests

I am using an ESP32 with a MicroPython Firmware and want to make asynchronous HTTP requests such as GET request. I have tried using usocket but it did kept throwing OSError 128. I have attached my code for the socket below. I am hoping for a…
0
votes
1 answer

Can't Connect to ESP32 in AP Mode

I'm trying to connect to an ESP32-WROOM-32 in AP mode, using the following micropython code: import network ssidAP = 'WiFi_ESP32' #Enter the router name passwordAP = '12345678' #Enter the router password local_IP =…
Darwin von Corax
  • 123
  • 1
  • 1
  • 5