mirror of
https://github.com/ftl/tetra-pei.git
synced 2025-04-03 20:27:30 +02:00
add function to read the current battery charge level
This commit is contained in:
parent
d66831a2da
commit
77e6125438
1 changed files with 14 additions and 0 deletions
|
@ -54,6 +54,20 @@ func RequestTalkgroup(ctx context.Context, requester tetra.Requester) (string, e
|
|||
return parts[1], nil
|
||||
}
|
||||
|
||||
const batteryChargeRequest = "AT+CBC?"
|
||||
|
||||
var batteryChargeResponse = regexp.MustCompile(`^\+CBC: .*,(\d+)$`)
|
||||
|
||||
// RequestBatteryCharge reads the current battery charge status according to [PEI] 6.9
|
||||
func RequestBatteryCharge(ctx context.Context, requester tetra.Requester) (int, error) {
|
||||
parts, err := requestWithSingleLineResponse(ctx, requester, batteryChargeRequest, batteryChargeResponse, 2)
|
||||
if err != nil {
|
||||
return 0, err
|
||||
}
|
||||
|
||||
return strconv.Atoi(parts[1])
|
||||
}
|
||||
|
||||
const signalStrengthRequest = "AT+CSQ?"
|
||||
|
||||
var signalStrengthResponse = regexp.MustCompile(`^\+CSQ: (\d+),(\d+)$`)
|
||||
|
|
Loading…
Add table
Reference in a new issue