Updated detection report constructor in Accelerometer
This commit is contained in:
parent
7e1143880e
commit
b9c66f7533
@ -44,7 +44,7 @@ public class Accelerometer extends Detector implements SensorEventListener {
|
|||||||
|
|
||||||
// In constructor pass Activity, Context and TextView from MainActivity in Accelerometer class
|
// In constructor pass Activity, Context and TextView from MainActivity in Accelerometer class
|
||||||
public Accelerometer(Context context){
|
public Accelerometer(Context context){
|
||||||
super(context); //von Detektor
|
super(); //von Detektor
|
||||||
this.context = context;
|
this.context = context;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -77,8 +77,7 @@ public class Accelerometer extends Detector implements SensorEventListener {
|
|||||||
if (!alarm) {
|
if (!alarm) {
|
||||||
if (betrag > threshold) {
|
if (betrag > threshold) {
|
||||||
alarm = true;
|
alarm = true;
|
||||||
detectionReport = new DetectionReport("Accelerometer1", "Bewegung", betrag);
|
reportViolation("Bewegung", betrag);
|
||||||
reportViolation("Accelo1", "Bewegung", betrag);
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (betrag < threshold) {
|
if (betrag < threshold) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user