leonyuhanov / ESP-NOW-TX-RX

A very basic TX and RX demo for the ESP-NOW Protocol for the ESP8266 & ESP32
Apache License 2.0
87 stars 13 forks source link

Read / poll RSSI values from Tx / Rx #6

Closed yashmulgaonkar closed 1 year ago

yashmulgaonkar commented 1 year ago

Hello, Is there a way to read RSSI values on the Tx / Rx without polling for all access points?

leonyuhanov commented 1 year ago

@yashm not sure, I would suggest looking through their SDK.

TD-er commented 1 year ago

Please double check whether your system still works fine regarding sending/receiving ESP-NOW packets when you frequently call the RSSI from your WiFi object. The same applies for WiFi scanning.

You can however add an event callback when you're being scanned. In this event, there is an RSSI value of the one scanning you. This way you know the RSSI of the other node and typically the RSSI is in the same order of magnitude in both directions.

leonyuhanov commented 1 year ago

@TD-er this repo is a very simple get started guide for espnow,I havnt included anything to do with rssi in this.