From 4e576599bdc5155a098886d4e98ab15da718f1fc Mon Sep 17 00:00:00 2001 From: Mike Cifelli <1836280-mike-cifelli@users.noreply.gitlab.com> Date: Sun, 25 Dec 2022 12:47:30 -0500 Subject: [PATCH] Switch back to threading --- chutney.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/chutney.py b/chutney.py index 2f7ae4d..0fdcdfe 100644 --- a/chutney.py +++ b/chutney.py @@ -1,8 +1,8 @@ import sys from character_display import CharacterDisplay -from multiprocessing import Event -from multiprocessing import Process +from threading import Event +from threading import Thread from signal import signal from signal import SIGTERM from time import sleep @@ -28,7 +28,7 @@ def main(): signal(SIGTERM, cleanExit(unicorn, haltEvent)) unicorn.brightness(0.3) - weatherThread = Process(target=weatherLoop, args=[haltEvent]) + weatherThread = Thread(target=weatherLoop, args=[haltEvent]) weatherThread.start() characterDisplay = CharacterDisplay(unicorn)