https://github.com/virtualagc/virtualagc
Raw File
Tip revision: a8d66c8ae3c4d967053e2bfb4298e90182cbeff2 authored by Ron Burkey on 06 March 2024, 12:40:55 UTC
Minor tweaks associated with supporting Skylark 48.
Tip revision: a8d66c8
backgroundStatus.sh
#!/bin/bash

while true
do
	date
	vcgencmd measure_temp
	vcgencmd measure_clock arm
	ps u | grep piDSKY2 | grep --invert-match grep
	uptime
	sleep 10
done
back to top