Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #pragma systemFile
00031
00032 #ifndef __COMMON_H__
00033 #include "common.h"
00034 #endif
00035
00036
00037 #define HTPIR_I2C_ADDR 0x02
00038 #define HTPIR_DEADBAND 0x41
00039 #define HTPIR_READING 0x42
00040
00041 #define HTPIR_DEFAULT_DEADBAND 12
00042
00043 bool HTPIRsetDeadband(tSensors link, int deadband);
00044 int HTPIRreadSensor(tSensors link);
00045
00046 #ifdef __HTSMUX_SUPPORT__
00047 int HTPIRreadSensor(tMUXSensor muxsensor);
00048
00049 tConfigParams HTPIR_config = {HTSMUX_CHAN_I2C, 1, 0x02, 0x42};
00050 #endif // __HTSMUX_SUPPORT__
00051
00052 tByteArray HTPIR_I2CRequest;
00053 tByteArray HTPIR_I2CReply;
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068 bool HTPIRsetDeadband(tSensors link, int deadband) {
00069 memset(HTPIR_I2CRequest, 0, sizeof(tByteArray));
00070
00071 deadband = clip(deadband, 0, 47);
00072
00073 HTPIR_I2CRequest[0] = 3;
00074 HTPIR_I2CRequest[1] = HTPIR_I2C_ADDR;
00075 HTPIR_I2CRequest[2] = HTPIR_DEADBAND;
00076 HTPIR_I2CRequest[3] = deadband;
00077
00078
00079 return writeI2C(link, HTPIR_I2CRequest);
00080 }
00081
00082
00083
00084
00085
00086
00087
00088 int HTPIRreadSensor(tSensors link) {
00089 memset(HTPIR_I2CRequest, 0, sizeof(tByteArray));
00090
00091 HTPIR_I2CRequest[0] = 2;
00092 HTPIR_I2CRequest[1] = HTPIR_I2C_ADDR;
00093 HTPIR_I2CRequest[2] = HTPIR_READING;
00094
00095 if (!writeI2C(link, HTPIR_I2CRequest, HTPIR_I2CReply, 1))
00096 return -1;
00097
00098 return (HTPIR_I2CReply[0] >= 128) ? (int)HTPIR_I2CReply[0] - 256 : (int)HTPIR_I2CReply[0];
00099 }
00100
00101
00102
00103
00104
00105
00106 #ifdef __HTSMUX_SUPPORT__
00107 int HTPIRreadSensor(tMUXSensor muxsensor) {
00108 memset(HTPIR_I2CReply, 0, sizeof(tByteArray));
00109
00110 if (HTSMUXSensorTypes[muxsensor] != HTSMUXSensorCustom)
00111 HTSMUXconfigChannel(muxsensor, HTPIR_config);
00112
00113 if (!HTSMUXreadPort(muxsensor, HTPIR_I2CReply, 1)) {
00114 return -1;
00115 }
00116
00117 return (HTPIR_I2CReply[0] >= 128) ? (int)HTPIR_I2CReply[0] - 256 : (int)HTPIR_I2CReply[0];
00118 }
00119 #endif // __HTSMUX_SUPPORT__
00120
00121
00122
00123
00124
00125
00126