Skip to main content

All Questions

1 vote
2 answers
587 views

Espnow on esp8266 micropython OSError: -3

I was recantly experimenting with espnow in micropython. Sudenly I rann Into A Problem wenn trying to run this code: import network, espnow, time wlan_sta = network.WLAN(network.STA_IF) wlan_sta....
Atschi37's user avatar
1 vote
1 answer
491 views

ECONNABORTED when attempting to connect ESP32 and ESP8266

I'm attempting to connect an ESP32 and ESP8266 via sockets with micropython. I cannot get the ESP8266 client to connect to the ESP32 server without throwing an ECONNABORTED 103 error. Code is below, ...
broke student's user avatar
2 votes
1 answer
944 views

Why Micropython doesn't support any of the keypress modules like pygame/pynput/keyboard.?

I have been trying to work logics on esp8266 and esp 32 via micro python and it turns out that micro python does not let you control the hardware fully with your keyboard. It is inconvenient to press ...
Sunny Ahir's user avatar
0 votes
1 answer
989 views

How to detect hardware type (ESP32 or ESP8266) in MicroPython?

How can I detect if my MicroPython script is running on ESP32 or ESP8266? I want to make it work on both platforms, but deep sleep requires different implementation depending on the hardware.
Andrey Vetlugin's user avatar
0 votes
1 answer
1k views

Micropython - how to get receive data in background

I am using ESP8266 (Wemos D1 mini) with MicroPython to display on OLED actual time with seconds and temperature from my local weather staion. Fragment of code try: while True: now = ...
Tikky's user avatar
  • 1,273
1 vote
1 answer
1k views

urequests micropython problem (multiple POST requests to google forms)

I'm trying to send data to Google Forms directly (without and external service like IFTTT) using an esp8266 with micropython. I've already used IFTTT but at this point is not useful for me, i need a ...
MoustachedBird's user avatar