Junichi Katsu
/
mbed_tmp
アナログ入力をPCで表示するプログラムです。
main.cpp
- Committer:
- jksoft
- Date:
- 2015-03-06
- Revision:
- 0:7aaa2aa0ce71
- Child:
- 1:92135ec2c2df
File content as of revision 0:7aaa2aa0ce71:
#include "mbed.h" AnalogIn sensor(P20); int main() { while(1) { float tmp = sensor; printf("tmp:%f\r\n",tmp); wait(1.0); } }