nodemcu-firmware/app/include/driver/gpio16.h

10 lines
179 B
C
Raw Normal View History

#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