blob: 2506088b4f535087beb55fdbd38dbb95ad72c3cd (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef __PCA9698_H_
#define __PCA9698_H_
int pca9698_direction_input(u8 chip, unsigned offset);
int pca9698_direction_output(u8 chip, unsigned offset);
int pca9698_get_input(u8 chip, unsigned offset);
int pca9698_set_output(u8 chip, unsigned offset, int value);
#endif /* __PCA9698_H_ */
|