Readers like you help support How-To Geek. When you make a purchase using links on our site, we may earn an affiliate commission. Read More.

Quick Links

Key Takeaways

  • Use the "vcgencmd measure_temp" command to get the temperature of your Raspberry Pi. Set up a webhook on a Discord or Slack, then use a Bash script to check the temperature and send an alert via the webhook if it's too high. Run it regularly with a systemd timer.

The Raspberry Pi’s stripped-back design means it has no onboard cooling. But how cool would it be if it sent you a Discord or Slack message if it was getting too hot?

Why Your Raspberry Pi Is Getting Hot

The Raspberry Pi is a tremendous success story. It’s a range of cheap, single-board computers that can be put to all sorts of uses in the home or workplace. It’s been used by makers and hobbyists to create a myriad of interesting and ingenious projects.

Many of these projects require the Raspberry Pi to run in headless configuration. That is, it doesn’t have a monitor, keyboard, or mouse attached to it. You’ll find them tucked away in cupboards or under desks, silently performing their roles and duties like any other fit-and-forget network appliance.

But you don’t want to forget about them completely. Like all computing devices, the Raspberry Pi generates heat. But there is no onboard cooling. Because all the components are packed tightly together on a single board, the heat is concentrated in a small area.

If you are using a standard Raspberry Pi case, the only cooling effect is convection. You can improve matters slightly by adding a heat sink or, if the noise isn’t going to be a problem, by fitting a fan. Some Raspberry Pi cases incorporate an integral fan.

With a headless system, it’s more convenient to have the device contact you when something happens, rather than you needing to remember to periodically check in on it. We all carry smartphones, so why don’t we do the smart thing and have our Raspberry Pi monitor its temperature and send a message to our smartphone if its temperature is nearing the danger zone?

Let’s see how we can do this for two popular messaging platforms, Discord and Slack.

Getting the CPU Temperature on a Raspberry Pi

The first step in the process is to obtain the CPU temperature of the Raspberry Pi. Actually, you could use the messaging techniques described here to alert you if any important characteristic of your Raspberry Pi is drifting out of acceptable tolerances.

The command to get the CPU temperature on a Raspberry Pi is:

 vcgencmd measure_temp 
Using the vcgencmd to obtain the CPU temperature

If this doesn’t work, try using the full directory path to the command. On my Raspberry Pi running the Oct. 10, 2023 release of the Raspberry Pi OS, the command is located in the “/usr/bin/” directory. This makes the longhand version of the command:

 /usr/bin/vcgencmd measure_temp  
Using the vcgencmd with its full directory path to obtain the CPU temperature

There are three things to notice about the output from the command.

Firstly, it includes “temp=” and “’C”, which is more than we want. We want to have the temperature as a number that we can compare to a threshold. If the temperature rises above the threshold it’ll trigger sending a message. The second point is, the temperature is in degrees Celsius. Finally, it’s a floating point number. We’ll convert that to an integer value in our script.

To extract the temperature value on its own, we can use awk. We're using the -F (field delimiters) option to tell awk to treat equals signs “=” and apostrophes “’” as flags that mark the start and end of a field. We then ask it to print the second field which, in our string, is the CPU temperature reading.

 vcgencmd measure_temp | awk -F "[=']" '{print($2)}' 
Using awk to parse the temperature value from the vcgencmd output

This isolates the numerical value, and allows us to assign it to a variable.

 pi_temp=$(vcgencmd measure_temp | awk -F "[=']" '{print($2)}')

echo $pi_temp
Assigning the CPU temperature to a variable

If you’re happier working in Fahrenheit, we can add some math to convert the value for us.

 pi_temp=$(vcgencmd measure_temp | awk -F "[=']" '{print($2 * 1.8)+32}')

echo $pi_temp
Using awk to parse the temperature value from the vcgencmd output and convert it to Fahrenheit

In order to set a threshold, we need to know what the operational range of the Raspberry Pi is. I checked the Raspberry Pi datasheet for the Raspberry Pi 4, Model B I was testing with.

In the section titled “Temperature Range and Thermals” it states that “The recommended ambient operating temperature range is 0 to 50 degrees Celsius.” That equates to a temperature range of 32-122 degrees Fahrenheit. This is the temperature that the entire board is happy with, and the CPU temperature could be safely higher. However, the value from the datasheet is a very safe value for us to use because we're erring on the cooler side, not the hotter side.

Related: How to Use the awk Command on Linux

Setting Up Discord to Accept Messages

Enabling messaging into Discord requires something called a webhook, which is straightforward to set up. We’ll create a new server to receive our notifications, then activate a webhook we can call from a script on our Raspberry Pi.

In Discord, click the green “+” button to create a new server.

The green

In the “Create a Server” dialog, click “Create My Own.”

The

In the “Tell Us More About Your Server” dialog, click “For me and My Friends.”

The

Provide a name for your new server in the “Customise Your Server” dialog. Ours is called “PiNotifications.”

Naming the new server in the “Customise Your Server” dialog

We also clicked on the camera icon and uploaded a “warning bell” icon. (Once you've uploaded an icon, it obscures the camera icon.)

Click the blue “Create” button when you’re ready to proceed. Our new server now appears in our list of servers.

Select your new server, then click the arrow alongside its name.

The drop down menu arrow beside the server name in Discord

Click the “Server Settings” option.

The

On the “Settings” page, click the “Integrations” option in the sidebar. Click the “Create Webhook” button. A new webhook is created and named for you.

The

Click the arrow “>” button to edit your webhook.

The arrow head on the newly created webhook entry

We renamed our webhook to “Pi Alerts”, and left it pointing at the “#general” channel of our server. We’re going to need the URL of the webhook, so click the “Copy Webhook URL” button, and paste the URL into an editor, and save the file. You'll need easy access to the URL later.

The

When you’re ready to proceed, click the green “Save Changes” button at the bottom of the page.

The

Pressing the “Esc” key will take you back into the normal Discord desktop view.

Creating Our Script to Send an Alert to Discord

Our script starts by obtaining the CPU temperature. If you want the temperature in Fahrenheit, delete or comment out the Celsius line and uncomment the Fahrenheit line.

We then use awk to extract the integer element of the temperature value (the part that comes before the floating point “.”) because naked Bash only supports integer arithmetic.

We then obtain the hostname, and assign it to a variable called "this_pi". We’ll send the hostname as part of our alerting message, so that we can tell which Raspberry Pi is sending the alert.

You need to set the “discord_pi_webhook” variable to the URL that you copied and saved earlier. When you paste it into your script, make sure you keep the quotation marks.

We test the CPU temperature against the threshold value in an “if” statement. If the CPU temperature is higher than our trigger threshold, we use curl to send the message to the webhook URL. The alert then appears in our Discord server.

So that we can test our script, we’ve set the threshold value to 15. This means the “if” loop will definitely be executed. Once you’re happy that the script works, you can raise this value to a real-world value. In Celsius, that’d be about 44 degrees for my Raspberry Pi 4.

 #!/bin/bash

# get CPU temperature in Celsius
pi_temp=$(vcgencmd measure_temp | awk -F "[=']" '{print($2)}')

# for Fahrenheit temperatures, use this line instead
# pi_temp=$(vcgencmd measure_temp | awk -F "[=']" '{print($2 * 1.8)+32}')

# round down to an integer value
pi_temp=$(echo $pi_temp | awk -F "[.]" '{print($1)}')

# get the hostname, so we know which Pi is sending the alert
this_pi=$(hostname)

discord_pi_webhook="Paste your webhook URL here"

if [[ "$pi_temp" -ge 15 ]]; then
  curl -H "Content-Type: application/json" -X POST -d '{"content":"'"Pi ${this_pi} CPU temp is: ${pi_temp}"'"}' $discord_pi_webhook
fi

Copy the script into an editor, paste in your webhook URL, save it as “cpu_temp.sh”, and close your editor. We’ll need to make our script executable.

 chmod +x cpu_temp.sh 
Using the chmod command to make the script executable

To test our script, we’ll call it from the command line.

 ./cpu_temp.sh 
Running the script on the command line

A moment later, our message appears in Discord.

The temperature alert message in Discord

Our Raspberry Pi is called “htg-pi-server”, and its CPU temperature is 33 degrees Celsius. Once you’ve tested your script, remember to edit the threshold value in the “if” statement to a real world value.

Setting Up a Webhook on Slack

We’ve got a detailed run-through on how to set up a webhook on Slack. The process is very similar to the steps you need to take with Discord. You'll need to copy the webhook URL and a secret key.

 #!/bin/bash

# get CPU temperature in Celsius
pi_temp=$(vcgencmd measure_temp | awk -F "[=']" '{print($2)}')

# for Fahrenheit temperatures, use this line instead
# pi_temp=$(vcgencmd measure_temp | awk -F "[=']" '{print($2 * 1.8)+32}')

# round down to an integer value
pi_temp=$(echo $pi_temp | awk -F "[.]" '{print($1)}')

# get the hostname, so we know which Pi is sending the alert
this_pi=$(hostname)

slack_pi_webhook="https://hooks.slack.com/services/paste-your-key-here"

if [[ "$pi_temp" -ge 15 ]]; then
  curl -X POST --data-urlencode "payload={'channel': '#support', 'text': 'Pi ${this_pi} CPU temp is: ${pi_temp}'}" $slack_pi_webhook
fi

Paste your secret key in the script where it reads "paste-your-key-here." Making sure there are quotation marks around the entire URL.

Other than that, there are very few changes required to make the script work with Slack instead of Discord.

We’ve renamed the “discord_pi_webhook” variable to “slack_pi_webhook” and changed the “curl” command for one that works with Slack. It’s set to post to a channel called “#support”, but you can change that to the name of the channel you’re using on your Slack server.

An alerting message displayed in Slack

Messages from your Raspberry Pi pop up in your nominated Slack channel.

Related: How to Send a Message to Slack from a Bash Script

Automating the Temperature Checks

To make the “cpu_temp.sh” script run periodically, you can turn it into a systemd timer.

Running the script every 15 minutes or so is a good start point. You can always adjust that later if you think you need more frequent or less frequent checks.

Happy Monitoring

Remember to change the “if” statement trigger value to something more realistic than the test value. If you don’t, your Raspberry Pi will pepper you with false positives.