fix raspberry mesure temp command
This commit is contained in:
@@ -14,8 +14,7 @@ pub fn get_temperature() -> f32 {
|
||||
temperature = temperature_string.parse::<f32>().unwrap();
|
||||
temperature /= 1000.0;
|
||||
} else {
|
||||
let temperature_command = Command::new("sudo")
|
||||
.arg("/opt/vc/bin/vcgencmd")
|
||||
let temperature_command = Command::new("/usr/bin/vcgencmd")
|
||||
.arg("measure_temp")
|
||||
.output()
|
||||
.unwrap_or_else(|e| panic!("failed to execute process: {}", e));
|
||||
|
||||
Reference in New Issue
Block a user