(self, display, xres, yres)
| 9 | # This class implements the view that shows the splash screen on startup. |
| 10 | class SplashScreen: |
| 11 | def __init__(self, display, xres, yres): |
| 12 | self.display = display # Display driver |
| 13 | self.xres = xres |
| 14 | self.yres = yres |
| 15 | self.anim_frame = 0 # Animation frame to show |
| 16 | |
| 17 | def next_frame(self): |
| 18 | self.anim_frame += 1 |
nothing calls this directly
no outgoing calls
no test coverage detected