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: KS0108_PCF8574 mbed
menbed/menbedMenuMessage.cpp
- Committer:
- GuiTwo
- Date:
- 2012-09-11
- Revision:
- 3:ec80bb6ff5da
- Parent:
- 0:936f1c020120
File content as of revision 3:ec80bb6ff5da:
#include "mbed.h"
#include "include/menbedMenuMessage.h"
MenbedMenuMessage::MenbedMenuMessage (uint8_t numLines, uint8_t lineLength)
{
text = new char[numLines * lineLength + 1];
}
MenbedMenuMessage::~MenbedMenuMessage()
{
delete[] text;
}