blob: 5c45166ef25d4507201e3acbf197361e397509c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef MICROPY_INCLUDED_TEENSY_LED_H
#define MICROPY_INCLUDED_TEENSY_LED_H
typedef enum {
PYB_LED_BUILTIN = 1,
} pyb_led_t;
void led_init(void);
void led_state(pyb_led_t led, int state);
void led_toggle(pyb_led_t led);
extern const mp_obj_type_t pyb_led_type;
#endif // MICROPY_INCLUDED_TEENSY_LED_H
|