How Router Works
HomeShop
  • 👋Welcome to {How To}
  • Mobile Modem
    • Switch SIM Card
    • Mobile Watchdog
    • Mobile Protocol
    • APN Setting
    • Mode & Band Locking
    • Modem Diagnosis
      • Change TTL Value
      • Detach Reattach
      • Fix PLMN Error
  • Networking
    • Firewall
      • Port Forward
    • WiFi Hotspot
      • WiFi Relay
      • Guest WiFi
      • Parent Control
    • Traffic Control
      • IP and DNS
      • SQM QoS
      • Load Balancing
      • Intranet Routes
  • Remote Access
    • Traversal Cloud
    • Ezen Cloud
    • Dynamic DNS
  • Development
    • SSH Terminal
      • VI Editor
      • Crontab Syntax
    • Command Sets
      • MMCLI Commands
        • SMS Message
        • Location 3GPP GPS
      • AT Commands
        • AT+QAGPIO
        • AT+QTEMP
        • AT+COPS
        • AT+QENG
        • AT+QCAINFO
    • Bootloader
    • Custom-Build Firmware
Powered by GitBook
On this page
  • Test Command
  • Execution Command
  • Parameters
  1. Development
  2. Command Sets
  3. AT Commands

AT+QTEMP

The AT+QTEMP command retrieves the temperature value of the MT (Module Temperature). This command is supported by Quectel cellular modules and allows you to monitor the module's temperature.

The AT+QTEMP command allows users to check the module's temperature, which can be helpful for troubleshooting or performance optimization. Below is a guide to executing the AT+QTEMP command under the default Mobile-Data protocol with MMCLI command sets.

Test Command

AT+QTEMP=?
Response
''

Execution Command

Execute the below Command to query the module temperature information.

AT+QTEMP
Respose
[+QTEMP:<sensor>,<temp>]
[...]

Example:

mmcli -m 2 --command=AT+QTEMP

response:

'+QTEMP: "x0_therm_buf", "39" +QTEMP: "mdm_case_therm", "39" +QTEMP: "pa_therm1" , "39" +QTEMP: "tsens_tz_sensor0", "41" +QTEMP: "tsens_tz_sensor1", "41" +QTEMP: "tsens_tz_sensor2", "41" +QTEMP: "tsens_tz_sensor3", "41" +QTEMP: "tsens_tz_sensor4", "41" '

Parameters

The output content from different modules may vary, and the specific results should be based on the actual output.

Parameters
String
Description

<sensor>

aoss0-usr

The first detection point on the modem

mdm-q6-usr

The second detection point on the modem

ipa-usr

The third detection point on the modem

cpu0-a7-usr

The fourth detection point on the modem

mdm-core-usr

The fifth detection point on the modem

xo-therm-usr

XO crystal

pa-therm2-usr

PA chip

sdx-case-therm-usr

BB chip

adbilent-therm-usr

NTC

<temp>

Integer

Temperature value Unit: °C

Last updated 8 months ago