separate internal and external temp sensors
This commit is contained in:
parent
2112774c18
commit
cde3d2459e
1 changed files with 5 additions and 1 deletions
|
@ -49,8 +49,12 @@ public class HelperFunctions {
|
|||
return routeArray;
|
||||
}
|
||||
|
||||
public int[] tempSensors() {
|
||||
public int[] internalTempSensors() {
|
||||
int[] temps = {76, 74};
|
||||
return temps;
|
||||
}
|
||||
|
||||
public int externalTempSensors() {
|
||||
return 88;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue