Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: FRDM-KL46Z_SENSORDIG_HUMTEMP
RGBLed.h
- Committer:
- MayraPeA
- Date:
- 2019-05-31
- Revision:
- 0:627ea7b55fe3
File content as of revision 0:627ea7b55fe3:
#include "mbed.h"
class RGBLed
{
public:
RGBLed(PinName redpin, PinName greenpin, PinName bluepin);
void write(float red,float green, float blue);
private:
PwmOut _redpin;
PwmOut _greenpin;
PwmOut _bluepin;
};