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