Resources handling started

This commit is contained in:
hg
2014-03-05 15:33:12 +01:00
parent 1edb73afbf
commit 5375925f34
3 changed files with 187 additions and 48 deletions

21
Resources.cpp Normal file
View File

@ -0,0 +1,21 @@
/*
* Resources.cpp
*
* Created on: 05.03.2014
* Author: wn
*/
#include "Resources.h"
String TEXT;
const String& getResource(uint8_t key) {
// return TEXT_RESOURCES[key];
TEXT = String("T") + key + String(": ");
return TEXT;
}