39 lines
730 B
Python
39 lines
730 B
Python
class Anything:
|
|
'''
|
|
A stub class which will repr as a provided name
|
|
'''
|
|
def __init__(self, name):
|
|
self.name = name
|
|
|
|
def __call__(self, *args, **kwargs):
|
|
return self
|
|
|
|
def __repr__(self):
|
|
return 'Anything<{}>'.format(self.name)
|
|
|
|
def init(self, *args, **kwargs):
|
|
pass
|
|
|
|
@property
|
|
def value(self):
|
|
return False
|
|
|
|
|
|
class Passthrough:
|
|
def __getattr__(self, attr):
|
|
return Anything(attr)
|
|
|
|
|
|
class Pin:
|
|
board = Passthrough()
|
|
IN = 'IN'
|
|
OUT = 'OUT'
|
|
PULL_DOWN = 'PULL_DOWN'
|
|
PULL_UP = 'PULL_UP'
|
|
|
|
def __call__(self, *args, **kwargs):
|
|
return self.board
|
|
|
|
def __getattr__(self, attr):
|
|
return getattr(self.board, attr)
|