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.
klasaLED.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 Tue Jul 26 2022 04:06:49 by
