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:
- jksoft
- Date:
- 2015-03-06
- Revision:
- 1:92135ec2c2df
- Parent:
- 0:7aaa2aa0ce71
File content as of revision 1:92135ec2c2df:
#include "mbed.h" AnalogIn sensor(P20); int main() { while(1) { float ain = sensor; printf("tmp:%f\r\n",ain); wait(1.0); } }