From 8dab8805e66606fd8b11b7f962f9a764686cda92 Mon Sep 17 00:00:00 2001 From: CiscoTheWolf Date: Tue, 23 May 2023 21:09:50 +0200 Subject: [PATCH] Removes safe mode from setting prootScreen image to canvas. Set ProotScreen frame brightness to 100. --- rpi/antRender.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rpi/antRender.py b/rpi/antRender.py index 0cb28df..80f6638 100644 --- a/rpi/antRender.py +++ b/rpi/antRender.py @@ -59,7 +59,8 @@ class Point2D: def set_ProotScreen(matrix): prootScreen_frame_canvas = matrix.CreateFrameCanvas() image_prootScreen = Image.open("faces/ProotScreen.png").convert('RGB') - prootScreen_frame_canvas.SetImage(image_prootScreen, unsafe=False) + prootScreen_frame_canvas.SetImage(image_prootScreen) + prootScreen_frame_canvas.brightness = 100 matrix.SwapOnVSync(prootScreen_frame_canvas)