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.
rgb.cpp
00001 #include "rgb.h" 00002 00003 00004 Rgb::Rgb(PinName r_pin, PinName g_pin, PinName b_pin) { 00005 00006 rout = new PwmOut(r_pin); 00007 gout = new PwmOut(g_pin); 00008 bout = new PwmOut(b_pin); 00009 } 00010 00011 void Rgb::setColor(int red, int green, int blue) { 00012 rout->write(255-red); 00013 gout->write(255-green); 00014 bout->write(255-blue); 00015 }
Generated on Fri Jul 22 2022 05:02:44 by
1.7.2