From 2f9fe7cf941a8f915f70d0f2cf613809e1a79781 Mon Sep 17 00:00:00 2001 From: Alex Frantz Date: Sat, 2 May 2026 23:37:24 -0400 Subject: [PATCH] fix? --- govee.py | 1 + scoreboard.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/govee.py b/govee.py index f0fe9f8..518b237 100644 --- a/govee.py +++ b/govee.py @@ -52,6 +52,7 @@ class GoveeApi: req = requests.post(GOVEE_API_BASE_URL + 'device/control', headers=headers, json=payload) req.raise_for_status() + print(req.json()) def set_to_original_color(self, sku, device): headers = { diff --git a/scoreboard.py b/scoreboard.py index 7b33542..2a865db 100644 --- a/scoreboard.py +++ b/scoreboard.py @@ -291,7 +291,7 @@ def run(): while True: govee_api.set_diy_scene(GOVEE_DEVICE, GOVEE_SKU) play_goal_celebration() - govee_api.set_to_original_color() + govee_api.set_to_original_color(GOVEE_DEVICE, GOVEE_SKU) # while True: # now = time.time()