Servo control

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

View File

@@ -0,0 +1,22 @@
//
// Created by Johnathon Slightham on 2025-06-30.
//
#ifndef ANGLECONTROLMESSAGEBUILDER_H_
#define ANGLECONTROLMESSAGEBUILDER_H_
#include <string>
#include <vector>
#include "SerializedMessage.h"
#include "flatbuffers_generated/AngleControlMessage_generated.h"
#include "flatbuffers/flatbuffers.h"
namespace Flatbuffers {
class AngleControlMessageBuilder {
public:
static const Messaging::AngleControlMessage* parse_angle_control_message(const uint8_t* buffer);
};
}
#endif