Toggle led ON pin PA_5 (LED1) when the button on pin PB_4 is pressed

Dependencies:   Hotboards_buttons mbed

main.cpp

Committer:
Hotboards
Date:
2016-03-03
Revision:
0:da4086004592

File content as of revision 0:da4086004592:


/*
 * Toggle led ON pin PA_5 (LED1) when the button on pin PB_4 is pressed
 */
 
#include "mbed.h"
#include "Hotboards_buttons.h"

//Creates a single button object, when the button is pressed it gives you
//a LOW(0) value because it works with pull-ups.
Hotboards_buttons btn( PB_4 );
//If your buttons gives you a HIGH(1) value when is pressed, then we need
//to create the button object with and extra parameter:
//Hotboards_buttons btn( PB_4 , 1 ); in any case the functions will return
//a HIGH(1) value any time the button is pressed

//To our example we will use the led on the nucleo board
DigitalOut nucleoLed( LED1 );

int main()
{
    while(1)
    {
        //The moment when the button is pressed the function will return a HIGH(1)
        //value, it doesn`t matter if your button is configured with pull-ups(LOW)
        //or pull-downs(HIGH)
        if( btn.isPressed( ) )
        {
            //Toggle led on the nucleo board
            nucleoLed = !nucleoLed;
        }
    }
}