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.
Dependencies: mbed
main.cpp
- Committer:
- GGU
- Date:
- 2019-07-30
- Revision:
- 0:af6ad713f332
- Child:
- 1:419e4a7b47d0
File content as of revision 0:af6ad713f332:
//シリアル通信を利用してad_dataの数値を表記する #include "mbed.h" AnalogIn ain(A0); Serial pc(USBTX,USBRX); //tx,rx int main() { int ad_data; while(1) { ad_data=ain; pc.printf("%d\n",ad_data); } }