waveblender/led.h

14 lines
193 B
C
Raw Normal View History

2020-04-06 21:08:01 +02:00
#ifndef LED_H
#define LED_H
#include <stdint.h>
#include "system.h"
void led_setup(void);
void led_on(int led);
void led_off(int led);
void led_toggle(int led);
void led_beat(int b);
#endif