You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
class Screen:
|
|
def __init__(self):
|
|
self.type = None
|
|
|
|
self.supports_custom_fonts = False
|
|
|
|
def getScreenType(self):
|
|
return self.type
|
|
|
|
def clearScreen(self):
|
|
self.__clearScreen()
|
|
|
|
def __clearScreen(self):
|
|
raise NotImplementedError("Subclass must implement this method")
|