pcf8574.h
Go to the documentation of this file.00001 00039 #ifndef DRV_PCF8574_H 00040 #define DRV_PCF8574_H 00041 00042 #include <cfg/compiler.h> 00043 00044 typedef uint8_t pcf8574_addr; 00045 00049 typedef struct Pcf8574 00050 { 00051 pcf8574_addr addr; 00052 } Pcf8574; 00053 00054 #define PCF8574ID 0x40 00055 00056 int pcf8574_get(Pcf8574 *pcf); 00057 bool pcf8574_put(Pcf8574 *pcf, uint8_t data); 00058 bool pcf8574_init(Pcf8574 *pcf, pcf8574_addr addr); 00059 00060 #endif /* DRV_PCF8574_H */
