Michel Dequick / DisplayDriver

Dependencies:   TextLCD

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers CostumCharacters.h Source File

CostumCharacters.h

00001 #pragma once
00002 #include "TextLCD.h"
00003 
00004 class CostumCharacters
00005 {
00006 private:
00007     TextLCD * lcd;
00008 
00009 public:
00010 
00011     CostumCharacters( TextLCD * lcd );
00012     
00013     void setBatteryIcon( int lvl );
00014     void setGpsIcon( int gpsFix );
00015     void setLoraIcon( int lora );
00016     void setLoraStatusIcon( int loraStatus );
00017     
00018 
00019 
00020 };
00021