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: BLE_API mbed nRF51822
MicrobitHw.cpp
- Committer:
- matsujirushi
- Date:
- 2017-07-14
- Revision:
- 0:24c8585f0f35
File content as of revision 0:24c8585f0f35:
#include "mbed.h"
#include "MicrobitHw.h"
static BusOut HwLedMatrixRows(ROW1, ROW2, ROW3);
static BusOut HwLedMatrixCols(COL1, COL2, COL3, COL4, COL5, COL6, COL7, COL8, COL9);
void MicrobitHwInitialize()
{
HwLedMatrixRows.write(0);
HwLedMatrixCols.write(0);
}
void MicrobitHwLedMatrix(int rows, int colValues)
{
HwLedMatrixRows.write(0);
HwLedMatrixCols.write(~colValues);
HwLedMatrixRows.write(1 << rows);
}