Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
BT.cpp
- Committer:
- djinn77
- Date:
- 2018-11-01
- Revision:
- 0:ef171b42a496
- Child:
- 1:991cdc24ec5e
File content as of revision 0:ef171b42a496:
#include "mbed.h"
AnalogIn analog_value(A0);
Serial deviceBT(D8, D2); 
int main() {
    deviceBT.baud(9600);
    float d;
    while(1){
          d= analog_value.read()*1024;
          deviceBT.printf("%f \n",d);
        }
    }