123456789101112131415161718192021222324252627282930 |
- #pragma once
- #include <AP_Common/AP_Common.h>
- #include <AP_HAL/AP_HAL.h>
- #include "RGBLed.h"
- class PixRacerLED: public RGBLed
- {
- public:
- PixRacerLED();
- protected:
- bool hw_init(void) override;
- bool hw_set_rgb(uint8_t r, uint8_t g, uint8_t b) override;
- };
|