4: Add new AlarmSeverity enum

This commit is contained in:
2026-06-19 11:53:57 +02:00
parent 55cdec29f4
commit dc82a5f684
@@ -0,0 +1,9 @@
package com.r35157.jupiterperpsalarm;
public enum AlarmSeverity {
EMERGENCY, // Repeated wake-up alarm
CRITICAL, // One-shot wake-up alarm
WARN, // Audible warning respecting quiet hours
INFO, // Low-priority visible notification
SILENT // No user interruption
}