git-svn-id: http://moon:8086/svn/projects/HendiControl@193 fda53097-d464-4ada-af97-ba876c37ca34
17 lines
198 B
Python
17 lines
198 B
Python
import time
|
|
import abc
|
|
|
|
|
|
class ATemperatureSensor(abc.ABC):
|
|
def __init__(self, name):
|
|
self.name
|
|
|
|
def name(self):
|
|
return self.name
|
|
|
|
@abc.abstractmethod
|
|
def temperature(self):
|
|
return None
|
|
|
|
|