Tobias Jansen / Mbed OS Lorawan_Version_0_1

Dependencies:   Lorawan_Version_0_1

Dependents:   Lorawan_Version_0_1

Committer:
jacktractive
Date:
Tue Jan 21 13:20:59 2020 +0000
Revision:
70:65b2f1cc2859
Parent:
69:316fee01f5d9
Child:
72:67c5bce77999
Lora und GPS test mit Testdaten

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jacktractive 69:316fee01f5d9 1
jacktractive 69:316fee01f5d9 2 class Light {
jacktractive 69:316fee01f5d9 3 public:
jacktractive 69:316fee01f5d9 4
jacktractive 70:65b2f1cc2859 5 Light(EventQueue *q,DigitalOut *la,DigitalOut *lh);
jacktractive 69:316fee01f5d9 6
jacktractive 69:316fee01f5d9 7 void adjust(bool IsMoving, uint32_t TimeStanding );
jacktractive 69:316fee01f5d9 8
jacktractive 69:316fee01f5d9 9 void Blinken_ein(int time_to_blink);
jacktractive 69:316fee01f5d9 10
jacktractive 69:316fee01f5d9 11
jacktractive 69:316fee01f5d9 12
jacktractive 69:316fee01f5d9 13
jacktractive 69:316fee01f5d9 14 private:
jacktractive 70:65b2f1cc2859 15 static void Licht_toggle(Light *l);
jacktractive 70:65b2f1cc2859 16 static void Blinken_aus(Light *l);
jacktractive 70:65b2f1cc2859 17 int BlinkEventID;
jacktractive 70:65b2f1cc2859 18 DigitalOut *LichtAus;
jacktractive 70:65b2f1cc2859 19 DigitalOut *LichtHell;
jacktractive 70:65b2f1cc2859 20 //
jacktractive 70:65b2f1cc2859 21 //DigitalOut LichtAus(PC_12);
jacktractive 70:65b2f1cc2859 22 //DigitalOut LichtHell(PC_9);
jacktractive 69:316fee01f5d9 23 };
jacktractive 69:316fee01f5d9 24