Slashdot Mirror


Homebrew Digital Picture Frame w/Remote

feagle814 writes "I've always wanted to create one of those digital picture frames out of an old laptop, and on the heels of a recent slashdot story, I've written up my Digital Picture Frame project. What's unique about this particular incarnation of the digital picture frame is that mine includes a homebrew remote control recognizer made out of a programmable IC, the Microchip PIC16F628. The article discusses everything from design considerations to custom slideshow software, all the way to final presentation, with lots of photos along the way."

110 comments

  1. Nothing New by Performaman · · Score: 1, Interesting

    I saw one of these made with an old Powerbook Duo about 3 or 4 years ago.

    --

    I have gas, but my car uses petrol.
    1. Re:Nothing New by fashice · · Score: 1

      Made this a long time ago .. Made a webby also to select album, restart slideshow (stop, clear, start) Even a page with thumbs to select to display. (pressing the thumb didn't change my browser screen, just the LCD)

  2. Really narrow viewing angle? by Zorilla · · Score: 3, Insightful

    I've heard of projects like these before, but isn't there the huge problem of only being able to view the picture from directly ahead, seeing as it's usually a passive matrix screen? It seems like it defeats the purpose of having one as a background decoration.

    --

    It would be cool if it didn't suck.
    1. Re:Really narrow viewing angle? by murgee · · Score: 2, Informative

      It's not too hard to find an active-matrix screen on a P200-vintage laptop, actually - by the time they came out it seems a lot of people were realizing that the old passive matrix screens just weren't worth the trouble. The only laptops I've seen with the old passive-matrix screens on 'em in that vintage were the real low-end consumer units (Compaqs, actually) - everything else I've worked on that's that old has had an active-matrix screen, but I pretty much only see Dells. I'd worry more about getting a laptop with a 256-color only video card in it.

      --
      mrg
    2. Re:Really narrow viewing angle? by spagetti_code · · Score: 1
      I have a wallflower http://wallflower-systems.com/. Its well crafted (very nice wooden frame), silent and with an active matrix display - the images are great. Viewing angle is wide.

      And its linux :-).

      On a P166!

    3. Re:Really narrow viewing angle? by lucason · · Score: 2, Insightful

      So let me get this straight!

      You bought a $700 system which runs linux on a P166. You got ripped off dude.

      I bought a Toshiba-Libretto for $50. Silent as a whisper.

      I'll have to shell out some dough for a wooden frame, but I'm pretty sure it will be under $600. LOL

    4. Re:Really narrow viewing angle? by bwy · · Score: 1

      huge problem of only being able to view the picture from directly ahead

      This is why I hate the laptop based frame projects. They will always have a substandard display- #1, laptops are designed to be viewed from a very specfic angle, and #2, folks will typically used older, even more crappy laptops for such a project.

      I made a micro ITX based frame using a very nice samsung open frame LCD kit. Much nicer than a laptop based frame.

  3. Any other good projects? by confusion · · Score: 1
    Anyone know of other good projects to do with old laptops? I've got about 4 in various states of disrepair, mostly not working, but the screens on all of them are good.

    I may try to do something like this, though.

    Jerry
    http://www.syslog.org/

    1. Re:Any other good projects? by Anonymous Coward · · Score: 0

      Put them on eBay. You can get good prices even if they aren't working!

    2. Re:Any other good projects? by don_carnage · · Score: 1

      Perhaps you can try your hand at a Virtual Window.

  4. brilliant! by Anonymous Coward · · Score: 0

    I have just such a useless machine lying around -- I gave it to my father precisely because it's so old; I figured he needed something slow to learn on. But he hasn't taken it out of the box, and this may be a project that a) gets him some actual use out of the machine and b) keeps the machine out of the trash for that much longer. god knows the guy won't recycle.

  5. Analog by Icarus1919 · · Score: 5, Funny

    Digital is cool and all, but when I was in boy scouts we built an analog picture frame. Man, you should see the technical specs on it, amazing.

    1. Re:Analog by adeydas · · Score: 1

      some more details on this, please?! thanks!

    2. Re:Analog by ikea5 · · Score: 4, Funny
      some more details on this, please?! thanks!

      The boy scout or the frame?

    3. Re:Analog by Anonymous Coward · · Score: 0

      Look up the definition "frame". Contrast this with "picture" or "contents".

    4. Re:Analog by adeydas · · Score: 1

      the analog frame...

    5. Re:Analog by mdamaged · · Score: 5, Informative
      --
      Someone asked me the difference between ignorance and apathy, I told them I don't know and I don't care.
  6. It's a trick! by anamexis · · Score: 5, Funny

    Watch out!
    " I'd seen do-it-yourself picture frames on Slashdot before,"

    He's trying to trick us into Slashdotting Slashdot through a link back!

    1. Re:It's a trick! by Anonymous Coward · · Score: 0

      Lets do it!

    2. Re:It's a trick! by spiko-carpediem · · Score: 1

      haha, feel the power of natetrue's webpage

  7. IR control by RedWizzard · · Score: 3, Interesting
    What's unique about this particular incarnation of the digital picture frame is that mine includes a homebrew remote control recognizer made out of a programmable IC, the Microchip PIC16F628.
    Perhaps it's unique because it's unnecessarily complex? I'm using LIRC under Linux on my home theatre PC for remote control with a homebrew receiver that connects to a serial port. The reciever is very simple (see circuit diagram on this page). I guess if you're determined to use Windows you might need to build this sort of PIC-based solution, but surely the LIRC based solution is cheaper and easier? No wonder his "Linux loving friends" gave him a lot of flak for going with Win 98.
    1. Re:IR control by Rolo+Tomasi · · Score: 4, Informative
      Heard of WinLIRC?

      So yes, the IR receiver wasn't really necessary (maybe he did it for the learning experience though, or maybe he can use the code for something else).

      But Win98, WTF? This is probably the first picture frame that has to be rebooted daily.

      --
      Did you know you can fertilize your lawn with used motor oil?
    2. Re:IR control by Anonymous Coward · · Score: 0

      No. You appear to be ignorant of the advantages of a microcontroller based solution (and a linux zealot at that). The PIC solution gives real RS232 serial data - this may be handled by an interrupt with little processing.

      The circuits on the listed page use the RTC and other flow control lines. These must be polled in software, and is fairly CPU intensive in comparision. Basically the PIC solution gives a dedicated processor to the tasks. It allows much simpler PC based software as well.

    3. Re:IR control by RedWizzard · · Score: 1

      The circuits on the listed page use the RTC and other flow control lines. These must be polled in software, and is fairly CPU intensive in comparision. Basically the PIC solution gives a dedicated processor to the tasks. It allows much simpler PC based software as well. You're wrong about the polling, read the page I linked to. And the LIRC software has already been written, so that's definitely simpler to implement than the PIC-based solution. The complexity doesn't really matter if it's already been dealt with.

    4. Re:IR control by feagle814 · · Score: 2, Interesting

      Well the reason I went with my PIC-based IR receiver was that I had already built it several months ago, when I did not find any of the remote control solutions suitable for my purposes. When I created it back then, I re-used a custom scripting engine that I had made. All I did this time around was solder together a second IR/PIC combo unit (which took me a half hour) and I had a working remote receiver. Granted, I had to tweak the code to move from a least-squares recognition algorithm to a pulse-tolerance algorithm to improve reception, but that was really more fun than anything.

      I'm actually really sad that I couldn't use Linux for it, because I had the time constraint of having to give it to my sister for Christmas, and that was not enough time for me to learn everything I'd need to do the equivalent in Linux.

    5. Re:IR control by RedWizzard · · Score: 1
      Well the reason I went with my PIC-based IR receiver was that I had already built it several months ago, when I did not find any of the remote control solutions suitable for my purposes. When I created it back then, I re-used a custom scripting engine that I had made. All I did this time around was solder together a second IR/PIC combo unit (which took me a half hour) and I had a working remote receiver. Granted, I had to tweak the code to move from a least-squares recognition algorithm to a pulse-tolerance algorithm to improve reception, but that was really more fun than anything.
      That's reasonable, if you can reuse past work with minimal effort that's usually the way to go.
      I'm actually really sad that I couldn't use Linux for it, because I had the time constraint of having to give it to my sister for Christmas, and that was not enough time for me to learn everything I'd need to do the equivalent in Linux.
      Fair enough. These sorts of things are still fiddly with Linux, though I found the LIRC stuff pretty straight forward (I use it both to receive and to send IR remote codes to my satelite TV box).
  8. Why not? by CodeYoddler · · Score: 5, Interesting

    Why not just take a portable dvd player (7" for $129) and put a DVD into it filled with all your favorite pictures, then it'll display them. Then you just mount the thing in a frame.

    1. Re:Why not? by goofyheadedpunk · · Score: 1, Flamebait

      Perhaps because ready made solutions are not fun?

      There are some of us for who it is the struggle of solving a problem, rather than the solution, that is the enjoyable part.

      --

      What if the entire Universe were a chrooted environment with everything symlinked from the host?
    2. Re:Why not? by Bill_Royle · · Score: 2, Interesting

      Yet if it's ready-made and mass-produced, does a problem really exist, and is there really a struggle involved?

    3. Re:Why not? by linguae · · Score: 1

      He didn't do that because he wanted to find a new use for his old laptop he received. He wanted to do it because he was impressed with some of the other laptop-monitor picture frames that he've seen before, and wanted to do the same.

      A portable DVD player with pictures on a DVD might had been an easier approach, but the poster showed that with an old laptop, a remote control, and some software, one can achieve the same effect.

      Besides, these projects are cool. Taking a device and using it differently than what is originally intended is very interesting.

    4. Re:Why not? by Rakishi · · Score: 1

      Yes it does, you can't really use much from the mass-produced version since it's a different design. The two devices are only superficially the same, since your goal isn't to copy the mass produced version part-for-part.

    5. Re:Why not? by Snard · · Score: 3, Insightful
      Why not just take a portable dvd player (7" for $129) and put a DVD into it filled with all your favorite pictures, then it'll display them. Then you just mount the thing in a frame.

      Have you tried this? (I did.) The picture quality on the low-end 7" DVD players is crap. Even an 800x600 LCD screen would look wonderful compared to one of the cheap DVD player screens.

      IMHO.
      --
      - Mike
  9. From the article about batteries. by Saven+Marek · · Score: 4, Informative


    The final battery connection
    Of course, we all know that messing with Lithium-Ion batteries is just asking for a chemical acid explosion.


    This is actually urban myth. Only old first style lithium batteries from earlier in the 1980s would explode or be capable of igniting on touch with the atmosphere.

    Lithium Ion are exactly that, the Lithium are stored as IONS in the solution and are not reactive.

    1. Re:From the article about batteries. by YggdrasilOS · · Score: 5, Informative

      I think you have your terms confused:

      Isotopes are stable atom configurations which have an electically neutral charge, differing only in the number of neutrons.

      Ions, on the gripping hand, are chemically excited atoms which have gained or lost valence electrons (according to their electronegativity) and become reactive.

      This is, in fact, what makes Li+ ions useful for battery cells in the first place. Whether alkaline, NiCad , NiMH, or LiIon, chemical batteries all work on the principle that the sustained chemical reaction will produce a useful amount of electricity.

      When we "recharge" our batteries, we simply apply current to the battery in such a way as to reverse the chemical reaction.

      What they've done is introduced stabilizers to retard the rate of reaction, so that rather than exploding upon atmospheric exposure, the battery solution simply gets warm.

      --
      "We dwell within a silent country, beyond the reach of time and death" -Nothing Sophotech, The Golden Transcendence
    2. Re:From the article about batteries. by Anubis350 · · Score: 2

      on the gripping hand

      ahhh, another nivenite

      --
      "goodbye and hello, as always" ~Prince Corwin, from Zelazny's Amber series
    3. Re:From the article about batteries. by Anonymous Coward · · Score: 0

      The lithium ions are very reactive(hence them being part of a energy storing *BATTERY*). As the article states, messing with lithium batteries (especially without the protective circuitry) can result in fires at the least with a mild possibility of explosion.

      1) Overcharging results in outgassing. (See picture at end of http://www.batteryuniversity.com/print-parttwo-32. htm for a picture of a Li polymer battery, which is considered safer than a standard Li-ION). If the safety valve on a standard cell doesn't open(should be rare), you'll have a mini pipe-bomb on your hands.

      2) A mid-sized fully charged laptop battery pack usually stores >70Watt-hours of energy. If this is shorted without the battery protection, a battery can probably dump a good fraction of its total energy in a couple minutes. A few hundred watts will then cause the previously mentioned pipe-bomb effect as well as igniting anything combustible in the general vicinity.

      So - listen to the article and don't screw with these styles of battery without educating yourself first.

  10. who are you who is so wise in the ways of science? by Anonymous Coward · · Score: 1, Insightful

    nothing burnt out, no smells other than new circuit board smell. The thing didn't even have any dust in it for such an old thing.

    Did you think of maybe using a multimeter or some other basic testing equipment to see why it didn't work?

  11. The easy, or hard way? by zippity8 · · Score: 4, Informative

    The funny thing is that I've been meaning to do a project just like this.

    Except, unless you're looking for a reason to make your life more difficult, Windows IR software is abundant. Hardware is even cheaper, and not very complex. I remember using Girder (back then it was free, there might still be some sites around that offer the older version), and this captures IR codes from a COM port, and feeds specific keystrokes to a program of choice. MUCH easier than the route that the submitter mentioned.

    Look up the LIRC project (in the FAQ somewhere) for schematics on a IR receiver if you really want to put the work in, or you can even buy some pre-made receivers. I bought one for $5 including a remote a few years back.

    To get this running under Linux is easy enough, and well documented throughout the web. But to get it under windows can be just as easy.

    Basically, to get this going under Windows (as the submitter chose, for some reason), you need to just load Windows XP and use the preloaded My Pictures screensaver (or some other alternative, I'm sure that they are abundant). Take an extra 10 minutes to mount a frame on a LCD (removed from the cover), and then set the screensaver to kick in 1 minute after booting (no password, not that it really matters). And you're done, ready to enjoy the rest of your christmas break with family or friends.

    1. Re:The easy, or hard way? by thogard · · Score: 1

      Why use an IR remote? Get one of the powerpoint presentation devices that work like an 4 button keyboard and use it. It will also have a cool laser pointer too!

    2. Re:The easy, or hard way? by Anonymous Coward · · Score: 0

      Too bad the submitter's laptop only had 32mb of RAM... So XP wasn't an option.

  12. Perhaps these aren't a good idea by nsuccorso · · Score: 5, Interesting

    Folks, I realize that digital picture frames are "cool", but may I please present another perspective?

    Until we figure out a way of generating clean, renewable power, perhaps this isn't the time to be coming up with more and more ways of consuming power for trivial applications, such as digital picture frames and blowup lighted Christmas figures that run an electric blower motor all night(!) Just consider it, please.

    It's just as interesting to come up with ways of reducing household power consumption.

    1. Re:Perhaps these aren't a good idea by OverlordQ · · Score: 1

      And how much power did you waste by posting this comment to slashdot?

      --
      Your hair look like poop, Bob! - Wanker.
    2. Re:Perhaps these aren't a good idea by Anonymous Coward · · Score: 0

      Practically zero.

    3. Re:Perhaps these aren't a good idea by gl4ss · · Score: 1

      depends. maybe he removed the need to order the newspaper every day by this.

      or maybe he lives in a house that's heated by electricity anyways.

      --
      world was created 5 seconds before this post as it is.
    4. Re:Perhaps these aren't a good idea by Anonymous Coward · · Score: 0
      Just consider it, please.

      You're so cute. Saving power...hehe.

    5. Re:Perhaps these aren't a good idea by Anonymous Coward · · Score: 0
      This extra demand for more power may be exactly what's needed to inspire people from coming up with this new power source of which you speak.

      Before you blame the guys blowing their $$$ on a power bill for electic pictures - consider that their bill may fund the research needed to discover such power.

    6. Re:Perhaps these aren't a good idea by lucason · · Score: 1

      Maybee we should concentrate on producing MORE energy cleanly instead of trying to save on consumption. Cause saving on a consumption is fighting a lost battle.

      You can not stop the growing need for power in evolving nations. I just wish the oil would run out once and for all. Finally forcing mass production of solar cells, hydrogen power, and methanol fuel cells.

      It'll be a cold day in hell when I turn off my PC. As long as hell doesn't freeze over I'll be tapping it's heat for power.

      I've got a webserver a knoppmyth box and I'm definatly thinking of doing a wall mounted version of a digital picture frame.

    7. Re:Perhaps these aren't a good idea by Anonymous Coward · · Score: 0

      Um yes but the resources consumed to view thousands of pictures would be much less than if you printed them, using chemicals harmful to the environment and resources needed to make photo paper.

    8. Re:Perhaps these aren't a good idea by MobyDisk · · Score: 2, Interesting

      This is why digital ink systems are going to be very important in the future. They only use power when the image changes.

    9. Re:Perhaps these aren't a good idea by evilviper · · Score: 1
      It's just as interesting to come up with ways of reducing household power consumption.

      Here's one... Power your home from a large bank of deep-cycle car/truck batteries. Then, take the drained batteries to work, put them under your desk, and plug them in to a charger. There... You're greatly reduced your household power consumption.

      Personally, while I agree that household appliances should be more effecient, advocating a stop to progress is insane. In your world, everyone should throw away their Tivos too, since they use up more power than watching TV alone.

      Printing photographs uses up power, and produces industrial waste chemicals... Perhaps a digital picture frame is more effecient in many ways.

      Everyone has to pay their own electricity bill. If they find the convenience of a digital picture frame to be worth the small monthly price increase, then they should go for it.

      While I'm ranting about this, I live in CA, where there were big problems with the grid. They started a big advertising campaign to get people to reduce their power usage during peak times. Quite stupid but people went along with it. Power companies are not charities, and should not be given special consideration. If they want to reduce peak power usage, they should LOWER the rates for off-peak usage to give an actual incentive. Even a small price drop would make a huge difference, with many people and companies changing their power usage patterns to something benefitial to both themselves, and the power company.
      --
      Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
  13. Don't bother to RTFA by Anonymous Coward · · Score: 0

    One key fact: he got a donated laptop. Yep, that's right. He just reversed the screen on a laptop, folks. This is not some cool project you can do at home, because you have to scrap a freakin' laptop to get it done.

  14. FPGA + Flash + Video Driver IC? by xtal · · Score: 2, Informative

    This isn't a bad idea, but I was hoping he was using the PIC to drive the panel directly. It'll cost a few bucks to keep this picture frame running.

    I've driven VGA monitors from a FPGA before, but never a LCD panel directly - they're typically nightmares to work with. It strikes me that a digital picture frame might be a great project for someone to work on, and a practical application for some of the stuff over at OpenCores.

    A low-end Spartan FPGA would do the trick (or maybe even something more lowly than that). You'd need to implement a driver core for SVGA or a DVI interface, a interface to a compactflash card, some glue logic for that, and not much else. And a PCB to hold it together.

    Unfortunately I'm much too busy to tackle something like this myself right now, but if anyone would like to try it, I could point them in the right direction to get started.

    --
    ..don't panic
    1. Re:FPGA + Flash + Video Driver IC? by tftp · · Score: 1
      I have this one: xapp381. They don't make them any more, but the manual explains how to drive the LCD, and that with a lowly CPLD. I can imagine that a complete LCD controller for a modern panel would be not out of reach, to follow your link. This was tested on Altera, though, not on anything Xilinx. In previous life I experimented with some chip-on-glass embedded LCD controllers, they worked fine for my needs (wristwatch-sized computer.)

      And now strange, I also would not mind putting together something like that, including the PCB, it's just I don't have any free time for that! Also, all laptops that I have are in working condition :-)

    2. Re:FPGA + Flash + Video Driver IC? by Jozer99 · · Score: 1

      It would be even easier to skip the SVGA or DVI part and go directly to LVDS, which is the native protocol for LCD screens. It would also be a lot cheaper, since when you buy an LCD Monitor you pay for the panel AND the DVI/VGA to LVDS converter. Doing a direct LVDS connection would also save you more money since you could simply get a used laptop panel, some of which go for $25 US on eBay.

    3. Re:FPGA + Flash + Video Driver IC? by lashi · · Score: 1
      >In previous life I experimented with some chip-on-glass embedded LCD controllers, they worked fine for my needs (wristwatch-sized computer.)

      That sounds like some interesting stuff, do you have any links for these wristwatch-sized computers? Thanks in advance.

    4. Re:FPGA + Flash + Video Driver IC? by tftp · · Score: 1

      No, can't say more - NDA.

  15. Only a 1 on the coolness scale by codepunk · · Score: 3, Funny

    1. Modification For Direct Power +2
    2. IR Controller made with a PIC +8
    3. Powered By Windows -9

    Total 1 Point on the coolnes factor

    Tech Note: 1 additional point could be gained
    farily easily with the addition of a blue led.

    --


    Got Code?
    1. Re:Only a 1 on the coolness scale by Milkyman · · Score: 2, Informative

      +5 funny but there's really no elegance to this frame, he just ripped open the lcd clamped a frame to it and then flipped the laptop on its keyboard.

      this one is much nicer
      http://www.applefritter.com/hacks/duodigitalframe/

    2. Re:Only a 1 on the coolness scale by Jeff+DeMaagd · · Score: 1

      Is Linux even PIC developer friendly? Last I checked, the PIC software on Linux made the laughable Windows software look very good, and the Windows software always supported all the available PIC chips.

      I know some wiseguy could suggest that I could have written my own, but I needed to make money first. Pragmatism is a priority over ideology for me.

    3. Re:Only a 1 on the coolness scale by KennyP · · Score: 1

      What's wrong with Windows? If this is the only OS that he was comfortable using, what's you're problem?

      Are you another Slashdot God-in-their-own-mind? Linux is NOT the answer to everything!

      Mod me flamebait - I have my asbestos undies on.

      Kenny P.
      Visualize Whirled P.'s

  16. He should have used a different PIC by chopper749 · · Score: 2, Insightful

    the RF12F675 makes a nice transmitter.

  17. An excellent use for old notebooks by Anonymous Coward · · Score: 0

    I find given the fact they are roughly the size of a sheet of paper old notebooks make excellent paperweights.

  18. Awesome example - Low Tech by krudler · · Score: 2, Interesting

    My crazy Uncle Tony built a dynamic picture frame. It was way cooler than these fancy lcd dealies you're hearing about these days. He printed out a bunch of pictures on one of those old sk00l dot matrix printers that used the paper sheets with the holes on the sides, that you had to rip off after it printed; you know what I'm talking about. Anyways, he printed a bunch of pictures on a long sheet. Then he put em in his dynamic picture frame, which allowed you to switch pictures using a crank that rolled the sheet picture to picture. It was totally cool.

    But I hear that in korea, only old people use low tech dynamic picture frames. Uncle Tony lived in South Jersey, and if you called him old, he'd fucking kill you by bludgening you with a baseball bat.
    Krudler

  19. Meanwhile, still no cure for cancer, but hey.... by Anonymous Coward · · Score: 0

    ...look how you can waste more dead dinosaurs with this useless electronic picture frame!

  20. AAAARGH. by Anonymous Coward · · Score: 0

    I fucking HATE blue LEDs. When I take over the world, I find the inventor of these suckers, glue a pair to his eyelids, wire them to a blinker circuit, and make him wear them for the rest of his miserable life.

  21. It's not scapping a laptop by grahamsz · · Score: 1

    The fact that i have two laptops rotting away in the garage is scrapping them.

    One of them might work as a digital pic frame and that'd really give it new life instead...

    1. Re:It's not scapping a laptop by Anonymous Coward · · Score: 0

      Why not put the laptops to useful work, and
      get an embedded box for the picture
      frame. Better yet, do some real hacking and
      make your own hardware? THAT'S what
      hardware hacking is about. Reversing the
      screen on a notebook and calling that a hack
      is just ... lame. Even with the remote, it's
      still just a lame-o project.

      This article is not about hardware hacking.
      It's about ruining a perfectly good notebook.

      If you're at a complete loss for what to do
      with the notebooks you have in storage, give
      them to a church in a poor neighborhood,
      and leave your contact info. I did this,
      and ended up tutoring some kids on
      programming one weekend a month on netbsd
      hacking. One of them is now prep'ing for
      the subject test in CS, and wants to go to
      college.

      That's a helluva better use for the notebooks
      than just turning them into picture frames.
      (I do REAL hardware hacking otherwise, and
      don't ruin perfectly good, but old, notebooks.)

    2. Re:It's not scapping a laptop by grahamsz · · Score: 3, Interesting

      Well the laptop in question has a failed battery, no networking capabilities, and is maxed out with 8MB ram. They keyboard is flaky and i think the floppy drive has failed.

      A system of that spec is of limited use to anyone given that a desktop would be more useful and work better. However it's an ideal photoframe project since it has a 800x600 active-matrix lcd.

      I've donated odd computers to schools or needy friends, but if i'm going to have to support it i'd rather give away something good.

      I agree that it's no great hardware hack, but consider how difficult it is to interface with a mono lcd, i can't imagine investing that kind of effort for a digital picture frame.

  22. E-Paper by Antony-Kyre · · Score: 1

    Electronic paper, if we can ever get it into high quality, and I do mean high quality, that would be pretty cool for digital picture frames. But I'm assuming electronic paper uses less electricity than a monitor does. Correct me if I'm wrong.

  23. Watch out for the Hall effect sensor by Jack+Aubert · · Score: 1

    I did a very similar project. I hacked a laptop so I could fold it around back to back with the screen facing outward and the keyboard facing the wall and put it all into a frame. It has a wireless pcmcia card to control it remotely (changing the slide show). I use "anyplace control" for this, a cheaper alternative to PC Anywhere. The only wire is run through a small hole in the wall concealed behind the "picture" which exits at the baseboard and leads to the power supply hidden behind some furniture. The operating system was Windows 98 which was already on the Laptop. It did not have enough drive space for much else and the OS was already installed. I was almost defeated by the hall effect switch that makes the laprop shut down when the screen is folded down to close it. I had always assumed, without thinking about it that the laptop shut down when closed because of a phyiscal contact. Actually there is a hall effect switch that senses the magnetic field orientation of the screen. This swich on my old laprop (A Dell) also shut it down when the two halves were separated and put back to back. I could not think of any way to disable the switch, even if I could locate it among all the anonymous components soldered to the motherboard. However a piece of light guage sheet steel inserted between the two halves of the laptop effectively shielded it and stopped the laptop from shutting down. The project had the advantage of being relatively cheap but the poor angle view is a drawback. I am planning a replacement using a flat screen monitor and some mini components (motherboard, power supply and hard drive velcroed to the back of the screen.) I would also use Linux which will make it easier to control the thing remotely using telnet and FTP.

  24. Re:who are you who is so wise in the ways of scien by Anonymous Coward · · Score: 0

    As someone who deals with broken electroncs on a daily basis, this comment is more inciteful than insightful. Unless you happen to have schematics + notes + spare parts lying around, it is *REALLY* hard to find and debug things. If there is a smoking gun - burnt trace, smoked resistor/transistor, leaking capacitor/diode, etc, you at least have a chance, but if all you have to go on is "it doesn't work"... It's more than easy to spend hours to days trying to figure out why it doesn't work, and how to fix it.

    Its called being practical. Option 1 is to figure out how to fix a unknown defective power supply. Option 2 is to hack in a new one. Guess which option could possibly result in completely toasting the entire laptop? Guess which one is easier?

    No need to secondguess a decision that actually provided results, right?

  25. Anyone sell these? by Richard+Bannister · · Score: 1

    I'd love something like this, but I'm far too busy/lazy to build my own. A business opportunity for someone, perchance?

    --
    http://www.themeparks.ie
    1. Re:Anyone sell these? by Anonymous Coward · · Score: 0

      check out ceiva at
      http://www.ceiva.com

    2. Re:Anyone sell these? by rthille · · Score: 1

      While I liked my Ceiva while it worked, (I really got it to try to port NetBSD and/or Linux to it to avoid the fees), the backlight died after the very short warranty ran out and the out of warranty replacment was 70% of the cost of the frame. Trying to cancel the service after the frame has died has been difficult.

      so, in short, I'd avoid Ceiva.

      --
      Awesome furniture, accessories and cabinetry in Santa Rosa, CA: http://humanity-home.com/
  26. What about the fan noise? (Among other things) by Synapsys · · Score: 1
    This sounds like an interesting (if redundant :P) project to muck around with. I just have a few points.
    • What about the noise from the fan? My old laptop is as loud as hell, even when I'm not running anything
    • It glows! I don't really want to have to turn off my picture frame, a passive LCD, or a jury rigged backlight dimmer/switch might improve the idea.
    • Resolution. I like to view my pictures as prints, mainly because of the extra detail you get. 72x72 resolution isn't exactly my idea of high quality. I like a nice big, black and white print on real, honest to god paper.
    • Just My thoughts
  27. We have clean power available by dfenstrate · · Score: 1

    clean power? We have it. It's called nuclear. Trouble is, it's too 'imperfect' for all the types that cry 'save the earth!' at every inoppurtune moment.

    If it wasn't for the idiot tree huggers who put a stop to nuclear power in the US, our air would be a lot cleaner right now.

    --
    Alcohol, Tobacco and Firearms should be the name of a store, not a government agency.
    1. Re:We have clean power available by revscat · · Score: 2, Insightful

      If it wasn't for the idiot tree huggers who put a stop to nuclear power in the US, our air would be a lot cleaner right now.

      Yes, I'm sure the reason that nuclear power is because of "tree huggers", a group who has had little political power at its peak and none at all for the past decade or so. I'm sure it has nothing to do with the fact that nuclear power takes away from the profits of the oil and coal industries, and that the GOP is deep in the pockets of same. No, that whole link between Saudi and the Bush family is just a bunch of propaganda dreamed up by Michael Moore, and he's a fatass.

      Bush is president. The Republicans control congress. You want to point the finger of blame somewhere point at those who have the power to change things but don't.

    2. Re:We have clean power available by dr.badass · · Score: 2, Insightful

      If it wasn't for the idiot tree huggers who put a stop to nuclear power in the US, our air would be a lot cleaner right now.

      It would help, though, if the energy industry wasn't composed mostly of stubborn fossil fuel conglomerates that own the wells, the pipelines, the refineries, the plants, and everything, all supported by heavy government subsidies and a finger in every bureaucratic pie. Oh, and if it didn't cost so much to build and maintain a nuclear plant.

      Environmentalists (not all of whom can be described as "idiot tree huggers") may make a lot of noise, but the biggest reason nuclear power isn't huge here is the money. It just doesn't make financial sense to fossil fuel-based energy companies to spend tons of money on a plant that makes their existing plants and infrastructure obsolete and has the effect of making their product, energy, cheaper.

      --
      Don't become a regular here -- you will become retarded.
    3. Re:We have clean power available by RicoX9 · · Score: 1

      Yes, and the 8 years of Utopia Clinton Presidency got us so much advance in clean energy. I don't recall him doing anything other than pander to the enviornmental lobby.

      You make accusations where there is no actual fact. How about we point some blame at Clinton for not proposing solutions for 8 years. Or even attempting to get Osama when he was offered on a plate (at least) twice.

      All the same kind of shortcomings could be applied to either party or a given politican. The parent post was generally correct. When a nuclear plant is proposed, the tree huggers go up in flames. Too bad they don't go up in flames about the poor folks who live downwind of the coal-fired power plants. They get all kinds of radiation dumped on them, yet you never hear them ranting about it.

    4. Re:We have clean power available by revscat · · Score: 2, Insightful

      You make accusations where there is no actual fact. How about we point some blame at Clinton for not proposing solutions for 8 years. Or even attempting to get Osama when he was offered on a plate (at least) twice.

      Hahahahaha you're response is "Blame Clinton hey let's change the subject and talk about Osama!" Oh man, you're a walking cliche, aren't you?

      Why do Republicans hate responsibility?

      BTW: Cute kids.

    5. Re:We have clean power available by dfenstrate · · Score: 1

      Hey, you forgot to blame 'haliburton', didn't say the term 'neocon', only implied a 'conspiracy' and left out the part how the republicans have been planning this all since the 70's, as proved by memos 'recreated' for CBS and dan rather.

      Really, too many things missing from the standard moonbat screed to qualify for full points. You're almost there, though!

      --
      Alcohol, Tobacco and Firearms should be the name of a store, not a government agency.
    6. Re:We have clean power available by revscat · · Score: 1
      So again you have nothing to say in reply besides offering up monumentally stupid straw-men? Ok, so we'll take it as fact then that you (a) disdain responsibility when things are the fault of the Republicans and (b) things are the fault of the Republicans.

      If the Republicans wanted nuclear power, we'd have it. They're in the pockets of the oil and coal industries, so we don't.

      Gotcha.

    7. Re:We have clean power available by Anonymous Coward · · Score: 0

      No, no, it's just that I think you're an idiot full of lefty conspiracy theories, and didn't think any ground was to be made by answering you seriously. So, I didn't.

      If you had actually said something that was worth considering, I might have replied seriously. Instead, you come off as a college freshmen at best who just got an A+ in a "race, culture and power" class by writing an excellent essay on 'white man holding everyone else down' and how communism is the way to go, or some trash like that.

      -dfenstrate

    8. Re:We have clean power available by revscat · · Score: 1
      So you're denying that there are close ties between the Bush administration and the oil industry, or admitting it? Cuz from here, it just looks like you're avoiding the subject entirely.

      Which makes you a coward. But you're a Republican, so I repeat myself.

    9. Re:We have clean power available by dfenstrate · · Score: 1

      Tell me, how does it feel not to be taken seriously?

      If you want to see an actual discussion, read the thread that starts with the other guy who responded to my original post. Maybe you'll learn how to talk outside of campus espresso shop.

      --
      Alcohol, Tobacco and Firearms should be the name of a store, not a government agency.
    10. Re:We have clean power available by revscat · · Score: 1

      Tell me, how does it feel not to be taken seriously?

      Tell me, how does it feel to be an abject coward? Again, all you do is brush off criticisms with ad hominems, all the while failing to address the underlying issue, and chalk this up as "success".

      Q: Is Bush responsible for American energy policy? If there are criticisms to be made of same, who should shoulder responsibility for that criticism?

      Here's the part where you run away (again) and hide behind rhetorical trickery.

    11. Re:We have clean power available by dfenstrate · · Score: 1

      Again, all you do is brush off criticisms with ad hominems, all the while failing to address the underlying issue, and chalk this up as "success".

      Success? I'm not arguing with you, where success would be defined as persuading you. I do not think such a thing is even possible, because you've attended a few too many anti-globalization 'teach-ins' to be taken seriously, or some similar trash.

      I'm mocking and belittling you for my own amusement.

      Dr. Badass posed some rational alternate theories to mine as to the stagnation in Nuke plant construction, and I responded to him. Go read that, instead of the latest indymedia trash.

      I'm sorry this latest 'speaking truth to power' enterprise of yours isn't working out the way you like, but your petulance doesn't really count for much outside of whatever college campus you're on, or urban centers on the west coast.

      --
      Alcohol, Tobacco and Firearms should be the name of a store, not a government agency.
    12. Re:We have clean power available by revscat · · Score: 1
      So IOW: When a simple question is proposed to you, you avoid it and stoke you're ego by telling yourself it's all for your own amusement, that arguing with an idiot for sport.

      Great. Wonderful. I'm a complete idiot. Utterly and completely retarded, unable to tie my own shoes. I also eat babies, have an altar to Michael Moore, and give money regularly to both al Qaeda and Kim Jong Ill.

      Now, as for the original question, which you have yet to do anything but not-so-cleverly avoid: "Q: Is Bush responsible for American energy policy? If there are criticisms to be made of same, who should shoulder responsibility for that criticism?"

      Your avoidance proves my point: that the Republicans have a pathological obsession with avoiding taking responsibility, even in the abstract, and self-criticism is deeply taboo. That makes you not only a coward but a fool as well.

    13. Re:We have clean power available by dfenstrate · · Score: 1

      "Q: Is Bush responsible for American energy policy? If there are criticisms to be made of same, who should shoulder responsibility for that criticism?"

      you're a persistent little guy, so I'll answer your one question, which you could have answered yourself if you bothered to use google.

      I'm sure Bush wields significant power over many agencies that he can appoint the head of, agencies that make rules that can inhibit or promote the construction of new nuclear power.

      Other aspects of energy policy must be passed by congress and the house, such as:

      *A $1.5 billion tax incentive package to promote the sale of nuclear power plants

      *The expenditure of up to $2 billion over 10 years to develop environmentally sound methods for burning coal to generate electrical power

      *Streamlining the bureaucratic process of licensing new nuclear power plants to speed their development

      *A new study into the feasibility of reprocessing spent nuclear fuel, an idea abandoned in the 1980s due to projected high costs

      *Continued study of deep underground storage of spent nuclear fuel

      The energy policy act of 2003 covers all these bases, and is stuck in a committee somewhere.

      So, Bush has been pushing a bill that's VERY FAVORABLE TO NUCLEAR POWER. If it hasn't been passed by the legislative branch, that's certainly not his fault. His executive powers have their limits.

      This is why I don't take you seriously. Because you blame a Bush/Haliburton/Big oil conspiracy for the lack of new nuclear projects without even taking TWO DAMN seconds to search on google.

      So, what's next? You gonna tell me that the bill is just for show, and he'll make sure it's never passed so his big oil buddies keep raking in the profits? If you start to believe in layers of duplicity like that, then there's no point in discussing anything with you (and I suspect this is the case) because any evidence I present to you will be dismissed because somehow, you 'know' it's just a cover story.

      Here, I'll even give you a link to the other leg of this thread, which is much shorter and more intelligent: Click Here

      My prediction: your response will validate my previous mocking of you.

      --
      Alcohol, Tobacco and Firearms should be the name of a store, not a government agency.
    14. Re:We have clean power available by revscat · · Score: 1

      Hmm. Even after all that you still were unable to actually answer the questions. Fascinating and tragic all at the same time. It's like you don't see it or something. Crazy.

    15. Re:We have clean power available by dfenstrate · · Score: 1

      Is Bush responsible for American energy policy? If there are criticisms to be made of same, who should shoulder responsibility for that criticism?"

      I suppose i used too many words for you,

      PARTIALLY
      and
      BUSH and LEGISLATIVE BRANCH

      --
      Alcohol, Tobacco and Firearms should be the name of a store, not a government agency.
    16. Re:We have clean power available by revscat · · Score: 1
      Riiight.

      So let's see, your replies have been:

      Straw-man: "Tree huggers fault"

      A series of straw-men: "Hey, you forgot to blame 'haliburton', didn't say the term 'neocon', only implied a 'conspiracy' and left out the part how the republicans have been planning this all since the 70's, as proved by memos 'recreated' for CBS and dan rather."

      Ad hominem: "You're an idiot"

      Ad hominem: "You're not worth taking seriously."

      Ad hominems and ego stroking: "You're an idiot, I'm doing this for fun."

      And then, on your sixth reply, FINALLY something with some meat, no matter how misguided it is.

      Yeah man, it takes you six messages to even come CLOSE to admitting that Bush might just be ever so partially responsible for energy policy in the US, then trot out the a bait and switch with the old It'sNotReallyBush'sFaultDon'tLookAtBushBlameCongre ss) and you're trying to convince the world you give the guy a fair shake?

      Right.

      Bush is in the pockets of the oil industry. I know that just chafes your ass to no end to even consider the idea, but it's a fact and I can prove it to Bush cultists like yourself on a freakin' Etch-a-Sketch, mmmk? Nuclear is neither as profitable nor as established as oil and coal, and has little friends among an administration run by Texas oilmen with close ties not only back home but with international oil interests like the Saudi royals.

      Final question: Do you have gay butt sex with Sean Hannity? Cuz it seems like it's his spooge coming out of your mouth. In one end, out the other, doncha know.

  28. Not bad! by OhHellWithIt · · Score: 1
    And to think that someone spent large sums of money and took many months to make things like this (and failed, ceding the business to competitors)!

    Personally, I liked the Temple of the Monkey God.

    --
    "Who controls the past controls the future. Who controls the present controls the past." -- George Orwell
  29. Done with I-Openers and Webplayers by dcigary · · Score: 1

    A few years ago I bought up some of those Virgin WebPlayers and I-Openers from eBay and other places, and proceeded to hack into them with the instructions provided.

    The WebPlayer I'm using in the living room has Windows 95 on it reduced down using LitePC, and has Opera running as a web client. Also installed is Identafone, a piece of software that will display caller-id information on the screen. Add a cheap USB network adapter, plug in the phone line to the modem, and fire up the web browser to bring up a variant of the Block-random script provided by the Gallery distro, and you have a Photo Frame/Caller-ID box that has a small footprint and has no moving parts (no fan or hard drive).

    I've also done the same thing with the I-Openers, installing a small 10-Gig laptop drive or so using a custom IMOD2 Kit. They both run very well and you end up with a much more configurable picture frame than a store-bought one for around a third of the cost. Now, I wish I could do something with some type of Linux distro on these guys, and I'm sure that it's possible, but I just haven't had the time after doing these. Ideas anyone? Would a Linux distro run on these boxes and still have enough memory to run a GUI to display photos?

    --
    ...my Karma ran over your Dogma...
  30. shameless plug (my powerframe) by emars · · Score: 1

    I built a simple powerframe. Works pretty well - good enough to impress friends.

    Powerframe (Powerbook 5300c)

    --
    ...18...19...20 Submit
  31. digital picture frame with Freevo by Rasp · · Score: 1

    This link was posted to the freevo-users list in October:

    http://chrismetcalf.net/blog/archives/2004/10/16/d igital-picture-frame/

    That also uses an old laptop.

  32. good point... by dfenstrate · · Score: 1

    It just doesn't make financial sense to fossil fuel-based energy companies to spend tons of money on a plant that makes their existing plants and infrastructure obsolete and has the effect of making their product, energy, cheaper.

    That's a good point, and I'm sure it's responsible for some of the stagnation. You must also keep in mind, though, that in the many de-regulated markets that exist in the country, new companies (or ones from different regions) can come in, build a new plant, and undercut old companies in the area by selling electricity at half the price.

    Regulation and environmentalists of one stripe or another are responsible for a good deal of the sloth in nuclear plant construction. Until recently, the time it took, due to the myriad of regulatory bodies and their demands, to get a powerplant online was near a decade.

    Additionally, starting a huge capital project that takes 10 years to begin to pay for itself is something that tends to drive down your stock price. Wall street hates new plants for that reason.

    On the other hand, all those investors love already built plants. Nuclear plants are wildly profitable once they're running. Take my word for it, I work at one.

    Recent developments at the NRC and companies such as Westinghouse and Bechtel have driven down the time from ground-breaking to completion to an estimated 5 years, and one company will be starting construction on the first new nuke project in two decades within a year or so- forgive me, I forget the energy company, but the plant itself will be a Bechtel CANDU plant, IIRC.

    So, I'm sure your right in that some companies aren't eager to drive down their stock price or make their current equipment obsolete. On the other hand, you've got ever-expanding demand, cutt-throat competition (where available!), and desirable profit margins on the attractive side of the equation.

    (I do not know the profitability of fossil fuel plants)

    I guess we'll see in the next few years.

    --
    Alcohol, Tobacco and Firearms should be the name of a store, not a government agency.
  33. Re:cmdrtacothisgoesouttoyou by Anonymous Coward · · Score: 0

    you moron

  34. Oh, bother by dfenstrate · · Score: 1

    Oh my, you have taught me the error of my ways. /sarcasm

    I've had these arguments several times before. And there's no point. So why should I have an argument with you? You came to play baseball, I was playing football.

    Incidentally, you lay down (accurate) charges of ad-hominems towards me, while laying them on thick yourself. Shouldn't you abstain from behavior you criticize in me?

    "Bush is in the pockets of the oil industry. ... I can prove it to..."

    No, you can't. You're welcome to try. I suspect your 'proof' will consist of many non-sequiters, an occasional texas sharpshooter problem, and many links to indymedia, stopwar, a PIRG or two, and some ANSWER website.

    I've seen it all before. I've had my time on a college campus long enough to see all the shit Bush-haliburton-big-oil-saudi conspiracy theorists like yourself dig up, and had several of these arguments online before, where I was exposed to even more material that I'm sure I'll get more of from you.

    trying to convince the world you give the guy a fair shake?

    That never was really my intention from the start. I never thought there was any point in trying to convince YOU of anything. I do not think such a thing is possible. We could have traded paragraph long arguments and counter arguments on all things Bush, nuclear, and oil, but experience tells me it would be pointless. I'm no fanboy, but it takes alot of bad Kool-aid to start thinking Bush is the devil incarnate and everything he does is automatically wrong.

    We've all hear the saying that arguing on the internet is like running in the special olympics- even if you win, you're still a retard.

    You've spent most of this time arguing, under the misguided idea there's a point. I know there isn't, by experience.

    If you're a slashdot subscriber, feel free to read every comment I've ever posted, and argue in your head against many of those, or tell your roommate or some sympathetic ear "look at what an idiot this guy is."

    Actually arguing with you would be just as intelligent as banging my head against a wall.

    --
    Alcohol, Tobacco and Firearms should be the name of a store, not a government agency.
  35. Digital Picture Frame Resources by vivacharlietuna · · Score: 1

    I've created a site with a bunch of resources for making Digital Picture Frame. http://www.likelysoft.com/hacks/pictureframes.shtm l You can visit and check out the resources or submit your own project if you'd like. -vivacharlietuna