|
1951
|
Using Arduino / Project Guidance / Re: Thermal Imaging
|
on: March 30, 2012, 02:53:26 am
|
A thermophile is an organism that lives in hot conditions, like the hot springs at Yosemite. A thermopile might be found in an IR thermometer. http://www.mouser.com/Search/Refine.aspx?Keyword=thermopileLooks like $4.55 for 1 with a 10x10 array 'only' $358! Or maybe a 100x1 'wand' to make a low-res raster-sweep with? One app I see is to know if some part or area of your circuit or room or factory is getting warm. A PIR has a special dual pyroelectric sensor with lens and filter to work as a motion detector for mainly humans. It works by detecting the difference in sensed temperature between 2 sensors that look at different areas. I can't but wonder however if the lens and filter were removed, or just the lens removed and then one side masked if it couldn't be used as a straight IR sensor? Or perhaps the thing would either be too sensitive or pushed to some limit? For just the sensor at Mouser, I see prices on some less than $2.
|
|
|
|
|
1952
|
Using Arduino / Project Guidance / Re: Removing the pot setting LCD contrast?
|
on: March 30, 2012, 01:27:49 am
|
|
When changing brightness MUCH, it also helps to adjust contrast -- for pretty much the same reason. That being that the pupil of the human eye changes with light level. You don't HAVE to but it can make a difference for the better. Of course wtf do I know?
|
|
|
|
|
1953
|
Using Arduino / Programming Questions / Re: count every bit
|
on: March 29, 2012, 06:33:15 pm
|
|
untested:
byte B = 'Z'; byte count = 0; while ( B ) { count += B & 1; B = B >> 1; // right shift of unsigned integers does not do sign extension, as a char value would }
I leave the rest up to the bunny..........
|
|
|
|
|
1957
|
Using Arduino / Project Guidance / Re: Removing the pot setting LCD contrast?
|
on: March 29, 2012, 12:00:54 pm
|
To that end it is good to be able to adjust the brightness of the display for viewer comfort. According to the original post and according to the topic heading this thread is about the contrast and not about the brightness.
You have an unattributed quote in your previous post which has nothing to do with this thread.Don EDIT: I found it - your quote is from one of your unexplained and irrelevant links in Reply # 12. In Your Rather Pedantic Opinion.
|
|
|
|
|
1958
|
Using Arduino / Project Guidance / Re: Looking for custom enclosure for my project
|
on: March 29, 2012, 11:31:15 am
|
|
I've potted with hot glue. Yes, you need to mask off everything you don't want the potting mix to get in. Tape works well enough, give it a try. You'd need some kind of containment to flow the glue into but cardboard or card stock works just fine, you can print on that and cut it and glue however you wish or find something already made and punch your holes in that.
If you can put your circuit so that anything that makes heat (like a regulator or chip-top) is pressed against a piece of flat metal then set that on the bottom so that the glue wont get under it, you will have a heat sink that can be attached to a bigger heat sink if desired. You don't have to fill to cover everything either. Do you want the led to be replaceable or not? Of course if it's potted to the base then it's not going to fall out either, it's your call.
The first potted circuits I saw were black blocks made of, IIRC, acrylic (same stuff those paperweights with an object inside are/were made of, Edmund Scientific sold a lot of it) with carbon black mixed in meant to keep what was inside a bit of a secret.
|
|
|
|
|
1959
|
Using Arduino / Project Guidance / Re: Solar Tracker Project
|
on: March 29, 2012, 11:12:46 am
|
|
If I put a hole in a piece of opaque material then sunlight shining through will make a dot on a surface below. If I put a ring of sensors around that then when the sun moves the dot would strike a sensor. My accuracy goes up with the distance between the material with the hole and the surface below and the number of sensors in the ring.
For me, something like that might be used to tilt reflective panels to put more light on the collector. After all, they use solar panels in space where the light is far brighter than down on the ground -- especially at the latitudes most of us live.
|
|
|
|
|
1960
|
Using Arduino / Project Guidance / Re: Looking for custom enclosure for my project
|
on: March 28, 2012, 09:46:46 pm
|
|
+1 on the 3D printing, if you don't require a metal enclosure. You might have an excuse to get your own Cupcake!
OTOH there are places you can send a design file and they will print the items... but what cost?
If the device won't make much heat or could be built on a heat sink then you could maybe pot it into a plastic brick.
If you want to cut sheet metal clean, use punch and die. For just making small holes in thin metal, a custom paper punch will do though you'd want some kind of positioning jig so the hole is in the right place. That would be for modifying a box like an Altoids tin and be prepared to sharpen the punch every so often. Another alternative would be to use hollow punches (Harbor Freight has them) or set up punch and die in a press. Drills and saws for sheet metal work are for amateurs. They're slow and the cuts need too much dressing up.
|
|
|
|
|
1961
|
Using Arduino / Project Guidance / Re: Removing the pot setting LCD contrast?
|
on: March 28, 2012, 09:15:21 pm
|
Yes, electrically it "works". However the human eye has this tendency to open up more in darker settings than in brighter ones. A light-emitting display that is comfortable to the eyes in a bright setting will not be as comfortable in a darker setting to normal human beings. To that end it is good to be able to adjust the brightness of the display for viewer comfort. It is also good from a battery-saving viewpoint. Background & Objective: This project began as an effort to create a smart backlighting system for television remote controls. A low-power capacitive proximity sensor detects active handling which in turn controls the backlight. To save battery life, the backlight should not be turned on in bright conditions. But adding a separate light sensor would require a new mechanical design for the remote, adding considerable cost. Our solution was to use the backlight LED itself as the light sensor. We developed a simple microprocessor interface technique that uses one additional digital I/O pin, but no other additional components compared to those need to simply light the LED. Since the circuit draws only microwatts of power, it has a minimal impact on battery life. Hmmmm, and for their purposes it's better to shut the backlight off in bright conditions.
|
|
|
|
|