2014-11-14 10:14:40 -04:00
|
|
|
/*
|
2018-07-18 21:49:35 -03:00
|
|
|
PCA9685LED I2C driver
|
2014-11-14 10:14:40 -04:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2016-01-29 00:38:21 -04:00
|
|
|
#pragma once
|
2014-11-14 10:14:40 -04:00
|
|
|
|
2016-04-14 17:37:20 -03:00
|
|
|
#include <AP_HAL/I2CDevice.h>
|
2018-06-26 14:05:10 -03:00
|
|
|
#include "RGBLed.h"
|
2014-11-14 10:14:40 -04:00
|
|
|
|
2022-11-07 21:22:04 -04:00
|
|
|
#if AP_NOTIFY_PCA9685_ENABLED
|
|
|
|
|
2018-07-18 21:49:35 -03:00
|
|
|
class PCA9685LED_I2C : public RGBLed
|
2014-11-14 10:14:40 -04:00
|
|
|
{
|
2018-06-26 14:05:10 -03:00
|
|
|
public:
|
2018-07-18 21:49:35 -03:00
|
|
|
PCA9685LED_I2C(void);
|
2021-03-28 22:44:23 -03:00
|
|
|
bool init(void) override;
|
2014-11-14 10:14:40 -04:00
|
|
|
protected:
|
2017-01-26 05:10:26 -04:00
|
|
|
bool hw_set_rgb(uint8_t r, uint8_t g, uint8_t b) override;
|
2016-04-14 17:37:20 -03:00
|
|
|
|
|
|
|
private:
|
|
|
|
AP_HAL::OwnPtr<AP_HAL::I2CDevice> _dev;
|
2017-01-13 15:26:14 -04:00
|
|
|
void _timer(void);
|
2016-11-04 01:22:01 -03:00
|
|
|
struct {
|
|
|
|
uint8_t r, g, b;
|
|
|
|
} rgb;
|
|
|
|
bool _need_update;
|
2014-11-14 10:14:40 -04:00
|
|
|
};
|
2022-11-07 21:22:04 -04:00
|
|
|
|
|
|
|
#endif // AP_NOTIFY_PCA9685_ENABLED
|