Display driver for the Vives city game

Dependencies:   TextLCD

CostumCharacters.h

Committer:
atomicLogic
Date:
2017-05-15
Revision:
5:06eccc902247
Parent:
4:f056a09af806

File content as of revision 5:06eccc902247:

#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 );
    


};