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.cpp
00001 #include "led.h" 00002 #include "mbed.h" 00003 LED::LED(PinName pin) : _pin(pin) 00004 { 00005 _pin = 0; 00006 } 00007 00008 //Metoda određuje stanje LED 00009 void LED::status(int status) 00010 { 00011 _pin = status; 00012 } 00013 00014 00015 //Metoda mijenja stanje na LED 00016 void LED::flip() 00017 { 00018 _pin = !_pin; 00019 }
Generated on Sat Jul 23 2022 11:10:03 by
1.7.2