MCPcopy Create free account
hub / github.com/FastLED/FastLED / start_display

Method start_display

ci/util/process_status_display.py:49–57  ·  view source on GitHub ↗

Start the real-time display in a background thread.

(self)

Source from the content-addressed store, hash-verified

47 pass
48
49 def start_display(self) -> threading.Thread:
50 """Start the real-time display in a background thread."""
51 if self._display_thread and self._display_thread.is_alive():
52 return self._display_thread
53
54 self._stop_event.clear()
55 self._display_thread = threading.Thread(target=self._display_loop, daemon=True)
56 self._display_thread.start()
57 return self._display_thread
58
59 def stop_display(self) -> None:
60 """Stop the display thread."""

Callers 1

display_process_statusFunction · 0.80

Calls 2

clearMethod · 0.45
startMethod · 0.45

Tested by

no test coverage detected