1234567891011121314151617181920212223242526 |
- /*
- * fonts.h
- *
- * The MIT License.
- * Created on: 25.05.2017
- * Author: Mateusz Salamon
- * www.msalamon.pl
- * mateusz@msalamon.pl
- */
- #ifndef FONTS_FONTS_H_
- #define FONTS_FONTS_H_
- //
- // Set fonts you want to use
- //
- #define FONT_8x5 1
- //
- // Automatic includes
- //
- #if(FONT_8x5 ==1)
- #include "font_8x5.h"
- #endif
- #endif /* FONTS_FONTS_H_ */
|