Display driver for the Vives city game

Dependencies:   TextLCD

CostumCharacters.h

Committer:
atomicLogic
Date:
2017-04-25
Revision:
0:80ce68cdf568
Child:
4:f056a09af806

File content as of revision 0:80ce68cdf568:

#pragma once
#include "TextLCD.h"

namespace VivesCityGame
{

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


};
};