mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
28 lines
1.0 KiB
C
28 lines
1.0 KiB
C
/* ******************************** */
|
|
/* Warning! Don't modify this file! */
|
|
/* ******************************** */
|
|
#ifndef __PikaStdDevice_GPIO__H
|
|
#define __PikaStdDevice_GPIO__H
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "PikaObj.h"
|
|
|
|
PikaObj *New_PikaStdDevice_GPIO(Args *args);
|
|
|
|
void PikaStdDevice_GPIO_disable(PikaObj *self);
|
|
void PikaStdDevice_GPIO_enable(PikaObj *self);
|
|
char * PikaStdDevice_GPIO_getMode(PikaObj *self);
|
|
char * PikaStdDevice_GPIO_getPin(PikaObj *self);
|
|
void PikaStdDevice_GPIO_high(PikaObj *self);
|
|
void PikaStdDevice_GPIO_init(PikaObj *self);
|
|
void PikaStdDevice_GPIO_low(PikaObj *self);
|
|
void PikaStdDevice_GPIO_platformDisable(PikaObj *self);
|
|
void PikaStdDevice_GPIO_platformEnable(PikaObj *self);
|
|
void PikaStdDevice_GPIO_platformHigh(PikaObj *self);
|
|
void PikaStdDevice_GPIO_platformLow(PikaObj *self);
|
|
void PikaStdDevice_GPIO_platformSetMode(PikaObj *self, char * mode);
|
|
void PikaStdDevice_GPIO_setMode(PikaObj *self, char * mode);
|
|
void PikaStdDevice_GPIO_setPin(PikaObj *self, char * pinName);
|
|
|
|
#endif
|