PortOut Hello World
Dependencies: mbed
Fork of PortOut_HelloWorld by
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 Mon Jul 18 2022 19:52:54 by 1.7.2