Skip to content

File evabFont8Compact.h

File List > src > evabFont8Compact.h

Go to the documentation of this file

#pragma once

#include <evabIFont.h>
#include <Arduino.h>

namespace evab
{
    class Font8Compact : public IFont
    {
    public:
        unsigned char GetVerticalSlice(char aCharcode, unsigned char aCutColumn) const override;

    private:
        static const unsigned char kCharmap[][5] PROGMEM; 
    };
}