Index: config.h
===================================================================
--- config.h	(revision 262)
+++ config.h	(working copy)
@@ -77,9 +77,14 @@
 /* #define COM_DEF_ADR 1 */
 
 
-#define LED_on() (PORTD |= _BV(PD6))
-#define LED_off() (PORTD &= ~_BV(PD6))
 
+
+#define LED_Red_on() (PORTD &= ~_BV(PD7))
+#define LED_Red_off() (PORTD |= _BV(PD7))
+
+#define LED_Green_on()	(PORTA &= ~_BV(PA2))
+#define LED_Green_off()  (PORTA |= _BV(PA2))
+
 #define RFM 1 //!< define RFM to 1 if you want to have support for the RFM Radio Moodule in the Code
 
 #if (RFM == 1)
