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: Lorawan_Version_0_1
Dependents: Lorawan_Version_0_1
Light/Light.h
- Committer:
- jacktractive
- Date:
- 2020-01-21
- Revision:
- 70:65b2f1cc2859
- Parent:
- 69:316fee01f5d9
- Child:
- 72:67c5bce77999
File content as of revision 70:65b2f1cc2859:
class Light { public: Light(EventQueue *q,DigitalOut *la,DigitalOut *lh); void adjust(bool IsMoving, uint32_t TimeStanding ); void Blinken_ein(int time_to_blink); private: static void Licht_toggle(Light *l); static void Blinken_aus(Light *l); int BlinkEventID; DigitalOut *LichtAus; DigitalOut *LichtHell; // //DigitalOut LichtAus(PC_12); //DigitalOut LichtHell(PC_9); };