separate internal and external temp sensors

This commit is contained in:
Fennel Kora 2024-04-13 19:38:16 -04:00
parent 2112774c18
commit cde3d2459e

View file

@ -49,8 +49,12 @@ public class HelperFunctions {
return routeArray; return routeArray;
} }
public int[] tempSensors() { public int[] internalTempSensors() {
int[] temps = {76, 74}; int[] temps = {76, 74};
return temps; return temps;
} }
public int externalTempSensors() {
return 88;
}
} }