You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
641 B
34 lines
641 B
import type { Message } from "@bufbuild/protobuf";
|
|
import type { Protobuf } from "@meshtastic/js";
|
|
import { IsBoolean, IsInt, IsNumber, Max, Min } from "class-validator";
|
|
|
|
export class PowerValidation
|
|
implements
|
|
Omit<Protobuf.Config.Config_PowerConfig, keyof Message | "powermonEnables">
|
|
{
|
|
@IsBoolean()
|
|
isPowerSaving: boolean;
|
|
|
|
@IsInt()
|
|
onBatteryShutdownAfterSecs: number;
|
|
|
|
@IsNumber()
|
|
@Min(2)
|
|
@Max(4)
|
|
adcMultiplierOverride: number;
|
|
|
|
@IsInt()
|
|
waitBluetoothSecs: number;
|
|
|
|
@IsInt()
|
|
sdsSecs: number;
|
|
|
|
@IsInt()
|
|
lsSecs: number;
|
|
|
|
@IsInt()
|
|
minWakeSecs: number;
|
|
|
|
@IsInt()
|
|
deviceBatteryInaAddress: number;
|
|
}
|
|
|