Equalizer Project

Dependencies:   mbed

Committer:
shyamgatech
Date:
Sun Nov 22 20:21:59 2020 +0000
Revision:
2:336a015574af
Parent:
1:bf0f9f467dbe
testing commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dimitryjl23 0:dbf2ca676918 1 #include "mbed.h"
dimitryjl23 0:dbf2ca676918 2
dimitryjl23 1:bf0f9f467dbe 3 //test comment
dimitryjl23 1:bf0f9f467dbe 4
dimitryjl23 0:dbf2ca676918 5 DigitalOut myled(LED1);
dimitryjl23 0:dbf2ca676918 6
dimitryjl23 0:dbf2ca676918 7 int main() {
dimitryjl23 0:dbf2ca676918 8 while(1) {
shyamgatech 2:336a015574af 9 myled = !myled;
dimitryjl23 0:dbf2ca676918 10 wait(0.2);
dimitryjl23 0:dbf2ca676918 11 }
dimitryjl23 0:dbf2ca676918 12 }