The LCD was probably just a little out of place, and lost connection, but I think I pretty much killed the ‘motherboard’ while I soldered out these parts.
#4 Was mounted close to #3, may be a temperature sensor ?
There was also a buzzer on it. (It’s an alarm clock too)
Nothing else had any labelling on them. Has anyone here ever taken apart one of these and used the sensors with Arduino ?
ANSWERS SO FAR:
Identified. Ceramic capacitor, code 104. For anyone else new to electronics and wondering what a capacitor could do in an Arduino project, check this thread http://arduino.cc/forum/index.php/topic,5407.0.html.
Identified. Oscillator, most likely 32.768kHz. I have one that are almost identical, but marked higher frequency.
Tested. I’m pretty sure it’s a humidity sensor. I already have a dew point sensor, going to see if they can’t be combined to do some weather prediction.
Probably temperature sensor, will test later today. I already have one, so it’ll be interesting to see how they compare.
#2 Oscillator. Likely at 32.768 kHz for a real time clock
#3 Interesting. If it were flexible, I would claim a piezo flex sensor. If it was exposed to the elements, it might be a rain sensor. Somehow I do not think it was a humidity sensor, but I could be wrong.
#4 Could be anything including a simple capacitor to a temp sensor to a time warp tachyon inversion coil. Does it have any markings? Does it conduct current in either or both directions? If you hit it with a hammer do you go back in time?
fll-freak: #4 Could be anything including a simple capacitor to a temp sensor to a time warp tachyon inversion coil. Does it have any markings? Does it conduct current in either or both directions? If you hit it with a hammer do you go back in time?
I hit it with a hammer and suddenly everything is black and white and everybody are talking about a guy named Adolf… i don’t get it, the tachyon inversion coil had a negative charge field and i had redirected everything from decks 7, 10 and 8.
When they invent electricity here, i will report what happens to that flex sensor when current is passed trough it.
The white one, #3 gives these results: with one second intervals
Testing sensor for like 10 minutes.
Hooked it up the same way you would a photosensor.
5V->sensor->analog->10k->GND
0 // starting here
27
68
51
25
51
27
118
141
...
164 // it stabilizes at around 140-180, weather here right now is temperatures around 0 to -10 celcuis winter, dry, clear air. (norway)
159
198
...
374 // here i do the kind of warm, wet breath on the sensor you would use to clean your glasses
406 // jumps right up to 300-400 then declines pretty quick
361 //
329 // see?
305
269
290
249
236
230
243 // i keep blowing at it with the dry kind of breath you would use to blow dust away
226 // that keeps it from declining further
201 // that keeps it around the 200s
196
211
192
185 // letting it decline, it stabilizes at the initial level
...
219 // here, i am waving my hands slowly to move as much air around as possible. (trying to change air pressure)
249 // that keeps it in the 200s too, but somewhat higher..
270
307
265
237
262
...
I remapped the sensor values from 0-1023 to 0-99 to get a humidity percentage, seems to flat out at around 5% then, which would be very low… when this box was a “Weather Station” it would give the humidity in that room to around 25%. (just remembered that it actually displayed the humidity %, but it also displayed the current/upcoming weather in “weather tv icon” style, with LCD pictures of clouds, rain and suns)
KirkHamster:
I remapped the sensor values from 0-1023 to 0-99 to get a humidity percentage, seems to flat out at around 5% then…
Relative humidity is a function of temp and pressure. You need to correct the reading for the current temp to determine the RH. You can ignore pressure, for the most part.
WethaGuy:
Relative humidity is a function of temp and pressure. You need to correct the reading for the current temp to determine the RH. You can ignore pressure, for the most part.
Thats what I would have thought. I need to research that more. Right now I think I have to rewire my project, something must have gone wrong when moving it from an Uno to a Mega Got some flux hehe. Also have been working on getting a rover up and running.
I also have some more stuff lying around just waiting to be scavenged I’ll post pack when I fix the sensor parts.