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
- Committer:
- loicguibert
- Date:
- 2019-03-08
- Revision:
- 5:0d9e292a9d06
- Parent:
- 4:bfe306335065
- Child:
- 11:dbc310addbf6
File content as of revision 5:0d9e292a9d06:
#include "mbed.h" #include "rtos.h" #include "Logger.h" #include "NRFDevKit.h" #include "WeatherStation.h" int main () { Logger logger(true); NRFDevKit devKit(logger); WeatherStation weather(devKit, logger); logger.log("Code written by Loic Guibert\r\n"); weather.start(); }