Skip to content
Snippets Groups Projects
Commit f964a934 authored by Torben Petersen's avatar Torben Petersen
Browse files

Renamed module oleddisplay.py into display.py

parent 3be8b34e
No related branches found
No related tags found
No related merge requests found
......@@ -16,9 +16,9 @@ import socket
gpio = GPIO.RPiGPIOAdapter(RPi.GPIO, RPi.GPIO.BOARD)
class OLEDDisplay(Module):
class DISPLAY(Module):
def __init__(self, *args, **kwargs):
super(OLEDDisplay, self).__init__( *args, **kwargs )
super(DISPLAY, self).__init__( *args, **kwargs )
setup_display()
def on_message(self, client, userdata, msg):
......@@ -200,4 +200,4 @@ if __name__ == '__main__':
buttons = LCTCButtonControl(gpio, display, mainmenu)
while True:
time.sleep(100)
\ No newline at end of file
time.sleep(100)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment