Code du projet lièvres pour LoRa

Dependencies:   SX1272Lib mbed

Committer:
bLandais
Date:
Wed Oct 05 12:59:54 2016 +0000
Revision:
0:b239f8883fcc
Child:
1:bddab1c9c632
initial

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;
bLandais 0:b239f8883fcc 8 Thread::wait(100);
bLandais 0:b239f8883fcc 9 }
bLandais 0:b239f8883fcc 10 }