diff --git a/src/packets/index.ts b/src/packets/index.ts index 66a8ca5..6a73949 100644 --- a/src/packets/index.ts +++ b/src/packets/index.ts @@ -124,10 +124,14 @@ export enum HeartbeatType { } export enum AutoShutdownTime { - Shutdown15min = 1, - Shutdown30min = 2, - Shutdown45min = 3, - Shutdown60min = 4, + /** Usually 15 minutes. */ + ShutdownTime1 = 1, + /** Usually 30 minutes. */ + ShutdownTime2 = 2, + /** May be 45 or 60 minutes (depending on model). */ + ShutdownTime3 = 3, + /** May be 60 minutes or never (depending on model). */ + ShutdownTime4 = 4, } /** Battery charge level */