fonts.h 360 B

1234567891011121314151617181920212223242526
  1. /*
  2. * fonts.h
  3. *
  4. * The MIT License.
  5. * Created on: 25.05.2017
  6. * Author: Mateusz Salamon
  7. * www.msalamon.pl
  8. * mateusz@msalamon.pl
  9. */
  10. #ifndef FONTS_FONTS_H_
  11. #define FONTS_FONTS_H_
  12. //
  13. // Set fonts you want to use
  14. //
  15. #define FONT_8x5 1
  16. //
  17. // Automatic includes
  18. //
  19. #if(FONT_8x5 ==1)
  20. #include "font_8x5.h"
  21. #endif
  22. #endif /* FONTS_FONTS_H_ */