Hacking ZigBee Chips: CC2430

[Travis Goodspeed] took an in-depth look at the debugging protocols for some ZigBee chips and posted his findings. In particular he’s looking at the CC2430 System-on-chip. These chips have a debugging protocol that is not hard to implement if you know what you’re doing. Certainly his tips make it easier for the rest of us. Don’t miss the info about reading from, writing to, and overcoming security of this hardware.

Four Generations Of Motion Simulators

We like a good flight simulator but often find the available control schemes lacking. [Roland] not only builds his own controls, but creates full cockpits that add physical motion to the mix. He completed his third generation cockpit last year.  It’s pictured above as well as in video after the break. That design uses a belt system to move the tricked out cockpit.

Now he’s started work on prototypes for generation IV. This time he’s using three Sarrus linkages to replace the belt system.  We saw these linkages yesterday in an extruder prototype and if they can handle the load they should work well for this application. Video of the prototype is embedded after the break but be warned, the lewd thrusting motions are not for the faint-of-heart. Continue reading “Four Generations Of Motion Simulators”

Advent Wreath From Parts You Have On Hand

Here’s an advent wreath made from six parts and a paper clip. Powered by a CR2032 3v button cell, the circuit has been free-formed using a paper clip as the conductor. We love the “dead bug” style of construction used with the ATtiny13 microcontroller because it adds an extra level of intrigue for the uninitiated. This project build on the flickering circuit we saw last year and uses the LEDs as light sensors, only turning on when a certain darkness level has been reached.

We used a tiny13 with our Menorah project last year and still have some lying around that we can use for this. We’re sure you’ve got at least a couple of low-pin-count micros on hand. If you don’t, you should!

New AVR Simulator For Linux

simavr is a software simulator for the AVR line of microcontrollers. You might be asking why anyone would write this sort of thing considering the simulator provided with AVR Studio is a wonderful tool? Well, a lot of folks don’t run Windows and don’t wish to use that development environment even if Wine or Virtualbox could make it happen.

We haven’t tried it out ourselves yet. There is a discussion thread going that reports some positive results of using simavr with GDB and AVR Eclipse. It’s a new package, but so far it seems to have put its best foot forward. Currently there is support for ATtiny25/45/85, ATtiny13, ATmega48/88/168, andATmega164/324/644 chips. Several of the common on-chip peripherals are already supported with the others on the way.

Have you tried it out? Let us know what you think in the comments.

[IC Photo]

Sarrus Linkage 3d Printer

[fdavies] has been working on his own 3d printer. He is using printed parts, but unlike the RepRap he’s purposed Sarrus linkages in his design. If it works, this should remove the need for precision rods in building these types of CNC based machines. He’s also recovered DC motors and optical encoders from some inkjek printers. Given that many retailers require you to take junky inkjets home when you purchase a computer we’re betting you’ll find friends happy to part with their unused hardware. We’re impressed with the motion of the prototype seen after the break. Let’s hope this leads to the next generation of affordable 3d printers.

Continue reading “Sarrus Linkage 3d Printer”

Don’t Point That At Me

Some things are made to look steam punk but others are steam punk. This example of the later is a camera made mostly of brass. The body has been soldered together with only a shutter and lens being purchased for the project. There is a viewfinder and separate range finder to determine the proper focus for pictures as this is not a single lens reflex.

It should be obvious by now that this is a film camera. It relies on the photographer to turn the winder until an arrow on the knob lines up with a mark on the body for proper alignment. If you set out to make one of these, perhaps you should also manufacture your own film for it.

[via Dvice]

Bluetooth Based Pseudorandom Number Generation

[MS3FGX] has done an interesting study about using Bluetooth adapters as a source for Pseudorandom Number Generation (PRNG). As it turns out, the Bluez package has a function that calls a remote Bluetooth adapter to return a random number. He picked up 10 compatible adapters for about $30 from DealExtreme and set about assembling some numbers to see how this compares to an OS-based PRNG.

Because millions of samples are needed for an accurate comparison, time became a problem. The adapters are a little bit slow responding to a request, sending just 4800 numbers in the first 30-second test. This can be overcome with multiple adapters being accessed by multiple computers for hours at a time. What can this be used for? Your guess is as good as ours, but [MS3FGX] has done a great job of writing up his tests. He’s also made a set of 20.7 million randomly generated values available if you want to generate your own statistical analysis.