akinori uchiyama / LED_Toggle
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers toggle.cpp Source File

toggle.cpp

00001 #include "mbed.h"
00002 void toggle(DigitalOut x)
00003 {
00004    x = !x;
00005 }