Translations and integrated BT tethering

This commit is contained in:
jens 2021-11-27 02:03:51 +01:00
parent 15637e914d
commit 034c76fe30
1 changed files with 57 additions and 0 deletions

View File

@ -0,0 +1,57 @@
package com.jens.automation2.receivers;
import android.content.Context;
import android.hardware.Sensor;
import android.hardware.SensorEvent;
import android.hardware.SensorEventListener;
import android.hardware.SensorManager;
public class DevicePositionListener implements SensorEventListener
{
// https://developer.android.com/guide/topics/sensors/sensors_position#java
private SensorManager sensorManager;
private final float[] accelerometerReading = new float[3];
private final float[] magnetometerReading = new float[3];
public DevicePositionListener(Context context)
{
sensorManager = (SensorManager) context.getSystemService(Context.SENSOR_SERVICE);
}
/*
Azimuth (degrees of rotation about the -z axis).
This is the angle between the device's current compass direction and magnetic north. If the top edge of the device faces magnetic north, the azimuth is 0 degrees; if the top edge faces south, the azimuth is 180 degrees. Similarly, if the top edge faces east, the azimuth is 90 degrees, and if the top edge faces west, the azimuth is 270 degrees.
Pitch (degrees of rotation about the x axis).
This is the angle between a plane parallel to the device's screen and a plane parallel to the ground. If you hold the device parallel to the ground with the bottom edge closest to you and tilt the top edge of the device toward the ground, the pitch angle becomes positive. Tilting in the opposite direction moving the top edge of the device away from the groundcauses the pitch angle to become negative. The range of values is -180 degrees to 180 degrees.
Roll (degrees of rotation about the y axis).
This is the angle between a plane perpendicular to the device's screen and a plane perpendicular to the ground. If you hold the device parallel to the ground with the bottom edge closest to you and tilt the left edge of the device toward the ground, the roll angle becomes positive. Tilting in the opposite directionmoving the right edge of the device toward the ground causes the roll angle to become negative. The range of values is -90 degrees to 90 degrees.
*/
void getDeviceOrientation()
{
// Rotation matrix based on current readings from accelerometer and magnetometer.
final float[] rotationMatrix = new float[9];
SensorManager.getRotationMatrix(rotationMatrix, null, accelerometerReading, magnetometerReading);
// Express the updated rotation matrix as three orientation angles.
final float[] orientationAngles = new float[3];
SensorManager.getOrientation(rotationMatrix, orientationAngles);
}
@Override
public void onSensorChanged(SensorEvent event)
{
}
@Override
public void onAccuracyChanged(Sensor sensor, int accuracy)
{
}
}