From 7195a17f97e8a12807645fca4c119018f7c711b4 Mon Sep 17 00:00:00 2001 From: Stefan `Sec` Zehl Date: Sun, 22 May 2011 17:41:54 +0200 Subject: [PATCH] Use bigger font --- modules/sec.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/modules/sec.c b/modules/sec.c index 0b9df3f..bbd5032 100644 --- a/modules/sec.c +++ b/modules/sec.c @@ -78,16 +78,17 @@ void module_sec(void) { ReinvokeISP(); }; - dx=DoString(0,20,"LED:"); + font = &Font_Ubuntu18pt; + dx=DoString(0,14,"LED:"); #ifdef SEND if(ctr++>trigger/10){ ctr=0; if (gpioGetValue(RB_LED0) == CFG_LED_OFF){ gpioSetValue (RB_LED0, CFG_LED_ON); - DoString(dx,20,"ON!"); + DoString(dx,14,"ON!"); } else { gpioSetValue (RB_LED0, CFG_LED_OFF); - DoString(dx,20,"off"); + DoString(dx,14,"off"); }; }; #else @@ -101,6 +102,7 @@ void module_sec(void) { }; #endif + font = &Font_7x8; results = adcRead(1); dx=DoString(0,yctr+20,"Voltage:");