Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: N5110 ShiftReg Tone mbed
ModeC/ModeC.cpp
- Committer:
- eencae
- Date:
- 2017-03-13
- Revision:
- 1:76241e21ec61
- Parent:
- 0:d5312060f649
File content as of revision 1:76241e21ec61:
#include "ModeC.h"
void mode_C()
{
lcd.clear();
lcd.printString("Mode C",0,0);
lcd.refresh();
wait_ms(250); // small delay to prevent previous press being detected again
while (button_c.read() == 0) {
// code goes in here - this acts like the main while(1) loop
}
}