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.
Dependents: bertl_led bertl_led bertl_led bertl_led ... more
Fork of Bertl by
Erstes Programm
#include "mbed.h"
#include "const.h"
#include "Robot.h"
Robot bertl;
int main()
{
bertl.NibbleLeds(0x0F);
wait(1); // in Sekunden
bertl.NibbleLeds(0x00);
while(1)
{
wait_ms(500); // in Millisekunden
if(bertl.IsButtonPressed(BTN_BL))
{
bertl.TurnLedOn(LED_BL1);
}
if(bertl.IsButtonPressed(BTN_BR))
{
bertl.TurnLedOff(LED_BL1);
}
}
}
