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.
flipLED.cpp
00001 #include "klasaLED.h" 00002 #include "mbed.h" 00003 LED_::LED_(PinName pin) : _pin(pin) 00004 { 00005 _pin = 0; 00006 } 00007 00008 //Određivanje stanja na LED 00009 void LED_::status(int status) 00010 { 00011 _pin = status; 00012 } 00013 00014 00015 //Mijenjanje stanja na LED 00016 void LED_::flip() 00017 { 00018 _pin = !_pin; 00019 }
Generated on Tue Jul 26 2022 04:06:49 by
