This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

Real time data download
#12
(11-03-2021, 11:18 AM)Jens Noritzsch Wrote: Hm, we are talking about smartphone sensors, aren't we? There is a difference between the capabilities of built-in sensors and that what the API provides us. The rates in https://phyphox.org/sensordb/ are upper limits and I could not find anything (common) avove 500 Hz…

Thanks, yes, I found this site a few days ago, and the limit seems to be 500Hz overall. Yes, we are talking about smartphone sensors. But the BMI260 from Bosch seems to be capable of 1600 Hz. So perhaps this is somehow restricted by Android or Apple. Did you know about https://developer.android.com/reference/...ectChannel ?

Your code porposal is still not working for me. I have espesially problems with the "...|acc_time..." connection, so the "or" I think.

The Code I tried is:
Code:
#MIDI configuration M_OUTPUT = "Midi Through:Midi Through Port-0 14:0" M_CHANNEL = 0 M_CONTROLS = [1, 2, 3, 4] #You can send on different CC channels # M_CONTROLS = [70] #phyphox configuration PP_ADDRESS = "http://192.168.178.29:8080" PP_CHANNELS = ["accX", "accY", "accZ", "acc_time"] #If using different CC channels, define multiple phyphox buffers # PP_CHANNELS = ["accY"] import requests import time import numpy value_temp = 0 time_update = 0 count = 0 while True:     if count == 0:         PP_CHANNELS_def = ["acc_time=full","accX=full","accY=full","accZ=full"]     else:         PP_CHANNELS_def = ["acc_time=" + str(time_update), "accX=" + str(time_update) + "|acc_time","accY=" + str(time_update) + "|acc_time","accZ=" + str(time_update) + "|acc_time"] #If using different CC channels, define multiple phyphox buffers     url = PP_ADDRESS + "/get?" + ("&".join(PP_CHANNELS_def))     data = requests.get(url=url).json()     time.sleep(0.04)     count = count + 1     time_update = count * 0.04;     # Uncomment to send pitch bend     time_value = numpy.array(data["buffer"]["acc_time"]["buffer"])     value_x = numpy.array(data["buffer"]["accX"]["buffer"])     value_y = numpy.array(data["buffer"]["accY"]["buffer"])     value_z = numpy.array(data["buffer"]["accZ"]["buffer"])


The error is:

Code:
During handling of the above exception, another exception occurred: Traceback (most recent call last):   File "/home/roman/ownCloud/Documents/Phyphox/phyphox2.py", line 39, in <module>     data = requests.get(url=url).json()   File "/home/roman/anaconda3/envs/phyphox/lib/python3.9/site-packages/requests/api.py", line 75, in get     return request('get', url, params=params, **kwargs)   File "/home/roman/anaconda3/envs/phyphox/lib/python3.9/site-packages/requests/api.py", line 61, in request     return session.request(method=method, url=url, **kwargs)   File "/home/roman/anaconda3/envs/phyphox/lib/python3.9/site-packages/requests/sessions.py", line 542, in request     resp = self.send(prep, **send_kwargs)   File "/home/roman/anaconda3/envs/phyphox/lib/python3.9/site-packages/requests/sessions.py", line 655, in send     r = adapter.send(request, **kwargs)   File "/home/roman/anaconda3/envs/phyphox/lib/python3.9/site-packages/requests/adapters.py", line 498, in send     raise ConnectionError(err, request=request) ConnectionError: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))


Thanks again.
Reply


Messages In This Thread
Real time data download - by jbshute - 11-10-2018, 12:50 PM
RE: Real time data download - by jbshute - 11-10-2018, 02:08 PM
RE: Real time data download - by jbshute - 11-11-2018, 03:03 AM
RE: Real time data download - by jbshute - 11-11-2018, 01:25 AM
RE: Real time data download - by Romaxx - 10-28-2021, 09:40 AM
RE: Real time data download - by Romaxx - 10-28-2021, 01:11 PM
RE: Real time data download - by Romaxx - 11-04-2021, 05:40 PM
RE: Real time data download - by Romaxx - 11-06-2021, 08:40 PM
RE: Real time data download - by Romaxx - 03-26-2022, 11:37 PM
RE: Real time data download - by Romaxx - 11-08-2021, 08:57 PM
RE: Real time data download - by Romaxx - 03-19-2022, 09:23 PM
RE: Real time data download - by Romaxx - 03-22-2022, 08:15 PM
RE: Real time data download - by Romaxx - 03-29-2022, 09:13 PM

Forum Jump: