mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
16 lines
343 B
C
16 lines
343 B
C
/* ******************************** */
|
|
/* Warning! Don't modify this file! */
|
|
/* ******************************** */
|
|
#ifndef __Device_LED__H
|
|
#define __Device_LED__H
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "PikaObj.h"
|
|
|
|
PikaObj *New_Device_LED(Args *args);
|
|
|
|
void Device_LED_off(PikaObj *self);
|
|
void Device_LED_on(PikaObj *self);
|
|
|
|
#endif
|