Servo control

This commit is contained in:
2025-07-15 10:59:48 -04:00
parent cf5be03188
commit d3e42e8dff
20 changed files with 309 additions and 531 deletions

View File

@@ -0,0 +1,21 @@
//
// Created by Johnathon Slightham on 2025-07-05.
//
#ifndef LOOPMANAGER_H
#define LOOPMANAGER_H
#include "control/IActuator.h"
#include "control/ActuatorFactory.h"
class LoopManager {
public:
[[noreturn]] static void control_loop();
private:
};
#endif //LOOPMANAGER_H