From c692d3aa9e24726340f90345ee8056a33d1c993a Mon Sep 17 00:00:00 2001 From: itzmarkoni Date: Sat, 14 Jun 2025 13:55:11 -0400 Subject: [PATCH] fix: adjust monitor cursor position to start from the top --- main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.lua b/main.lua index f9aa13d..4ae3e62 100644 --- a/main.lua +++ b/main.lua @@ -13,7 +13,7 @@ end local function runDisplay() while true do - monitor.setCursorPos(1,1) + monitor.setCursorPos(1,0) local drivers = { { Label = "Temperature", driver = tempDriver }, { Label = "Coolant", driver = coolantDriver },