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.
main.cpp
00001 #include "rgb.h" 00002 00003 Rgb* rgb; 00004 00005 int main() { 00006 Rgb* rgb = new Rgb(p23, p24, p25); 00007 while(1) { 00008 00009 rgb->setColor(0,0,255); 00010 wait_ms(1000); 00011 rgb->setColor(255,0,0); 00012 wait_ms(1000); 00013 rgb->setColor(0,255,0); 00014 wait_ms(1000); 00015 //delay(1000); 00016 } 00017 }
Generated on Fri Jul 22 2022 05:02:44 by
1.7.2