Allow multiple robots on the same network (#5)

* Support multiple bots on the same network

* Bulk OTa

* Bugfixes
This commit is contained in:
2026-03-11 01:41:30 -04:00
committed by GitHub
parent eca875a791
commit e30eb39187
13 changed files with 105 additions and 32 deletions

View File

@@ -16,7 +16,7 @@ class PositionalActuator1D final : public Actuator {
public:
PositionalActuator1D(uint8_t device_id, ModuleType type)
: Actuator(device_id, type),
m_acm_builder(std::make_unique<Flatbuffers::AngleControlMessageBuilder>()) {};
m_acm_builder(std::make_unique<Flatbuffers::AngleControlMessageBuilder>()){};
double get_position() override;
void actuate(double position) override;