added l0dable to show OpenBeacon id

This commit is contained in:
schneider 2011-12-22 15:05:04 +01:00
parent 6a9f5d7872
commit cf639ee620
1 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,22 @@
#include <sysinit.h>
#include <string.h>
#include "basic/basic.h"
#include "basic/config.h"
#include "lcd/render.h"
#include "lcd/print.h"
#include "funk/nrf24l01p.h"
#include "usetable.h"
/**************************************************************************/
void ram(void) {
lcdClear();
lcdPrintln("OpenBeaconId:");
lcdPrintIntHex(GetUUID32());
lcdRefresh();
do{
}while ((getInputRaw())==BTN_NONE);
}