/* * hsv_rgb.h * * Created on: 15.10.2011 * Author: Frank */ #ifndef HSV_RGB_H_ #define HSV_RGB_H_ #include typedef struct _colorstruc { uint16_t H; uint16_t S; uint16_t V; uint16_t Pin_G; uint16_t Pin_R; uint16_t Pin_B; } colorstruc; extern void hsv_to_rgb12(colorstruc *value); #endif /* HSV_RGB_H_ */