mirror of
https://github.com/BotChain-Robots/firmware.git
synced 2026-07-08 17:47:21 +02:00
16 lines
239 B
C++
16 lines
239 B
C++
//
|
|
// Created by Johnathon Slightham on 2025-07-15.
|
|
//
|
|
|
|
#ifndef IACTUATOR_H
|
|
#define IACTUATOR_H
|
|
#include <cstdint>
|
|
|
|
class IActuator {
|
|
public:
|
|
virtual ~IActuator() {}
|
|
virtual void actuate(uint8_t *cmd) = 0;
|
|
};
|
|
|
|
#endif //IACTUATOR_H
|