how to separate multiple sensors?

1 visualizzazione (ultimi 30 giorni)
the ig
the ig il 14 Mar 2017
Commentato: Denis Bogomolov il 30 Giu 2019
With MathWorks Mobile Sensor Connectivity for iOS and android it is possible to get realtime sensor data from these devices. There is one problem: when multiple devices are simultaneously connected, the respective sensor data is not "separated" by channel, but all data is mixed together. For instance:
connector on
m = mobiledev
m.OrientationSensorEnabled = 1;
m.Logging = 1;
pause(38)
m.Logging = 0;
[o, to] = orientlog(m);
plot(to, o(:,2));
legend('Roll');
xlabel('Relative time (s)');
In the previous example two devices were active, as it can be seen, there is an unique timeseries containing samples from all the sources. How could I get separated channels, one for each device (to be controlled independently, one from the other)?

Risposte (0)

Categorie

Scopri di più su MATLAB Mobile in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by