Browse Source

Commit before cleaning project for merge

tw
Tobias Wolz 11 months ago
parent
commit
81e04e370a

+ 1
- 1
app/src/main/java/com/example/ueberwachungssystem/Detector.java View File

@@ -22,7 +22,7 @@ abstract public class Detector {


/** Triggers onDetectionListener - call this to trigger violation/alarm */
private void reportViolation(String detectorID, String detectionType, float amplitude) {
public void reportViolation(String detectorID, String detectionType, float amplitude) {
if (listener != null) {
DetectionReport detectionReport = new DetectionReport(detectorID, detectionType, amplitude);
listener.onDetection(detectionReport);

+ 1
- 0
app/src/main/java/com/example/ueberwachungssystem/MicrophoneDetector.java View File

@@ -292,6 +292,7 @@ public class MicrophoneDetector extends Detector {
if (progress[0].maxAmp >= Schwellwert_Alarm+kalibierWert && armed == true) {
armed = false;
detectionReport = new DetectionReport("Mic1", "Audio", maxAmpPrint);
//reportViolation("Mic1", "Audio", maxAmpPrint);
logger.log("");
logger.log("Alarm!");
logger.log(detectionReport.toString());

+ 2
- 0
app/src/main/res/layout/activity_main.xml View File

@@ -11,6 +11,8 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Log"
app:layout_constraintBottom_toTopOf="@+id/graph"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/TglBtn_Mic" />


Loading…
Cancel
Save