led.h 193 B

12345678910111213
  1. #ifndef LED_H
  2. #define LED_H
  3. #include <stdint.h>
  4. #include "system.h"
  5. void led_setup(void);
  6. void led_on(int led);
  7. void led_off(int led);
  8. void led_toggle(int led);
  9. void led_beat(int b);
  10. #endif