Switch back to threading

This commit is contained in:
Mike Cifelli 2022-12-25 12:47:30 -05:00
parent 75cea0753a
commit 4e576599bd
1 changed files with 3 additions and 3 deletions

View File

@ -1,8 +1,8 @@
import sys import sys
from character_display import CharacterDisplay from character_display import CharacterDisplay
from multiprocessing import Event from threading import Event
from multiprocessing import Process from threading import Thread
from signal import signal from signal import signal
from signal import SIGTERM from signal import SIGTERM
from time import sleep from time import sleep
@ -28,7 +28,7 @@ def main():
signal(SIGTERM, cleanExit(unicorn, haltEvent)) signal(SIGTERM, cleanExit(unicorn, haltEvent))
unicorn.brightness(0.3) unicorn.brightness(0.3)
weatherThread = Process(target=weatherLoop, args=[haltEvent]) weatherThread = Thread(target=weatherLoop, args=[haltEvent])
weatherThread.start() weatherThread.start()
characterDisplay = CharacterDisplay(unicorn) characterDisplay = CharacterDisplay(unicorn)