mirror of
https://github.com/nodemcu/nodemcu-firmware.git
synced 2025-01-30 21:12:55 +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
|