Example code displaying how to use and implement the mbed RTOS along with a simple state machine used to capture button presses.

Dependencies:   mbed

Fork of mbed-rtos by mbed official

color.h

Committer:
gelmes
Date:
2016-02-25
Revision:
105:d7ee57473fdb

File content as of revision 105:d7ee57473fdb:

#ifndef COLOR_H
#define COLOR_H
class Color
{
public:
    float r;
    float g;
    float b;
    Color(float red, float green, float blue);

};


#endif