14 lines
110 B
C++
14 lines
110 B
C++
#ifndef SPI_H
|
|
#define SPI_H
|
|
|
|
#include <util/delay.h>
|
|
|
|
class SPI {
|
|
|
|
|
|
private: int d;
|
|
|
|
};
|
|
|
|
#endif
|