Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

graphs: add MCU temperature and voltages to Sensors/MCU/ #1503

Merged
merged 1 commit into from
Jan 27, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions MAVProxy/tools/graphs/mavgraphs2.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,16 @@
<expression>BARO.Alt RFND.Dist1*cos(radians(ATT.Roll))*cos(radians(ATT.Pitch))</expression>
</graph>

<graph name='Sensors/MCU/Voltages'>
<description>MCU Voltage Information</description>
<expression>MCU.MVolt MCU.MVmax MCU.MVmin</expression>
</graph>

<graph name='Sensors/MCU/Temperature'>
<description>MCU Tepmerature Information</description>
<expression>MCU.MTemp</expression>
</graph>

<graph name='Radio/RSSI_Distance'>
<description></description>
<expression>RADIO_STATUS.rssi RADIO_STATUS.noise RADIO_STATUS.remrssi RADIO_STATUS.remnoise distance_home(GPS_RAW_INT):2</expression>
Expand Down