From 523beb540fa07b0530d5eef326c382c1a66cd91e Mon Sep 17 00:00:00 2001 From: Fennel Kora Date: Sat, 13 Apr 2024 19:26:43 -0400 Subject: [PATCH] add tempSensors --- HelperFunctions.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/HelperFunctions.java b/HelperFunctions.java index 7abf92f..42d30b2 100644 --- a/HelperFunctions.java +++ b/HelperFunctions.java @@ -48,4 +48,9 @@ public class HelperFunctions { } return routeArray; } + + public int[] tempSensors() { + int[] temps = {76, 74}; + return temps; + } }