2013-08-29 00:31:55 -03:00
|
|
|
/*
|
|
|
|
ToshibaLED I2C driver
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2022-11-10 19:08:19 -04:00
|
|
|
#include "AP_Notify_config.h"
|
|
|
|
|
|
|
|
#if AP_NOTIFY_TOSHIBALED_ENABLED
|
|
|
|
|
2016-04-18 14:02:19 -03:00
|
|
|
#include <AP_HAL/I2CDevice.h>
|
2018-06-26 14:05:10 -03:00
|
|
|
#include "RGBLed.h"
|
2013-08-29 00:31:55 -03:00
|
|
|
|
2018-06-26 14:05:10 -03:00
|
|
|
class ToshibaLED_I2C : public RGBLed
|
2013-08-29 00:31:55 -03:00
|
|
|
{
|
2017-09-06 07:12:36 -03:00
|
|
|
public:
|
|
|
|
ToshibaLED_I2C(uint8_t bus);
|
2021-03-28 22:44:23 -03:00
|
|
|
bool init(void) override;
|
2017-01-26 05:10:26 -04:00
|
|
|
protected:
|
|
|
|
bool hw_set_rgb(uint8_t r, uint8_t g, uint8_t b) override;
|
2016-04-18 14:02:19 -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:25:52 -03:00
|
|
|
bool _need_update;
|
|
|
|
struct {
|
|
|
|
uint8_t r, g, b;
|
|
|
|
} rgb;
|
2017-09-06 07:12:36 -03:00
|
|
|
uint8_t _bus;
|
2013-08-29 00:31:55 -03:00
|
|
|
};
|
2022-11-10 19:08:19 -04:00
|
|
|
|
|
|
|
#endif // AP_NOTIFY_TOSHIBALED_ENABLED
|