Products: Wireless Tire Pressure Sensors Supported by GPS Tracking Device and TPMS
These wireless TPMS sensors are supported in our gps tracking device AT09, AT09-3G, TPMS products: TP08,
TP09.
Model No.: TS06, TS06-LB, TS08, TS09, TS10
Wireless tire Pressure Sensors Supported by GPS Tracking Device and TPMS
Technical Properties:
TS06: External tire Pressure Sensor:
pressure range: 1-13Bar(100kPa-1300kPa),
1-9Bar(100kPa-900kPa)
Temperature Setting Range: -20°C--93°C
Operation/Storage Temperature: -20°C--93°C
Power Supply: DC 3.3V
Frequency: 433.92MHz
Battery: Lithium-Manganese Button Cell Battery
working temperature: -40°C--125°C
Standby Battery life: ≥4 years
Application Scope: TS06: truck, bus, etc;
TS06-LB: OTR tires and mining vehicles of large bores
Size: mm (ø x h)
Weight: TS06: 28g; TS06-LB: 42g
TPMS chip: SP40
Accuracy: Pressure:
±1.5psi; Temperature: ±3°C
Transmission Power: ≤10dBm
TS08: Internal Tire Pressure Sensor Specs:
pressure range: 1-13Bar(100kPa-1300kPa),
1-9Bar(100kPa-900kPa)
Temperature Setting Range: -20°C--93°C
Operation/Storage Temperature: -20°C--93°C
Power Supply: DC 3.3V
Frequency: 433.92MHz
Battery: Lithium-Manganese Button Cell Battery
working temperature: -40°C--125°C
Standby Battery life: ≥4 years
Size: 6×3×2cm
Weight: 50g
TPMS chip: SP40
Accuracy: Pressure:
±1.5psi; Temperature: ±3°C
Transmission Power: ≤10dBm
Air Flow Through tire Pressure Sensor Specs:
pressure range: 1-13Bar(100kPa-1300kPa),
1-9Bar(100kPa-900kPa)
Temperature Setting Range: -20°C--93°C
Operation/Storage Temperature: -20°C--93°C
Power Supply: DC 3.3V
Frequency: 433.92MHz
Battery: Lithium-Manganese Button Cell Battery
working temperature: -40°C--125°C
Standby Battery life: ≥4 years
Applicable Scope: TS09: truck, bus, etc;
TS09-LB: OTR tires and mining vehicles of large bores
Size: TS09: 6×2.7×2cm; TS09-LB: 9*3.5*5.3cm
Weight: TS09: 30g; TS09-LB: 80g
TPMS chip: SP40
Accuracy: Pressure:
±1.5psi; Temperature: ±3°C
Transmission Power: ≤10dBm
TS10: Banded tire Pressure Sensor Specs:
pressure range: 1-13Bar(100kPa-1300kPa),
1-9Bar(100kPa-900kPa)
Temperature Setting Range: -20°C--93°C
Operation/Storage Temperature: -20°C--93°C
Power Supply: DC 3.3V
Frequency: 433.92MHz
Battery: Lithium-Manganese Button Cell Battery
working temperature: -40°C--125°C
Standby Battery life: ≥4 years
Size: 6×3.1×2cm
Weight: 150g(including bands)
TPMS chip: SP40
Accuracy: Pressure:
±1.5psi; Temperature: ±3°C
Transmission Power: ≤10dBm
Tire Pressure Sensors Installation
The tire pressure monitoring system (TPMS) has combined with two parts: sensor emitter and the receiver. Communication between the sensor and receiver is by wireless technology (433.92MHz). The receiver in the system can be our AT09 device or TPxx device, they can be work together or separately as an individual system with the sensor.
Note: the front and the rear truck tire maybe has different type of RIM. Please check the target tire you are going to install the sensor. And chose the suitable type.
Sensors Installation: TS07/09
Step 1: find the valve.
Step 2: remove the valve cap, and install the hex screw of the sensor on the valve.
Step 3: screw the sensor on the valve. And use the hex wrench to lock the sensor by the hex screw.
(Below image suitable for TS09)
Sensors Installation: TP08:
Step 1: dismounting the tire from the RIM.
Step 2: remove the original tire valve stem.
Step 3: Insert the new sensor through the valve stem hole making sure the flat side of the sensor is toward the rim, and then install the screw cap at outside.
Sensors Installation: TS10:
Step 1: dismounting the tire from the RIM, and preparing the sensor. Let metal belt come across the underneath of the sensor.
Step 2: let the metal belt across
TPMS sensors installed in vehicles
TPMS DATA PROTOCOL
Used in RS232 | RS485| CAN| TTL | Bluetooth.
(14 bytes in length. Hex code):
00 00 AA ID ID ID ID pressureValue temperatureValue index and cell voltage CRC BB
00 00: ATA5428 bits check. 2 byte.
AA: start Tag. 1byte.
ID ID ID ID: sensor ID number. 4bytes eg.: AA BB CC DD = 0xAABBCCDD
pressureValue: 2bytes AABB = 0xAABB
temperatureValue:1byte
index and cellVoltage: 2 bytes.
index(0-15 circulate) 4bits
cell voltag 12bits.
eg.: AABB: index = 0x0A cell voltag= 0x0ABB
CRC: 1byte,
BB: End Tag 1bytes
from ID to cell voltage , total 9 bytes
unsigned char crc_checksum(const char *s ,unsigned char len)
{
unsigned char result = 0;
unsigned char i = 0;
for (i = 0; i < len; i++)
{ result ^=*s++; }
return result;
}
Code example in dart:
static STPMSSensor parseDataEx(List
listData)
{
STPMSSensor newData = STPMSSensor();
int nPressure=0;
newData.isValid = true;
newData.strID = listData[0].toRadixString(16) + listData[1].toRadixString(16) + listData[2].toRadixString(16) +
listData[3].toRadixString(16);
nPressure = listData[4]<< 8 | listData[5];
if((nPressure>>4) >= 100)
{
newData.nPressure = (nPressure>>4) - 100; // unit: kPa
}
else{
newData.nPressure = 0;
}
newData.nSerialID = (listData[7] & 0XF0) >> 4 ;
newData.nBattery = ((listData[7] & 0x0F) <<8 | listData[8]) / 1000 ;
newData.nCRC=listData[9];
return newData;
}