1

Dependencies:   mbed

Committer:
yu10078999
Date:
Fri Sep 09 08:55:25 2016 +0000
Revision:
0:20fa256f0e0b
0

Who changed what in which revision?

UserRevisionLine numberNew contents of line
yu10078999 0:20fa256f0e0b 1 #include "mbed.h"
yu10078999 0:20fa256f0e0b 2
yu10078999 0:20fa256f0e0b 3 Serial esp8266(D6 ,D7);
yu10078999 0:20fa256f0e0b 4
yu10078999 0:20fa256f0e0b 5 int main() {
yu10078999 0:20fa256f0e0b 6 float val=3.141592;
yu10078999 0:20fa256f0e0b 7 esp8266.printf("%f",val);
yu10078999 0:20fa256f0e0b 8 }