3 fuc:fat sd eth
Dependencies: FATFileSystem SDFileSystem WIZnetInterface mbed
Fork of adc_dac by
Revision 0:695e35fce077, committed 2016-07-13
- Comitter:
- jh_ndm
- Date:
- Wed Jul 13 08:47:40 2016 +0000
- Child:
- 1:2cd31d24d6fc
- Commit message:
- DFRobot mbed test
Changed in this revision
| main.cpp | Show annotated file Show diff for this revision Revisions of this file |
| mbed.bld | Show annotated file Show diff for this revision Revisions of this file |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Wed Jul 13 08:47:40 2016 +0000
@@ -0,0 +1,108 @@
+/*
+#include "mbed.h"
+AnalogIn battery(A3);
+Serial pc(PA_13,PA_14);
+int main(){
+ while(1){
+ if(battery > 0.5){
+ pc.printf("%02f\n",battery.read()*3.3);
+ wait(1);
+ }
+ }
+}
+*/
+
+/********uart0 demo********
+#include "mbed.h"
+
+Serial pc(PA_13, PA_14); // tx, rx
+
+int main() {
+ pc.printf("Please input something\n");
+
+ while(1) {
+ char c = pc.getc();
+ pc.printf("%s\n",c);
+ }
+}
+*/
+
+/********uart2 demo********
+#include "mbed.h"
+
+Serial pc(PC_10, PC_11); // tx, rx
+
+int main() {
+ pc.printf("Please input something\n");
+
+ while(1) {
+ char c = pc.getc();
+ pc.printf("%s\n",c);
+ }
+}
+*/
+
+/**********Digital demo**********
+#include "mbed.h"
+
+DigitalOut num1(D10);
+DigitalOut num2(D11);
+DigitalOut num3(D12);
+DigitalOut num4(D2);
+DigitalOut num5(D3);
+
+int main(){
+ while(1){
+ wait(0.25);
+ num1 = 1;
+ num2 = 1;
+ num3 = 1;
+ num4 = 1;
+ num5 = 1;
+ wait(0.25);
+ num1 = 0;
+ num2 = 0;
+ num3 = 0;
+ num4 = 0;
+ num5 = 0;
+ }
+}
+*/
+
+/**********analog demo***********
+#include "mbed.h"
+AnalogIn battery5(A0);
+AnalogIn battery4(PC_9);
+AnalogIn battery3(D5);
+//Serial pc(PA_13,PA_14);
+Serial pc(USBTX,USBRX);
+int main(){
+ while(1){
+ //if(battery3 > 0.5){
+ // pc.printf("%f\n",battery3.read()*3.3);
+ // wait(0.2);
+ // }
+ //if(battery4 > 0.5){
+ // pc.printf("%f\n",battery4.read());
+ //wait(0.2);
+ //}
+ if(battery5 > 0.5){
+ pc.printf("%f\n",battery5.read());
+ wait(0.2);
+ }
+ }
+}
+*/
+
+
+#include"mbed.h"
+AnalogIn battery(A2);
+Serial pc(USBTX,USBRX);
+int main(){
+ while(1){
+ if(battery > 0.5){
+ pc.printf("%f",battery.read());
+ wait(1);
+ }
+ }
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Wed Jul 13 08:47:40 2016 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/aae6fcc7d9bb \ No newline at end of file
