12-29-2020, 03:27 PM
The "accX", "magX" etc. refer to a buffer name set in the experiment configuration that you are currently running on phyphox. Unfortunately, every configuration can set individual names for each buffer (or "data-containers") and some buffers only hold interim results. If you are looking for a specific configuration (i.e. an entry from the main menu of phyphox), you can check the configurations on github: https://github.com/Staacks/phyphox-experiments
Open the corresponding configuration and either search for "data-container" to find all the names of the buffers or search for "<graph>" to find which buffers are assigned to the x and y axis of a specific plot or for "<export>" to find the buffers that are set to be exported if the user selects this function from the menu (probably better as those are the buffers with the presented results).
If you want to write code that works with any experiment, you can also get the list of buffers and inputs from the "/config" endpoint of the REST API: https://phyphox.org/wiki/index.php/Remot...#.2Fconfig
This feature was not yet available in 2017, but it should make it easier to find the possible names for any active configuration. This also exposes the export configuration which gives you "good" buffer names (those suitable to be exported) with appropriate labels.
Open the corresponding configuration and either search for "data-container" to find all the names of the buffers or search for "<graph>" to find which buffers are assigned to the x and y axis of a specific plot or for "<export>" to find the buffers that are set to be exported if the user selects this function from the menu (probably better as those are the buffers with the presented results).
If you want to write code that works with any experiment, you can also get the list of buffers and inputs from the "/config" endpoint of the REST API: https://phyphox.org/wiki/index.php/Remot...#.2Fconfig
This feature was not yet available in 2017, but it should make it easier to find the possible names for any active configuration. This also exposes the export configuration which gives you "good" buffer names (those suitable to be exported) with appropriate labels.