Bench-top Laser Engraver Does Some Cutting Too

Grab that stack of old optical drives you have in the corner and get to work building this laser engraver. [Groover] is taking a no-nonsense approach to the build and we think it is just simple enough to be accessible to a very wide audience.

The physical assembly uses sleds from two optical drives. These are mounted some angle bracket. Since lasers cut at one specific focal length, there is not need for a Z axis (simplifying the build greatly). In fact, we think the hardest part of the assembly is retrieving the laser diode from a DVD-R drive and packaging it for use with this setup.

The electronics are a combination of a couple of consumer products. Two pre-fab motor drivers are used to command the stepper motors on the optical sleds. These receive their commands from an Arduino. A package called GRBL reads in G-code ([Groover] shows how to generate this from Inkscape) and in turn sends commands to the Arduino.

The results are quite remarkable. It can engrave wood with great resolution and contrast. The video after the break even shows it cutting out shapes from construction paper. Now we still want our own full-size laser cutter, but this project is much more fiscally possible for us.

Continue reading “Bench-top Laser Engraver Does Some Cutting Too”

Bounce Flash In Multiple Mediums

[Nigel’s] been trying out a series of designs and materials to make his own bounce flash. He set out on this mission because most of the images he used flash on ended up washed out with dark shadows. The flash add-on seen above seeks to curb the harshness of the direct light but shielding the subject.

What you see above is just a couple of pieces of paper. [Nigel] put together a template so that you can cut your own. Although the design is his favorite, he also put together a second generation that is built from hobby plastic with a piece of aluminum tape as the reflecting surface. The main link at the beginning of this feature leads to that version, but after the break we’ve included direct links to each article he published during his experimentation.

Continue reading “Bounce Flash In Multiple Mediums”

Microsoft Points Algorithm Cracked… They’re Out $1M

Looks like someone figured out the algorithm that Microsoft uses to generate unique codes for their alternative currency: Microsoft Points. We were always a bit baffled by the need to do this sort of thing (Disney dollars, tokens at arcades, etc.) but figured it’s just a grift to get you to spend more dough. Looks like this time it may have come back to bite them in the ass with early loss projections somewhere in the $1-$1.2 million range.

But as most of you know, it’s not just an algorithm that can cause this kind of havoc. Whomever figured out how to crunch the numbers apparently packaged the method into a nice GUI and distributed it over the Internet. Check out the video after the break to see that not only will it give you a code, but you can verify that it works at the click of a button. Microsoft is taking steps to invalidate all of the ill-gotten redemption codes, but we wonder how effective they can be at it. Surely they already had contingency plans for this and we wonder if the company didn’t also carry insurance against this kind of loss.

Try as we might, we couldn’t turn up a press release on the subject. If you know of any, please be kind and leave a link in the comments.

Continue reading “Microsoft Points Algorithm Cracked… They’re Out $1M”

Phillip Torrone Makes Case For Next-gen Public Libraries

[Phillip Torrone] has started a discussion about a possible upgrade to the public library system in the US and wants to know what you think. His name should be familiar (Hackaday founder, Open Source hardware advocate, and Tron costume model) and he’s definitely got his finger on the pulse of today’s electronics enthusiasts. He poses the question, could we upgrade libraries to become public techshops?

As a frequenter user of my own library system here in Madison, Wisconsin I like to think that they’re not going anywhere anytime soon. I find it nice to be able to borrow books, as it seems wasteful to buy a book I will only read once. Sure, I do buy and sell books at the used book store, but that doesn’t diminish how I value the library system and often suggest in posts that our readers should go check out books they’re interested in.

But I must agree with [Mr. Torrone] that, a least to some extent, reserving large buildings to house collections of books may be an outdated concept. It’s not just the books that make the library. These buildings provide computer time and Internet access to the community. I’ve occasionally written posts from public libraries instead of paying the ‘coffee tax’ to get on WiFi in a coffee shop. Libraries also serve as community meeting spaces, and polling places. And what [Phillip] is talking about aims to offset some of the stacks in order to augment the functionality of the institution.

What if it were a repository of knowledge in the written form as well as a place to use tools and learn new skill? It’s an intriguing question and I’m glad he asked it.

Build Your Own Vertical Axis Wind Turbine

You can build a copy of this vertical wind turbine in a weekend and it won’t cost you all that much. Applied Sciences developed the hardware and they’re sharing all for the build details. You will be taken through every part of the build starting with the fin assembly which is made from stove-pipe material. This is a perfect raw material because it is already curved and suited for aerodynamic use in much the same way that PVC pipe is for making fins and we would expect it to be a bit lighter in weight. You will also need to turn your own coils when assembling the stator. This particular build process uses nine coils embedded in fiberglass. They remain stationary while two different discs, each containing a dozen rare earth magnets, rotate in close proximity to induce a current. It outputs three-phase AC current which can be turned to DC using a bridge rectifier and then further regulated for storage in batteries.

[Thanks Miguel]

Water Droplet Sculpture Using LEDs And Arduino

This water sculpture can stop drops of water in mid-air. This is accomplished by flashing LEDs to illuminate the droplets at just the right time. But it’s not limited to blinky lights alone. The top of the frame has eight nozzles, each fed by its own pump. An Arduino controls the pumps and the lights making it possible to create different motion effects by adjusting how events line up. For instance, the image above shows just two of the water nozzles on, but in the video after the break it appears one is dripping downward while the other is dripping upward.

Alas, there’s few build details for this but the source code is available for downloading. If we were going to build one of these ourselves we’d probably try to regulate the drips using some solenoids built from scratch. How would you do it? Leave your ideas in the comments.

Continue reading “Water Droplet Sculpture Using LEDs And Arduino”

All About PS3 SixAxis Controller USB Communications

[Austyn] is currently working on reverse engineering a PlayStation 3 SixAxis controller’s USB communications. You may be thinking that this has already been done but [Austyn] was unable to find useful source code so he’s started his own project called libopenaxis.

The process he used to sniff out USB communications makes for an interesting read. He utilized GlovePIE to get the USB request block for the controller. With that in hand he grabbed the Python script used in a DIY Kinect hacking tutorial to start dumping controller data. With each keypress the script reads out the full data packet, which is used to figure out how the data structures are organized.

The project has come as far as knowing all of the data types, but right now the purpose for the majority of those variables is unknown. Hopefully the blanks will be filled in over time. Two things are for sure; if you’re interested in writing Python code that can communicate with PS3 controllers this is a great source of info, and the Kinect hacking that was so fun to watch over the last few months is still bearing fruit.