Prepare files for public release

This commit is contained in:
2026-01-24 10:26:37 -05:00
parent 2f358c30e6
commit d89c636e2f
28 changed files with 2013 additions and 0 deletions

19
include/mDNSRobotModule.h Normal file
View File

@@ -0,0 +1,19 @@
//
// Created by Johnathon Slightham on 2025-07-05.
//
#ifndef ROBOTMODULEINSTANCE_H
#define ROBOTMODULEINSTANCE_H
#include "flatbuffers_generated/RobotModule_generated.h"
#include <string>
struct mDNSRobotModule {
int id;
std::string ip;
std::string hostname;
ModuleType module_type;
std::vector<int> connected_module_ids;
};
#endif //ROBOTMODULEINSTANCE_H