mirror of
https://github.com/LuiCat/ArduinoTaikoController.git
synced 2024-12-19 01:46:16 +01:00
10 lines
162 B
C
10 lines
162 B
C
#ifndef _ANALOG_READ_EX_H_
|
|
#define _ANALOG_READ_EX_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
void analogSwitchPin(uint8_t pin);
|
|
int analogReadNow();
|
|
|
|
#endif // _ANALOG_READ_EX_H_
|