Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef __PCF8574_H__
00013 #define __PCF8574_H__
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 #pragma systemFile
00036
00037 #ifndef __COMMON_H__
00038 #include "common.h"
00039 #endif
00040
00041 #define PCF8574_I2C_ADDR 0x70
00042
00043
00044 tByteArray PCF8574_I2CRequest;
00045 tByteArray PCF8574_I2CReply;
00046
00047
00048 bool PCF8574sendBytes(tSensors link, ubyte _byte);
00049 bool PCF8574readBytes(tSensors link, ubyte &_byte);
00050
00051
00052
00053
00054
00055
00056
00057
00058 bool PCF8574sendBytes(tSensors link, ubyte _byte) {
00059 memset(PCF8574_I2CRequest, 0, sizeof(tByteArray));
00060
00061 PCF8574_I2CRequest[0] = 2;
00062 PCF8574_I2CRequest[1] = PCF8574_I2C_ADDR;
00063 PCF8574_I2CRequest[2] = _byte;
00064
00065 return writeI2C(link, PCF8574_I2CRequest);
00066 }
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076 bool PCF8574readBytes(tSensors link, ubyte &_byte) {
00077 memset(PCF8574_I2CRequest, 0, sizeof(tByteArray));
00078
00079 PCF8574_I2CRequest[0] = 1;
00080 PCF8574_I2CRequest[1] = PCF8574_I2C_ADDR;
00081 PCF8574_I2CRequest[2] = _byte;
00082
00083 if (!writeI2C(link, PCF8574_I2CRequest, PCF8574_I2CReply, 1))
00084 return false;
00085
00086 _byte = PCF8574_I2CReply[0];
00087
00088 return true;
00089
00090 }
00091
00092
00093 #endif // __PCF8574_H__
00094
00095
00096
00097
00098
00099