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.
Dependencies: mbed
main.cpp
- Committer:
- EISR
- Date:
- 2020-02-03
- Revision:
- 0:9525cf87fb78
File content as of revision 0:9525cf87fb78:
#include "bluetoothV1bibli.h" int val=5; //la data void data_on_blueth(void); //fonction d'interruption int main(void) { Ticker timer; init_blueth(); timer.attach(&data_on_blueth,0.005); // creation de l'interruption while(1) {} } void data_on_blueth(void) { send_data(val); //A chaque IT }