Display driver for the Vives city game

Dependencies:   TextLCD

CostumCharacters.h

Committer:
atomicLogic
Date:
2017-05-15
Revision:
7:f2050f77de0b
Parent:
5:06eccc902247

File content as of revision 7:f2050f77de0b:

#pragma once
#include "TextLCD.h"

class CostumCharacters
{
private:
    TextLCD * lcd;

public:

    CostumCharacters( TextLCD * lcd );
    
    void setBatteryIcon( int lvl );
    void setGpsIcon( int gpsFix );
    void setLoraIcon( int lora );
    void setLoraStatusIcon( int loraStatus );
    


};