
/*
    Resource.h

    Fonts and bitmap resources for SSD1306.
    Arduino/ESP8266 version.
*/

#ifndef __RESOURCE_H__
#define __RESOURCE_H__

#include <Arduino.h>

/*
    128x64 Bitmap.
    Used for splash screen (optional).
*/
extern const uint8_t SSD1306_Splash_128x64[];

/*
    Large Numbers 15x24
    Use '/' for space. Only digits 0–9.
*/
extern const uint8_t Large_Numbers_15x24[];

/*
    Large Font 8x16
    Use '/' for space.
*/
extern const uint8_t Large_Font_8x16[];

/*  
    Small Font 6x8
*/
extern const uint8_t Small_Font_6x8[];


#endif  /* __RESOURCE_H__ */
