You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include "button.h"
|
|
#include "led.h"
|
|
#include "system.h"
|
|
|
|
|
|
int main (void)
|
|
{
|
|
system_init ();
|
|
|
|
led_init ();
|
|
button_init ();
|
|
|
|
while (1)
|
|
{
|
|
if (button_pressed_p ())
|
|
{
|
|
led_on ();
|
|
}
|
|
else
|
|
{
|
|
led_off ();
|
|
}
|
|
}
|
|
}
|