Display driver for the Vives city game

Dependencies:   TextLCD

CostumCharacters.h

Committer:
atomicLogic
Date:
2017-05-08
Revision:
4:f056a09af806
Parent:
0:80ce68cdf568
Child:
5:06eccc902247

File content as of revision 4:f056a09af806:

#pragma once
#include "TextLCD.h"

class CostumCharacters
{
private:
    TextLCD * lcd;

public:
/*
    const char batteryIcon[][8];

    const char gpsIcon[][8];

    const char loraIcon[][8];

    const char loraStatusIcon[][8];
*/

public:

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


};