Code du projet lièvres pour LoRa

Dependencies:   SX1272Lib mbed

Committer:
mFaideau
Date:
Wed Oct 05 14:31:33 2016 +0000
Revision:
3:e86159a1d727
Parent:
1:bddab1c9c632
changement de test vers 500ms

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