ESP8266 Automotive Head gasket leak detector

126 views
Skip to first unread message

Zim

unread,
Mar 29, 2020, 3:30:36 PM3/29/20
to Annex WiFi RDS
Years ago, we would sniff the radiator overflow bottle with a "four gas exhaust analyzer". If we detected HC (gasoline) in the bottle, it was a sure sign of combustion gases getting into the cooling system.
This would often cause poor performance, engine overheat, poor heater output. This was a valuable diagnostic technique to find leaking head gaskets.
Gas analyzers are very expensive, so here is my "poor man" approach. Video at the bottom...

- when turned on, unit will blink "blue" quietly for 30 seconds to allow sensor to stabilize
- unit will then wake up and blink green when ready to sample gases (circulation fan turns on)
- audible beeps and LED flashes will indicate detected HC gases.

20200329_130453.jpg




20200329_130524.jpg

                                                                                                                                                                              micro muffin fan






gastester.jpg









CODE: xxxx.bas

' Zim's Annex HC monitor V2  
CLS
GAS = ADC
D1=5:D2=4:D5=14
SPEED = 0
MAX = 0
PIN.MODE D1, OUTPUT    'is ground to buzzer and green LED
PIN.MODE D2, OUTPUT   'is ground to blue warming up LED
PIN.MODE D5, OUTPUT    'is an output to fan
PIN(D1) = 0
PIN.TONE D2, 1          'blinks blue LED
PIN(D1) = 1           'buzzer and green LED off
PIN(D5) = 0           'fan is off
PAUSE 30000        'wait for sensor preheat 
PIN(D5) = 1     'purge sensor with fan
PAUSE 5000
PIN.TONE D2, 0        'blue LED off
PIN(D2) = 1           'blue LED off
AUTOREFRESH 1000
TIMER0 1000, PROCESS
WAIT

PROCESS:
GAS = ADC
PAUSE 10
'wlog "gas", gas
SPEED = (GAS - 30)/450 * (30 - 1) + 1  
'wlog speed
IF GAS < 30 THEN LET SPEED = 1
PIN.TONE D1, SPEED 'flashes buzzer and green LED
RETURN






gas.mp4

Electroguard

unread,
Mar 29, 2020, 3:47:58 PM3/29/20
to Annex WiFi RDS
Very nice project, Zim.
Does that gas sensor only detect petrol, or could it also detect diesel ?

Zim

unread,
Mar 29, 2020, 4:07:31 PM3/29/20
to Annex WiFi RDS
I will try it on diesel later today..
Thanks

Zim

unread,
Mar 29, 2020, 6:50:05 PM3/29/20
to Annex WiFi RDS
Electroguard
No responce from diesel. I guess its not volatile enough...
Zim

Electroguard

unread,
Mar 29, 2020, 7:07:24 PM3/29/20
to Annex WiFi RDS
Thanks for trying - and is still a very practical gas sniffer project for whatever gas sensor is used.

cicciocb

unread,
Mar 30, 2020, 3:53:36 AM3/30/20
to Annex WiFi RDS
Interesting idea. What is the sensor used in the project ?

Zim

unread,
Mar 30, 2020, 11:35:14 AM3/30/20
to Annex WiFi RDS
Hi cicciocb
sensor is MQ-2

Zim

cicciocb

unread,
Apr 5, 2020, 1:26:58 PM4/5/20
to Annex WiFi RDS
Thanks Zim
Reply all
Reply to author
Forward
0 new messages