Bosch automotive sensor !

Hello guys!

Iam looking for a sensor datasheet to calibrate the temperature readings.
This is a Bosch 4bar Tmap sensor part number:0281006059
This is an automotive sensor and i would like to measure pressure and temperature with this sensor using arduino with an lcd.
I have got the pressure mathematical equation,and its working(doesnt tested with realtime pressure yet)
And now i would like to make it work with the temperature side too
Its a 4 wire sensor if i measure ohms at number 1 and 2 i got ohm reading if i touch the sensor ohm readings are change.
1:gnd
2:temp out
3:+5V
4:pressure out
Any1 can help me with this,or how can i start to work with this sensor?

Are you afraid to hook up the temperature out wire instead of the pressure out wire? To me that would be an easy test.

Paul

Hello!

I dont understad this can you explain?

Ricsi168:
Hello!

I dont understad this can you explain?

You said the pressure is working properly, so why not connect the temperature lead up as if it was the pressure lead.

Paul

Because the pressure out pin shows voltage and the temp out pin shows resistance

the temp out pin shows resistance

Then the temperature sensor may be a thermistor. Google "arduino thermistor".

Any1 can help me with this,or how can i start to work with this sensor?

Yes, if you post a link to the data sheet.

Yes thats what i need too i cant find a datasheet.....yes its a thermistor i think.
I did a voltage divider circuit,and put a code on it serial monitor shows temperature and volts BUT
the temp readings are way off and when the you touch the sensor temperature goes down not up
i dont know how can i caluculate or calibrate the sensor readings

i would buy i i can....i bought this combined sensor i would like to make it work!

How is the sensor wired? A schematic with part values and power supplies would help . What is the resistance at room temperature? Can you put it in ice water and measure the resistance. If we have some numbers to work with, maybe we can help.

Sensor wiring is
1:gnd
2:temp out
3:+5V
4:pressure out
REsistance ~ measured with multimeter with sensor in water and heating with candle:
23-2740
24-2630
25-2530
26-2450
27-2360
28-2280
29-2210
30-2140
31-2060
32-1990
33-1940
34-1880
35-1810
36-1770
37-1710
38-1670
39-1610
40-1580
41-1530
42-1490
43-1450
44-1400
45-1370
46-1330
47-1300
48-1260
49-1220
50-1190
51-1170
52-1140
53-1120
54-1090
55-1060
56-1040
57-1020
58-1000
59-980
60-960
61-940
62-910
63-900
64-880
65-860
66-840
67-820
68-810
69-800
70-790ohm

This reading where did with multimeter 10-20 ohm maybe off but i measured 2 times
started to heat the sensor from 23°C to 70°C and measured the resistance,than measured from 70 to 23 again i got the same readings few of them are off like 10-20ohm maybe so this readings are stabile lets say

Yes i know i did a mistake but now i got this sensor i want to work with i know its goin to hard but maybe there is a solution
can you help me with this spreadsheet?

i found this website when i put my numbers its really close that i measured but i dont understand the mathematical side maybe this is the solution can you check?

http://www.giangrandi.ch/electronics/ntc/ntc.shtml#ntc_param

A cubic equation fits those data very nicely and makes that a useful temperature sensor. Quartic is even better.

temp2.PNG

temp2.PNG

If its possible can you please tell me how its work or how can i calculate with that?

Yes i see but what is y and the other number with my sensor readings.

float temperature = 134.95 - 0.11507*R + 4.487E-5*R*R - 6.528E-9*R*R*R; //float R = resistance in Ohms

Incidentally, the Steinhart-Hart approximation doesn't work as well, but does contain one fewer parameter.

Computers were invented to solve math problems.

They do much more nowadays, but if you want to program a computer, expect to use math.

Sorry Delta iam not as good as you on math,programming im just started this thing thats why i ask questions on this forums.
Yes i see Y=temperature x=resistance
But what is M0? 134,95? i would like to understand that graph
m1,m2,m3,R if you can help if you understanding all of these things why dont you help me?
Thanks Ricsi!