Skip to content
This repository has been archived by the owner on Dec 23, 2021. It is now read-only.

Commit

Permalink
added board module
Browse files Browse the repository at this point in the history
  • Loading branch information
andreamah committed Mar 19, 2020
1 parent 1a885f7 commit cec273c
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/clue/board.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# dummy class for references to board display to work
# https://learn.adafruit.com/arduino-to-circuitpython/the-board-module

class Display:
def __init__(self):
pass

def show(self,group):
group.draw()

DISPLAY = Display()

0 comments on commit cec273c

Please sign in to comment.