Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions examples/led-matrix-painter/python/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,11 @@
from arduino.app_utils import App, Bridge, FrameDesigner, Logger
from app_frame import AppFrame # user module defining AppFrame
import store # user module for DB operations
import logging
import threading

BRIGHTNESS_LEVELS = 8 # must match the frontend slider range (0..BRIGHTNESS_LEVELS-1)

logger = Logger(__name__, level=logging.DEBUG)
logger = Logger("led-matrix-painter")
ui = WebUI()
designer = FrameDesigner()

Expand Down