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.
Fork of mbed_blinky by
main.cpp
00001 #include<mbed.h> 00002 00003 Serial pc(P0_23,P0_25); 00004 DigitalOut led(P0_20); 00005 Timer timer; 00006 00007 00008 void callback(void) 00009 { 00010 led = ~led; 00011 printf("hello everyone!\r\n"); 00012 } 00013 00014 int main() 00015 { 00016 Ticker ticker; 00017 ticker.attach(callback,1); 00018 while(1); 00019 } 00020
Generated on Thu Jul 21 2022 04:11:51 by
1.7.2
