Thank youNo, but let me see what I can come up with. Check back later...
Thank youNo, but let me see what I can come up with. Check back later...

The problem with the use of a comparator is the changing temperature of reference. I am in a room and the reference temperature is 72.0 degrees F. I walk from that room to another room where the temperature is now 70.0 degrees F and my output from sensor drops that two degrees and I get an alarm. Now my new temperature reference is 70.0 degrees F. Then I walk into yet another room where the temperature is 68.0 degrees F. My understanding is each room becomes a new reference and as I transition from room to room I want to know if the temperature in the room I enter is 2.0 degrees or greater less than where I came from. Since my reference can change constantly I discounted using a comparator type circuit which could be a simple and quick solution. If I did use a comparator design scheme I would likely go with the LM339 family just to use a comparator type chip rather than use an operational amplifier as a comparator. That being my thinking on the subject anyway. I just can't warm up to making one sensor "slower" than another. Not saying it wouldn't work merely that I likely would take another path.Simple? How about two temperature sensors and a comparator. Have one sensor be slower than the other.
I played with something like this once using diodes (1n4148) as the sensors and a diff opamp circuit (lm324)
and moving a finger (heat source) near one of the diodes was enough to show a change...

#define timeBetweenTempReadings 5000
#define temperatureSensor 10
#define alarmPin 11
#define alarmCondition = rate;
// replace rate with empirically defined value
setup () {
// define input pin for temp sensor
pinMode(temperatureSensor, INPUT);
// initialize sensor
//initialize alarm (output) pin
pinMode(alarmPin,OUTPUT);
}
loop () {
int lastTemp=0;
currentTemp = readTemp();
tempChangeRate = (currentTemp-lastTemp) / timeBetweenTempReadings;
if( tempChangeRate > alarmCondition) {
digitalWrite(alarmPin, HIGH);
}
else {
digitalWrite(alarmPin, LOW);
}
}
int readTemp() {
// read temperature sensor
}
I am a keen ghost hunter and some of the items I want to test aren't really sold, or if they are, for a lot of money, so I am trying to come up with alternatives that I can make.Hola Andy
Do you mind telling where do you actually intend to apply the circuit? Household environment? Portable seems to be. Curious.
Sadly that is way beyond me so I was hoping to do something that I can make as a hobbyistThe code as written in post #27 automatically resets itself after a
alarm condition has been detected and sounded.
Regards, Dana.
As I think this through as well, it would be useful to have some way to reset this device so that if I were to walk from one room to another, that I could then press a button and the new temperature is recognised and any drop in temperature will be from this new ambient room temp.
I believe that is the whole idea. Opening a door or window to let a cold draft through ought to be detected.Just in case, also keep in mind that a high sensitivity temperature sensor (I surmise you would like it to be so) could be easily fooled by subtle air currents unnoticed by the user.
Thank youI believe that is the whole idea. Opening a door or window to let a cold draft through ought to be detected.
I think we can come up with a simple analog solution from one thermistor.
Two voltages with different time constants are fed into opposing inputs of an analog comparator. The output turns on an LED. The LED goes off automatically when the temperature stabilizes. No need to reset.
I will breadboard this when I have a spare moment.
Well as a former bench engineer who used to make mass spectrometers, albeit almost 30 years ago, you could always ask me if I can solder and read schematics.The problem here, as I see it, would be the thread starter's skill level with electrical / electronic circuits. The actual goal can be achieved any number of ways and is not a difficult goal. Most circuit solutions are relatively easy to build but the builder would need the basic skills, including ability to read a schematic and hand tools to make it happen. Now if the thread starter has a friend with the skill level(s) then we would do well to have his friend in this thread as information or suggestions passed along will likely lose something.
Ron
Sorry, based on your responses I wrongly assumed you were not familiar with circuits and their applications. So as a bench engineer what was your original thinking on ways to approach this? The more anyone here knows as to your background and abilities the easier it becomes to provide ideas and help. Your response in post #6 would lead one to believe you were new to electronics. Several of your post led me to wrongly believe you did not know how to read electrical schematics or have an electrical / electronic skill sets.Well as a former bench engineer who used to make mass spectrometers, albeit almost 30 years ago, you could always ask me if I can solder and read schematics.
Again my apologies. Yes, there are kits but any I am familiar with would require some modification or fine tuning to get where you want to be from a kit. Pretty much a matter of what you feel comfortable with.It will be all wired.
And I’m nothing more than a hobbyist at this. I will be seeking someone to help make me something when I know the best way to do this
It would be nice if there were kits that did what I was looking for, but I think that’s a remote chance![]()
I can read circuit diagrams but I have forgotten so much of the designing aspects and what I need to do what now. Wish I had kept at it, but my career took me down a totally different path.Sorry, based on your responses I wrongly assumed you were not familiar with circuits and their applications. So as a bench engineer what was your original thinking on ways to approach this? The more anyone here knows as to your background and abilities the easier it becomes to provide ideas and help. Your response in post #6 would lead one to believe you were new to electronics. Several of your post led me to wrongly believe you did not know how to read electrical schematics or have an electrical / electronic skill sets.
Again my apologies. Yes, there are kits but any I am familiar with would require some modification or fine tuning to get where you want to be from a kit. Pretty much a matter of what you feel comfortable with.
Ron
| Thread starter | Similar threads | Forum | Replies | Date |
|---|---|---|---|---|
| P | drone threat alert! | Off-Topic | 6 | |
|
|
PDF Scam Alert IOS | Off-Topic | 2 | |
| R | Low Battery Alert! Design Concept - Coin Cell | Power Electronics | 4 | |
|
|
8051 Temperature Monitoring: Blank Temperature Display on LCD | Homework Help | 1 | |
| K | Dual 4017's alert !!!! | General Electronics Chat | 42 |