Get Battery Temperature
Summary
- Internal name:
GetBatteryTemperature - Category: Battery
- Purpose: Read the current battery temperature in degrees Celsius. Useful for detecting overheating conditions during automated tests.
- Task type: Normal
Compatibility
-
Minimum AndroMate version:
1.1.0 -
Maximum AndroMate version:
1.1.0 -
Minimum Android:
Android 13 (API 33) -
Maximum Android tested:
Android 16 (API 36) -
Required permissions: None
Detailed description
The Get Battery Temperature task reads the battery temperature from the Android battery broadcast (ACTION_BATTERY_CHANGED). Android reports temperature in tenths of a degree Celsius (e.g. 365 = 36.5 °C), which this task converts to a decimal string before storing in value_output.
No special permissions are required — ACTION_BATTERY_CHANGED is a protected system broadcast available to all apps.
Input parameters
This task has no input parameters.
Output parameters
| Field | Type | Trigger condition | Android Compatibility | AndroMate Compatibility | Default |
|---|---|---|---|---|---|
value_output |
String | Always on success — battery temperature as a decimal string in °C (e.g. "36.5") |
Android 13 (API 33) → Android 16 (API 36) | 1.1.0 → 1.1.0 | <ANDROMATE_NULL_VALUE> |
Exceptions
This task does not throw exceptions. If the temperature cannot be read, Android returns 0, which is stored as "0.0" in value_output.
Execution flowchart
flowchart TD
Start([▶ GetBatteryTemperature]) --> Register[📡 Register ACTION_BATTERY_CHANGED\none-shot receiver]
Register --> ReadTemp[🌡️ Read EXTRA_TEMPERATURE\ndivide by 10.0]
ReadTemp --> StoreResult[💾 Set value_output\nStrTaskResult]
StoreResult --> LogReport[📋 Log report]
LogReport --> Success([✅ StrTaskResult])
style Start fill:#e3f2fd
style Success fill:#c8e6c9
style Register fill:#fff9c4
style ReadTemp fill:#f3e5f5
style StoreResult fill:#c8e6c9
How it works:
- Register battery receiver: registers a one-shot receiver for
ACTION_BATTERY_CHANGED - Read temperature: extracts
EXTRA_TEMPERATURE(in tenths of °C) and divides by10.0 - Store result: sets
value_outputwith the temperature string in °C - Result: returns
StrTaskResult
Code examples
Example 1 — Read battery temperature
{
"GetBatteryTemperature": [
{
"id": "1",
"title": "Check battery temperature",
"value_output": "$battery_temp"
}
]
}
Input parameter details
This task has no input parameters.
Output parameter details
value_output — Battery temperature in °C
Stores the battery temperature as a decimal string in degrees Celsius.
- Example:
"36.5"means 36.5 °C - Typical range:
20.0to45.0under normal conditions - Android provides the value in tenths of a degree — this task divides by
10.0automatically