Multi ESP32 signals not fused #255
Replies: 6 comments 9 replies
-
|
I'm having a similar issue! |
Beta Was this translation helpful? Give feedback.
-
|
Same |
Beta Was this translation helpful? Give feedback.
-
|
I also setup 3 ESP32-S3, and config with "python firmware/esp32-csi-node/provision.py --port COM7 --ssid "YourWiFi" --password "YourPassword" --target-ip 192.168.1.20 --node-id 1" command, but when I use the aggregator to listen the data, it will receive data from 3 different IP but same node_id 1. Do you know why? Or how do you config the node-id? |
Beta Was this translation helpful? Give feedback.
-
|
I also have the same issure where i flashed 4 nodes with different node id but when i listen to them using nodes endpoints i found only one node id sending data, did you guys found any solution? |
Beta Was this translation helpful? Give feedback.
-
|
I'm having a similar issue! |
Beta Was this translation helpful? Give feedback.
-
|
Hey, I've run into similar issues before. The most likely problem is that you're getting RSSI data (just signal strength) instead of CSI data (the detailed channel information you actually need for pose estimation and people counting). Standard WiFi libraries only give you RSSI, which can detect movement/vitals but is useless for positioning or counting people. To get CSI on ESP32-S3, you need to use ESP-IDF's esp_wifi_set_csi_rx_cb() function — the Arduino library won't work. Also, make sure your network actually has traffic flowing (add some constant pings or UDP packets), because CSI only generates data when packets are actively being sent. Before trying multi-node fusion, get a single node working first using something like the RuView firmware — once you see pose estimation working on one device, then worry about combining signals from all three. |
Beta Was this translation helpful? Give feedback.

Uh oh!
There was an error while loading. Please reload this page.
-
I prepared 3 ESP32-S3, connected to AP from raspberry pi, and host the aggregator (main server) on the pc. Can receive signals from different node ids but not triggering any kind of signal fusion and fail to detect people count/ pose at all. Barely can say the signal is changing while moving (vitals) but nothing about position / pose is working.
trim.DFF94B10-0DA2-428E-A846-799CA996297E.MOV
Beta Was this translation helpful? Give feedback.
All reactions