Updated namespace

This commit is contained in:
Pascal Serrarens 2025-03-04 17:09:45 +01:00
parent f6f47d99ab
commit ca35a59eb6

View File

@ -3,11 +3,9 @@
#include <Arduino.h>
namespace RoboidControl {
namespace Arduino {
DRV8833Motor::DRV8833Motor(Participant* participant,
unsigned char pinIn1,
unsigned char pinIn2,
bool reverse)
DRV8833Motor::DRV8833Motor(Participant* participant, unsigned char pinIn1, unsigned char pinIn2, bool reverse)
: Thing(participant) {
this->pinIn1 = pinIn1;
this->pinIn2 = pinIn2;
@ -118,4 +116,5 @@ DRV8833::DRV8833(Participant* participant,
this->motorB->name = "Motor B";
}
} // namespace Arduino
} // namespace RoboidControl