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.
Fork of Blinky by
main.cpp
- Committer:
- Pokitto
- Date:
- 2017-11-22
- Revision:
- 8:1f8f91d671a5
- Parent:
- 5:c4a0391b43ac
- Child:
- 9:a6bed03648e5
File content as of revision 8:1f8f91d671a5:
#include "Pokitto.h"
// the pokitto core library
Pokitto::Core pokitto;
// create a 'DigitalOut' object to represent
// the digital output pin used to communicated with the LED
// the object is set to use the EXT0 pin for output
DigitalOut led0 = DigitalOut(EXT0);
int main ()
{
// initialise the Pokitto
pokitto.begin();
// the main loop
while (pokitto.isRunning())
{
// update the Pokitto's state
if (pokitto.update())
{
// write 'Hello World!' to the screen
// this is so you can tell the Pokitto is running
pokitto.display.print("Hello World!");
// if the A button is pressed
if(pokitto.buttons.aBtn())
{
// send a high signal to turn the LED on
led0.write(1);
}
// if the B button is pressed
if(pokitto.buttons.bBtn())
{
// send a low signal to turn the LED off
led0.write(0);
}
}
}
return 1;
}
