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.
led.h
00001 #ifndef MBED_LED_H 00002 #define MBED_LED_H 00003 #include "mbed.h" 00004 //Klasa za LED koja daje funkcije za mijenjanje stanja 00005 class LED 00006 { 00007 public: 00008 LED(PinName pin); 00009 void status(int status); 00010 void flip(); 00011 private: 00012 DigitalOut _pin; 00013 }; 00014 #endif
Generated on Sat Jul 23 2022 11:10:03 by
1.7.2