#pragma once #include "ComplexCommand.h" #include "CalibrationInfo.h" namespace Incart::Usb { class ReadExternAccLsbCommand : public ComplexCommand { Q_OBJECT public: ReadExternAccLsbCommand(uint32_t uid) : ComplexCommand("ReadExternAccLsb", uid) { } signals: void answerIsReady(ComplexCommand* command, std::vector calibrationInfo, std::shared_ptr status); }; } // namespace Incart::Usb