mirror of
https://github.com/nodemcu/nodemcu-firmware.git
synced 2025-01-16 20:52:57 +08:00
10 lines
179 B
C
10 lines
179 B
C
#ifndef __GPIO16_H__
|
|
#define __GPIO16_H__
|
|
|
|
void gpio16_output_conf(void);
|
|
void gpio16_output_set(uint8 value);
|
|
void gpio16_input_conf(void);
|
|
uint8 gpio16_input_get(void);
|
|
|
|
#endif
|