b15f/firmware/TLC5615.h
Tristan Krause b6d0b4c8f5 rename
2019-04-01 15:16:47 +02:00

19 lines
220 B
C++

#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