123456789101112131415161718192021222324252627282930313233 |
- #pragma once
- #include "RGBLed.h"
- #include "AP_BoardLED.h"
- class VRBoard_LED: public RGBLed {
- public:
- VRBoard_LED();
- protected:
- bool hw_init(void) override;
- bool hw_set_rgb(uint8_t r, uint8_t g, uint8_t b) override;
- };
|