heliwatch: halve MAX_ALTITUDE to 5_000 ft

This commit is contained in:
Astro 2021-11-22 03:15:31 +01:00
parent aad1a91646
commit 633a418001

View File

@ -6,7 +6,7 @@ use tokio::sync::mpsc::{channel, Receiver};
use super::location::Locations;
/// ft
const MAX_ALTITUDE: u16 = 10_000;
const MAX_ALTITUDE: u16 = 5_000;
/// s
const STATE_TIMEOUT: u64 = 180;