Page 1 of 1

ESPNow range/antenna testing (RSSI)

Posted: Wed Apr 20, 2022 6:48 am
by davef
With the RSSI capability in the ESPNow v1.18 versions of the ESP32 at:
https://github.com/glenn20/micropython- ... g24cf16719
I have posted at:
https://github.com/davefes/ESPNow-Range-Testing
a sender and receiver application using a display OLED to give 5 second updates of RSSI.

Re: ESPNow range/antenna testing (RSSI)

Posted: Thu Apr 21, 2022 10:00 am
by tepalia02
Thank you. Are these python scripts only compatible with ESPNOW? Or we can test ESP32-WROOM etc. too?

Re: ESPNow range/antenna testing (RSSI)

Posted: Thu Apr 21, 2022 10:21 am
by davef
You can already test RSSI on the standard ESP32 variants with v1.18.

Code: Select all

rssi = sta_if.status('rssi')
print (str(rssi))

I should made it clearer that I was talking about v1.18 of the ESPNow images at:
https://github.com/glenn20/micropython- ... g24cf16719
for example.

Re: ESPNow range/antenna testing (RSSI)

Posted: Mon Apr 25, 2022 7:26 am
by tepalia02
Thanks a lot for the clarification again.