This is the color libary for the control of the colors. With this libary you can control the RGB libary with color objects.

Dependents:   coap

color.h

Committer:
de_geeter_alexander
Date:
2015-12-25
Revision:
0:8625ec7a9a67

File content as of revision 0:8625ec7a9a67:

#ifndef COLOR_H
#define COLOR_H

class Color{
    int red, green, blue;
    int floatToColorValue(float value);
    static const int MAX_COLOR_VALUE=255;
    
    public:
    enum colors {RED=0xFF0000, GREEN=0x00FF00, BLUE=0x0000FF, CYAN=0x00FF00, MAGENTA=0xFF00FF, YELLOW=0x00FFFF, WHITE=0xFFFFFF};
    
    Color(int red, int green, int blue);
    Color(int color);
    Color(float red, float green, float blue);
    int getHex();
    int getRed();
    int getGreen();
    int getBlue();
    
    };

#endif