diff --git a/faces/ProotScreen1.png b/faces/ProotScreen1.png index 28677e8..3dcfb93 100644 Binary files a/faces/ProotScreen1.png and b/faces/ProotScreen1.png differ diff --git a/faces/ProotScreen2.png b/faces/ProotScreen2.png index b6ea149..d1dcaa9 100644 Binary files a/faces/ProotScreen2.png and b/faces/ProotScreen2.png differ diff --git a/rpi/antRender.py b/rpi/antRender.py index f4e40da..4465776 100644 --- a/rpi/antRender.py +++ b/rpi/antRender.py @@ -78,7 +78,7 @@ class ProotState: def set_ProotScreen(self, matrix): self.loading_time += 1 - self.loading_time = self.loading_time % 90 + self.loading_time = self.loading_time % 75 if not self.frame_canvas_prootScreen_1: self.frame_canvas_prootScreen_1 = matrix.CreateFrameCanvas() image_proot_screen_1 = Image.open("faces/ProotScreen1.png").convert('RGB') @@ -96,9 +96,9 @@ class ProotState: self.frame_canvas_prootScreen_3.SetImage(image_proot_screen_3, unsafe=False) matrix.SwapOnVSync(self.frame_canvas_prootScreen_3) - if self.loading_time < 30: + if self.loading_time < 25: matrix.SwapOnVSync(self.frame_canvas_prootScreen_1) - elif self.loading_time < 60: + elif self.loading_time < 50: matrix.SwapOnVSync(self.frame_canvas_prootScreen_2) else: matrix.SwapOnVSync(self.frame_canvas_prootScreen_3)