b15f/spi.h
2019-03-22 15:51:52 +01:00

14 lines
110 B
C++

#ifndef SPI_H
#define SPI_H
#include <util/delay.h>
class SPI {
private: int d;
};
#endif