I wish to transmit real-time sensor data collected by Android smartphone to my computer and do the signal process on my computer. How may I achieve that? Any helpful links to tutorials are very well welcomed.
Either by wireless means or USB cables is acceptable.
When the data are transmitted, how may the computer process them?
I am familiar with Python, and so perferrably use Python to deal with the coming data.
Is it possible for Python to continuously accept newly come data and process them?
I was trying to get real time audio data from my phone to python. The apps mentioned in the other answers can't read the microphone, but phyphox can.
First you choose what you want to measure in phypox, I'll take raw audio as an example, but it probably works for other sensors too and audio types too.
First go to audio autocorrelation and go to the tab raw data. When you press play you can see a graph of what will be received on the pc. Then select "allow remote access" from the menu in the top right. A url appears in at the bottom of the screen.
The following code can be run on your pc and will display a graph of an instantaneous measurement, but it can of course be adjusted to continually receive data:
When looking at other sensors, the full url for
requests.get()
can be found by opening the url that phyphox gives in your browser, then use inspect element, and under the tab "network" a lot of data is coming in. Click on one of these and the link will show up at the top of the headers.