AD_Flash
Revision 0:ba3588c03b72, committed 2013-02-18
- Comitter:
- HarishMekali
- Date:
- Mon Feb 18 14:30:54 2013 +0000
- Commit message:
- ADC_Flash;
Changed in this revision
diff -r 000000000000 -r ba3588c03b72 TextLCD.lib --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/TextLCD.lib Mon Feb 18 14:30:54 2013 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/carlos_nascimento08/code/TextLCD/#ab287c4899bf
diff -r 000000000000 -r ba3588c03b72 main.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Mon Feb 18 14:30:54 2013 +0000 @@ -0,0 +1,12 @@ +#include "mbed.h" + +AnalogIn a_in(p18); +LocalFileSystem local("local"); +float a; +int main() +{ +FILE *fp=fopen("/local/bms.csv","a"); +a=a_in.read(); +fprintf(fp,"%0.3f",a); +fclose(fp); +}
diff -r 000000000000 -r ba3588c03b72 mbed.bld --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Mon Feb 18 14:30:54 2013 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/0883845fe643 \ No newline at end of file