Polytech Tours - Projet C++ embarqué sur cible mbed

Dependencies:   mbed

ColorManager.h

Committer:
LecomteDelys
Date:
2016-04-24
Revision:
0:21e183c9ef81

File content as of revision 0:21e183c9ef81:

#ifndef COLORMANAGER_H
#define COLORMANAGER_H

#ifndef COLOR_H
#define COLOR_H
#include "Color.h"
#endif

#include "mbed.h"
#include <iostream>

class ColorManager
{
    public :
        // Méthodes
        void HSVtoRGB(RGB &rgb, HSV &hsv);
        void RGBtoHSV(RGB &rgb, HSV &hsv);
        Colour_t getColorFromHue(double hue);
};

#endif