• Home
  • Game
    Action Simulation RPG Sports Casual Cards Music Puzzle Shooting Romance
  • Apps
    Business Social Lifestyle Shopping Tools Travel Finance Education News Health
  • Articles

English 中文(简体) 中文(繁体) 한국어 日本語 Português Español Русский العربية Indonesia Deutsch Français ภาษาไทย
Home Apps Tools Wireless IMU
Wireless IMU

Wireless IMU

1
2
3
4
5
Download
  • Version 1.2
  • Category Tools
  • Package Name org.zwiener.wimu
  • Update Time February 17, 2025
  • Size 28.72KB
About this app

Turn your smartphone into a wireless inertial measurement unit (IMU).

This app sends the measurements from your phone inertial sensors via UDP as CSV (Comma-Separated Values) to a computer in your network.

This turns your phone into a wireless inertial measurement unit (IMU).

The following sensors are supported:

- Accelerometer

- Gyroscope

- Magnetometer

If your phone has not all these sensors, only the available sensor data is transmitted.

Example UDP packet:

890.71558, 3, 0.076, 9.809, 0.565, 4, -0.559, 0.032, -0.134, 5, -21.660,-36.960,-28.140

Timestamp [sec], sensorid, x, y, z, sensorid, x, y, z, sensorid, x, y, z

Sensor id:

3 - Accelerometer (m/s^2)

4 - Gyroscope (rad/s)

5 - Magnetometer (micro-Tesla uT)

You can run this app in the background.

A warning dialog appears, if you are not connected to a WiFi network.

In the example video, the stream is directly processed by a MATLAB script for Kalman Filtering. But it's up to you, what you do with the data.

With the following Python script you can capture the UDP data stream from your phone:

# -------------------------------------------------------

import socket, traceback

host = ''

port = 5555

s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)

s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)

s.setsockopt(socket.SOL_SOCKET, socket.SO_BROADCAST, 1)

s.bind((host, port))

while 1:

try:

message, address = s.recvfrom(8192)

print message

except (KeyboardInterrupt, SystemExit):

raise

except:

traceback.print_exc()

# -------------------------------------------------------

What's New in the Latest Version 1.2

Last updated on Oct 17, 2015 - Screen rotation problem fixed
- Bug fix (app was not sending data)
Download(28.72KB)
Users also viewed
  • Mi Portal

    Mi Portal

    2.0.55 July 7, 2025
  • Tilburg

    Tilburg

    8 July 7, 2025
  • GIO

    GIO

    1.10.0 July 7, 2025
  • UML Creator

    UML Creator

    1.3 July 7, 2025
  • Assistant Event for Tasker

    Assistant Event for Tasker

    1.4.0 July 7, 2025
  • Man Hair Style Photo Maker

    Man Hair Style Photo Maker

    1.6 July 7, 2025
  • Automatic Call Recorder

    Automatic Call Recorder

    6.55-x July 7, 2025
  • SL Glint Theme

    SL Glint Theme

    1.7 July 7, 2025
  • All of  Korea News(South)

    All of Korea News(South)

    2.4.1 July 7, 2025
  • WeatherSafe

    WeatherSafe

    0.0.2 July 7, 2025
  • Weather Map India

    Weather Map India

    3.19.04 July 7, 2025
  • Piet Art

    Piet Art

    3.7 July 6, 2025
  • VoiceTimeSignal

    VoiceTimeSignal

    5.9.6 July 6, 2025
  • VPN over DNS

    VPN over DNS

    9.0.0 July 6, 2025
  • Adobe Revel

    Adobe Revel

    1.2.0 July 6, 2025
About Privacy Policy Terms of Service Cooking Policy

© Copyright 2017-2025 downzs.com