Example code displaying how to use and implement the mbed RTOS along with a simple state machine used to capture button presses.
Fork of mbed-rtos by
color.h
- Committer:
- gelmes
- Date:
- 2016-02-25
- Revision:
- 106:1b09dd92c3f1
- Parent:
- 105:d7ee57473fdb
File content as of revision 106:1b09dd92c3f1:
#ifndef COLOR_H
#define COLOR_H
class Color
{
public:
float r;
float g;
float b;
Color(float red, float green, float blue);
};
#endif
