Last active
April 22, 2020 13:20
-
-
Save pascaliske/d960a036316cf0b6507bd24325585236 to your computer and use it in GitHub Desktop.
Watch Raspberry Pi temperature and display in place.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
temp() { | |
while true; do | |
printf "\r$(vcgencmd measure_temp)"; | |
sleep 1; | |
done; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment