emg sensor with esp32
Currently, I am working on a project to transfer data from an EMG sensor using an ESP32 to a computer wirelessly. I will use the Wi-Fi available on the ESP32. I have three ESPs, two of which will be used as slaves and one as a master to collect data from them. Then, I will send this data to the computer.
Additionally, after receiving this data on the computer, I can process and display it in Excel or plot it
I think this is long and unprofessional way to do it ... Am i right... And can u segest other ways to do so
Solution:Jump to solution
@wafa_ath
Use ESP-NOW protocol for fast and low-latency communication between the ESP32s, One ESP32 can act as the master to collect data from the other two and then send the collected data to the computer over, then Implement a TCP or UDP server on the computer and have the master ESP32 send the collected data directly to the server....
2 Replies
Solution
@wafa_ath
Use ESP-NOW protocol for fast and low-latency communication between the ESP32s, One ESP32 can act as the master to collect data from the other two and then send the collected data to the computer over, then Implement a TCP or UDP server on the computer and have the master ESP32 send the collected data directly to the server.