phyphox Forums
select several sensors simultaneously with smart phone GUI - Printable Version

+- phyphox Forums (https://phyphox.org/forums)
+-- Forum: App-Feedback (https://phyphox.org/forums/forumdisplay.php?fid=6)
+--- Forum: Feature requests (https://phyphox.org/forums/forumdisplay.php?fid=8)
+--- Thread: select several sensors simultaneously with smart phone GUI (/showthread.php?tid=1571)



select several sensors simultaneously with smart phone GUI - Martin Weiß - 06-08-2022

I would like to record GPS data and align them with acceleration, air pressure and others. Basically I would like to record any combination of sensors of my smart phone. Of course the samples for different sensors would in general not be taken at the same time stamps.
The XML format looks as if that is possible, like the sample below from https://phyphox.org/wiki/index.php?title=Phyphox_file_format#Block:_input.
But in the smart phone GUI I can only select one sensor group. Or should I have read some more manuals?

<phyphox version="1.0">
    ...
    <input>
        <sensor type="pressure">
            <output component="x">Pressure</output>
        </sensor>
        <sensor type="accelerometer" average="true" rate="0.5">
            <output component="x">AccX</output>
            <output component="y">AccY</output>
            <output component="z">AccZ</output>
            <output component="t">AccT</output>
        </sensor>
        <audio rate="48000">
            <output>recording</output>
        </audio>
    </input>
    ...
</phyphox>


RE: select several sensors simultaneously with smart phone GUI - Martin Weiß - 06-09-2022

Browsing other parts of the forum, I found out:
- click the "+" sign in the bottom right corner
- select "new simple experiment"
- here one can select sensors as desired
The data are stored in different files with different time stamps.
You can even give a name to your selection which appears in "your simple experiments".
So everything is finde for me, maybe better read the manual first :-)


RE: select several sensors simultaneously with smart phone GUI - Dominik Dorsel - 06-10-2022

Hey,

creating a new experiment in phyphox itself is very limited. Do you know about the phyphox web-editor? To use all available features, you would need to write the experiment directly in xml.


Cheers,
Dominik