Date
1 - 3 of 3
Temperature dvswitch.sh message
I know how to display RPi temperature from command line in terminal mode. However, is there a way to use "dvswitch.sh message" macro command to send display of temperature to my Android device? -- tnx ... Tom VE3NY
|
|
Off the top of my head.
toggle quoted messageShow quoted text
#!/bin/bash temp=$(cat /sys/class/thermal/thermal_zone0/temp) temp=$(($temp/1000)) dvswitch.sh message " CPU Temp = ${temp}"
On 7/19/20 11:57 AM, Tom Corcoran
wrote:
|
|
Tnx Steve ... all I had to do was add full path for dvswitch.sh in last line and script worked. Now to figure out exactly what you've instructed ... continuing linux education.
-- Tom VE3NY
|
|