302-2019 Group 2 / Mbed 2 deprecated 302CombinedCode

Dependencies:   mbed

Committer:
Jtroper
Date:
Fri Jan 18 19:19:37 2019 +0000
Revision:
0:0e723924ae7c
Child:
1:b86f099a314a
start;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Jtroper 0:0e723924ae7c 1 #include "mbed.h"
Jtroper 0:0e723924ae7c 2
Jtroper 0:0e723924ae7c 3 DigitalOut myled(LED1);
Jtroper 0:0e723924ae7c 4
Jtroper 0:0e723924ae7c 5 int main() {
Jtroper 0:0e723924ae7c 6 while(1) {
Jtroper 0:0e723924ae7c 7 myled = 1;
Jtroper 0:0e723924ae7c 8 wait(0.2);
Jtroper 0:0e723924ae7c 9 myled = 0;
Jtroper 0:0e723924ae7c 10 wait(0.2);
Jtroper 0:0e723924ae7c 11 }
Jtroper 0:0e723924ae7c 12 }