Craig Evans / Mbed 2 deprecated 1620_Project_Template

Dependencies:   N5110 ShiftReg Tone mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers ModeD.cpp Source File

ModeD.cpp

00001 #include "ModeD.h"
00002 
00003 void mode_D() {
00004     
00005     lcd.clear();
00006     lcd.printString("Mode D",0,0);
00007     lcd.refresh();
00008     wait_ms(250);
00009 
00010     while (button_d.read() == 0) {
00011         
00012         // code goes in here - this acts like the main while(1) loop
00013 
00014 
00015     }
00016     
00017 }