Search found 4 matches

by Rocket2022
Fri Jul 22, 2022 7:27 pm
Forum: ESP32 boards
Topic: ESP-Now support for ESP32 (and ESP8266)
Replies: 368
Views: 1618229

Re: ESP-Now support for ESP32 (and ESP8266)

Hi Glenn,

thanks you are right. I forgot the True value...
Now it's working properly.
self.wlan.active() should be self.wlan.active(True).
BR
Marco
by Rocket2022
Thu Jul 21, 2022 7:28 pm
Forum: ESP32 boards
Topic: ESP-Now support for ESP32 (and ESP8266)
Replies: 368
Views: 1618229

Re: ESP-Now support for ESP32 (and ESP8266)

I also double checked this image:

https://github.com/glenn20/micropython- ... ENERIC.bin

BTW:
I fixed the

Code: Select all

from esp import espnow
to

Code: Select all

import espnow
by Rocket2022
Thu Jul 21, 2022 1:17 pm
Forum: ESP32 boards
Topic: ESP-Now support for ESP32 (and ESP8266)
Replies: 368
Views: 1618229

Re: ESP-Now support for ESP32 (and ESP8266)

Hi, I'm trying to get esp_now running and created a controller class to handle the esp_now stuff. When I try to sent a simple data string, I've got an internal error (Error: (-12394, 'ESP_ERR_ESPNOW_INTERNAL')). I'm using the "firmware-esp32-GENERIC.bin" image. Has someone an idea what can be wrong?...