E-Paper-Calendar/Calendar/DisplayAdapter.py

12 lines
372 B
Python
Raw Normal View History

2019-02-19 20:51:10 +01:00
#!/usr/bin/python3
# -*- coding: utf-8 -*-
class DisplayAdapter (object):
"""Interface for CalendarDesign output channels"""
def render ():
raise NotImplementedError("Functions needs to be implemented")
def calibrate ():
raise NotImplementedError("Functions needs to be implemented")
def sleep ():
raise NotImplementedError("Functions needs to be implemented")