blob: 2506088b4f535087beb55fdbd38dbb95ad72c3cd [file] [log] [blame]
Dirk Eibach486cad02011-10-03 23:13:51 +00001#ifndef __PCA9698_H_
2#define __PCA9698_H_
3
4int pca9698_direction_input(u8 chip, unsigned offset);
5int pca9698_direction_output(u8 chip, unsigned offset);
6int pca9698_get_input(u8 chip, unsigned offset);
7int pca9698_set_output(u8 chip, unsigned offset, int value);
8
9#endif /* __PCA9698_H_ */