rename
This commit is contained in:
parent
949591a50d
commit
b6d0b4c8f5
29 changed files with 0 additions and 0 deletions
18
firmware/TLC5615.h
Normal file
18
firmware/TLC5615.h
Normal file
|
@ -0,0 +1,18 @@
|
|||
#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
|
Loading…
Add table
Add a link
Reference in a new issue