use for led toggle

toggle.cpp

Committer:
uchiyama
Date:
2012-03-22
Revision:
0:0b2d00066327

File content as of revision 0:0b2d00066327:

#include "mbed.h"
void toggle(DigitalOut x)
{
   x = !x;
}