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.cpp
- Committer:
- gelmes
- Date:
- 2016-02-25
- Revision:
- 106:1b09dd92c3f1
- Parent:
- 105:d7ee57473fdb
File content as of revision 106:1b09dd92c3f1:
#include "color.h" Color::Color(float red, float green, float blue) { r = red; g = green; b = blue; };