cansat_B 2019 / Mbed 2 deprecated pic-xbee

Dependencies:   mbed

main.cpp

Committer:
saeichi
Date:
2019-11-15
Revision:
0:0ef2fb2bea82
Child:
1:3f0c5242bc32

File content as of revision 0:0ef2fb2bea82:

#include "mbed.h"
#include <stdio.h>
#include <base64.h>

LocalFileSystem local("local");

Serial pc(USBTX,USBRX);
Serial xbee(p13, p14);
int main(void){
    FILE *fp;
    base64 *bs;
    int c;
    
    xbee.printf("charizard!!!\r\n");
    bs = new base64();
    bs->Encode("/local/PICT000.jpg","/local/d.txt");
    
    
   if((fp=fopen("/local/d.txt","r"))!=NULL)
   {
       while ((c=fgetc(fp))!=EOF){
           xbee.printf("%c",c);
       }
       fclose(fp);
   }
   return 0;
}