デジタルポート反転制御

Dependencies:   mbed

main.cpp

Committer:
spyglass77
Date:
2015-08-24
Revision:
0:88cb63e043c1
Child:
1:d95c4085cf00

File content as of revision 0:88cb63e043c1:

#include "mbed.h"
//Digital port reversal.
DigitalOut port7(D7);
int main() {
    while(1) {
        port7 = !port7; //D7 port 
        wait(0.2); // 200 ms
    }
}