b15f/firmware/TLC5615.h

19 lines
220 B
C
Raw Normal View History

2019-03-25 14:02:24 +00:00
#ifndef TLC5615_H
#define TLC5615_H
#include "spi.h"
class TLC5615
{
public:
TLC5615(SPI&, uint8_t);
void setValue(uint16_t) const;
private:
SPI& spi;
const uint8_t adr;
};
#endif // TLC5615_H