Code du projet lièvres pour LoRa

Dependencies:   SX1272Lib mbed

Committer:
aGoelzer
Date:
Wed Oct 05 13:05:14 2016 +0000
Revision:
1:bddab1c9c632
Parent:
0:b239f8883fcc
Child:
3:e86159a1d727
Child:
4:954ae88b6664
test

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bLandais 0:b239f8883fcc 1 #include "mbed.h"
bLandais 0:b239f8883fcc 2
bLandais 0:b239f8883fcc 3 DigitalOut led1(LED3);
bLandais 0:b239f8883fcc 4
bLandais 0:b239f8883fcc 5 int main() {
bLandais 0:b239f8883fcc 6 while(true) {
bLandais 0:b239f8883fcc 7 led1 = !led1;
aGoelzer 1:bddab1c9c632 8 Thread::wait(200);
bLandais 0:b239f8883fcc 9 }
bLandais 0:b239f8883fcc 10 }