mirror of
https://github.com/BotChain-Robots/control.git
synced 2026-07-08 21:57:20 +02:00
Bulk OTa
This commit is contained in:
@@ -10,13 +10,13 @@
|
||||
|
||||
class Actuator : public Module {
|
||||
public:
|
||||
explicit Actuator(uint8_t device_id) : Module(device_id) {};
|
||||
explicit Actuator(uint8_t device_id) : Module(device_id){};
|
||||
|
||||
Actuator(uint8_t device_id, ModuleType module_type) : Module(device_id, module_type) {};
|
||||
Actuator(uint8_t device_id, ModuleType module_type) : Module(device_id, module_type){};
|
||||
|
||||
Actuator(uint8_t device_id, ModuleType module_type, Messaging::ConnectionType connection_type,
|
||||
uint8_t leader)
|
||||
: Module(device_id, module_type, connection_type, leader) {};
|
||||
: Module(device_id, module_type, connection_type, leader){};
|
||||
|
||||
protected:
|
||||
virtual std::vector<uint8_t> get_actuation_message() = 0;
|
||||
|
||||
Reference in New Issue
Block a user