mbed official
/
PortOut_HelloWorld
PortOut Hello World
Embed:
(wiki syntax)
Show/hide line numbers
main.cpp
00001 // Toggle all four LEDs 00002 00003 #include "mbed.h" 00004 00005 // LED1 = P1.18 LED2 = P1.20 LED3 = P1.21 LED4 = P1.23 00006 #define LED_MASK 0x00B40000 00007 00008 PortOut ledport(Port1, LED_MASK); 00009 00010 int main() { 00011 while(1) { 00012 ledport = LED_MASK; 00013 wait(1); 00014 ledport = 0; 00015 wait(1); 00016 } 00017 }
Generated on Tue Jul 12 2022 21:02:21 by 1.7.2