#!/usr/bin/env python3
"""
Pushover configuration for solar monitor notifications
"""

# Import credentials
from pushover_credentials import PUSHOVER_USER_KEY, PUSHOVER_APP_TOKEN

# Notification Settings
NOTIFICATION_INTERVAL = 15  # minutes
NOTIFICATION_TITLE = "⚡ Solar Update"
NOTIFICATION_SOUND = "cosmic"  # Pushover sound name
NOTIFICATION_PRIORITY = 0  # Normal priority

# Data thresholds for alerts
POWER_THRESHOLD = 5.0  # kW - alert if power drops below this
ENERGY_THRESHOLD = 10.0  # kWh - alert if daily energy below this 