mirror of https://github.com/ARMmbed/mbed-os.git
11 lines
114 B
C++
11 lines
114 B
C++
|
#include "mbed.h"
|
||
|
|
||
|
DigitalOut out(p5);
|
||
|
|
||
|
int main() {
|
||
|
while (true) {
|
||
|
out = 1;
|
||
|
out = 0;
|
||
|
}
|
||
|
}
|