Implemented actuators

This commit is contained in:
2020-09-30 03:45:41 +02:00
parent 3a129f8518
commit 4cc347074a
3 changed files with 56 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
#!/usr/bin/env python3
from abc import ABC, abstractmethod
"""
Abstract base class for Actuator
"""
__author__ = "@marcsello"
__copyright__ = "Copyright 2020, Birbnetes Team"
__module_name__ = "abcactuator"
__version__text__ = "1"
class AbcActuator(ABC):
"""
Abstract base class Actuator. Responsible for acting.
"""
@abstractmethod
def act(self):
"""
Preprocess a signal.
:return:
"""
pass