-/* $Id: main.c,v 1.5 2010/07/01 23:56:19 simimeie Exp $
+/* $Id: main.c,v 1.6 2010/07/10 07:32:08 simimeie Exp $
* Main file for the HaWo moodlight.
* This is the main file that glues it all together. It also contains all
* functionality that is too small to require an extra file.
ledpwm_re = 0x00; ledpwm_gr = 0xff; ledpwm_bl = 0x80;
irstate = 0;
break;
+ case 0x0a: /* dark blue */
+ ledpwm_re = 0x20; ledpwm_gr = 0x00; ledpwm_bl = 0xff;
+ irstate = 0;
+ break;
case 0x0c: /* orange */
ledpwm_re = 0xff; ledpwm_gr = 0x80; ledpwm_bl = 0x00;
irstate = 0;
ledpwm_re = 0x00; ledpwm_gr = 0xff; ledpwm_bl = 0xff;
irstate = 0;
break;
+ case 0x0e: /* dark orchid 2 */
+ ledpwm_re = 0x50; ledpwm_gr = 0x00; ledpwm_bl = 0xff;
+ irstate = 0;
+ break;
case 0x10: /* bright orange */
ledpwm_re = 0xff; ledpwm_gr = 0xc0; ledpwm_bl = 0x00;
irstate = 0;
ledpwm_re = 0x00; ledpwm_gr = 0xa0; ledpwm_bl = 0xff;
irstate = 0;
break;
+ case 0x12: /* dark orchid */
+ ledpwm_re = 0xc0; ledpwm_gr = 0x00; ledpwm_bl = 0xff;
+ irstate = 0;
+ break;
case 0x14: /* yellow */
ledpwm_re = 0xff; ledpwm_gr = 0xff; ledpwm_bl = 0x00;
irstate = 0;
ledpwm_re = 0x00; ledpwm_gr = 0x60; ledpwm_bl = 0xff;
irstate = 0;
break;
+ case 0x16: /* violet */
+ ledpwm_re = 0xff; ledpwm_gr = 0x00; ledpwm_bl = 0xff;
+ irstate = 0;
+ break;
};
ledpwm_setled(LEDPWM_REDLED, (((uint16_t)ledpwm_re * ledpwm_bri) / 255));
ledpwm_setled(LEDPWM_GREENLED, (((uint16_t)ledpwm_gr * ledpwm_bri) / 255));