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 /*M0-BOARD LPC11U24 VERSION 1.0 WF 01_2015 00002 BULME Graz / Elektronik 00003 00004 Polling eines Tasters 00005 00006 Datei: WF_taster_polling/main.cpp 00007 00008 */ 00009 00010 #include "mbed.h" 00011 00012 int main() { 00013 while(1) { 00014 time_t seconds = time(NULL); 00015 00016 printf("Time as seconds since January 1, 1970 = %d\n", seconds); 00017 00018 printf("Time as a basic string = %s", ctime(&seconds)); 00019 00020 char buffer[32]; 00021 strftime(buffer, 32, "%I:%M %p\n", localtime(&seconds)); 00022 printf("Time as a custom formatted string = %s", buffer); 00023 00024 wait(1); 00025 } 00026 }
Generated on Tue Jul 12 2022 15:58:03 by
1.7.2