diff --git a/controller_interface/include/semantic_components/led_rgb_device.hpp b/controller_interface/include/semantic_components/led_rgb_device.hpp index 8784fbf171..be8a78dccb 100644 --- a/controller_interface/include/semantic_components/led_rgb_device.hpp +++ b/controller_interface/include/semantic_components/led_rgb_device.hpp @@ -24,14 +24,14 @@ namespace semantic_components { -class LEDRgbDevice : public SemanticComponentCommandInterface +class LedRgbDevice : public SemanticComponentCommandInterface { public: /** * Constructor for a LED RGB device with interface names set based on device name. * The constructor sets the command interface names to "/r", "/g", "/b". */ - explicit LEDRgbDevice(const std::string & name) : SemanticComponentCommandInterface(name, 3) + explicit LedRgbDevice (const std::string & name) : SemanticComponentCommandInterface(name, 3) { interface_names_.emplace_back(name_ + "/" + "r"); interface_names_.emplace_back(name_ + "/" + "g"); @@ -42,7 +42,7 @@ class LEDRgbDevice : public SemanticComponentCommandInterface