11-05-2019, 08:36 AM
(This post was last modified: 11-05-2019, 08:37 AM by Happyhaha2000.)
(11-05-2019, 08:24 AM)Flavor Wrote: If you want to heat the system up (and show the temp and status of GPIO40), you can do this...
Code:sudo apt-get install stress
while true; do vcgencmd measure_clock arm; vcgencmd measure_temp; gpio read 40; sleep 10; done& stress -c 4 -t 900s
Wow, that was pretty cool. I saw the temperature rising and as soon as it got to 60C, the fan turned on and the 0 changed to a 1 for the gpio 40. So it works! But the temperature just kept going up, I assume it would have kept going for 900 seconds? I just turned it off, is that okay? Do I need to do anything to make it stop putting stress on itself?