Craig Evans / Mbed 2 deprecated 1620_Project_Template

Dependencies:   N5110 ShiftReg Tone mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers ModeB.cpp Source File

ModeB.cpp

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