UoD_ME21001_Group_1_12 / Mbed 2 deprecated ME21001_Lab05_Exercise_01

Dependencies:   mbed

Committer:
jfair
Date:
Sat Oct 19 10:11:56 2019 +0000
Revision:
0:1701fc00af69
a

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jfair 0:1701fc00af69 1 #include "mbed.h"
jfair 0:1701fc00af69 2
jfair 0:1701fc00af69 3 DigitalOut bulb(p17);//defines variable for the bulb and pin its on
jfair 0:1701fc00af69 4
jfair 0:1701fc00af69 5 int main() {
jfair 0:1701fc00af69 6 while(1) {//repats indefnintely
jfair 0:1701fc00af69 7 bulb = 1;//turns bulb on
jfair 0:1701fc00af69 8 wait(0.5);//waits 1 second
jfair 0:1701fc00af69 9 bulb = 0;//turns bulb off
jfair 0:1701fc00af69 10 wait(0.5);//waits 1 second
jfair 0:1701fc00af69 11 }
jfair 0:1701fc00af69 12 }