Introducing The F*Watch, A Fully Open Electronic Watch

As one of their colleagues was retiring, several CERN engineers got together after hours during 4 months to develop his gift: a fully open electronic watch. It is called the F*Watch and is packed with sensors: GPS, barometer, compass, accelerometer and light sensor. The microcontroller used is a 32-bit ARM Cortex-M3 SiLabs Giant Gecko which contains 128KB of RAM and 1MB of Flash. In the above picture you’ll notice a 1.28″ 128×128 pixels Sharp Memory LCD but the main board also contains a micro-USB connector for battery charging and connectivity, a micro-SD card slot, a buzzer and a vibration motor.

The watch is powered by a 500mA LiPo battery. All the tools that were used to build it are open source (FreeCAD, KiCad, GCC, openOCD, GDB) and our readers may make one by downloading all the source files located in their repository. After the break is embedded a video showing their adventure.

Continue reading “Introducing The F*Watch, A Fully Open Electronic Watch”

Compass Guided Kayak Autopilot

logo

Last July, [Louis] bought a kayak off of Craigslist. It was a pedal-powered device with a hand-operated rudder, and he ended up enjoying his time on the water. [Louis] fishes, though, and it was a bit of a challenge to manage hands free fishing while maintaining a steady course. His solution was an Arduino-powered autopilot that allows him to troll for salmon and Arduino haters with just the push of a button.

In [Louis]’ system, a motor is attached to the steering lever along with a few limit switches. This motor is powered by an Arduino controlled with an LSM303 compass module from Sparkfun.

When the autopilot module is started up, it first checks to see if the compass module is enabled. If not, the system relies on two tact switches to change the position of the rudder. Enabling the compass requires a short calibration of spinning the kayak around in a circle, but after that the steering is dead on.

There are a few things [Louis] would like to add such as a heading display and a bluetooth module for remote control. This setup already landed him a 13 lb salmon, so we’re going to say it’s good enough to catch some dinner.

Advanced Compass/accelerometer Library For Arduino

We don’t have much personal experience with DOF hardware, but this Arduino library which reads and compensates for three-axis magnetometer and accelerometer data looks very impressive. It should work for existing hardware, but there’s also a demo design using a Honeywell HMC5883L compass and a Freescale MMA8453Q accelerometer which you can build yourself. Unfortunately these come in QFN packages (like most cheap accelerometers these days) so you may need to be creative when soldering.

What’s so special about this library? Watch the video after the break (use 720p in fullscreen to get the full effect) and you’ll see three different scatter plots of the output data. The image above is a capture of the third example, which is using the hard iron offset and accelerometer compensation. That is to say, metal on and around the board is accounted for, as well as the physical orientation of the device. Even if you have no prior experience with this type of hardware it’s easy to see the usefulness of this kind of software compensation.

Continue reading “Advanced Compass/accelerometer Library For Arduino”

Tilt Compensation When Reading A Digital Compass

If you’re familiar with using a compass (the tool that points to magnetic north, not the one that makes circles) the concept of holding the device level makes sense. It must be level for the needle to balance and rotate freely. You just use your eyes to make sure you’re holding the thing right. Now think of a digital compass. They work by measuring the pull of a magnetic field, and have no visual method of showing whether they’re level or not. To ensure accurate readings you might use an accelerometer to compensate for a tilted magnetometer.

The process involves taking measurements from both an accelerometer and a magnetometer, then performing calculations with that data to get a true reading. Luckily the equations have been figured out for us and we don’t need to get too deep into trigonometry. You will, however, need to use sine, cosine, and arctangent in your calculations. These should be available in your programming language of choice. Arduino (used here) makes use of the avr-libc math library to perform the calculations.

Building A Robot Without Using A Machine Shop

We usually avoid the prospect of buying new tools just for one project. In the long run we’re sure we’d use them again, but sometimes even with that outlook you can’t afford it. Case in point is our life-long-lust for a laser cutter; we just can’t justify the upfront cost but we sure would use it constantly if we had one.

If you do find that you’re interested in taking on a project that calls for laser cut parts, [I Heart Robotics] shows you how to do it with a few simple hand tools. The bot seen above is their TurtleBot. You can cut your own parts using a laser cutter, you can buy a kit from them, or you can bust out a ruler, compass, drill, coping saw, printer, and tape to make the pieces by hand.

It’s a simple enough concept. Print out the templates, tape them to your hard board, then start drilling and sawing. You won’t get the precision a machine tool can, but in some cases you don’t need to be all that perfect.

[via Adafruit]

Forearm-mounted GPS Uses LEDs To Light The Way Home

arm_mounted_gps

While some people can rely solely on memory and landmarks to find their way home, others need a bit more help. Consider Instructables user [_macke_] for instance.

Like other screenless GPS navigation devices we have seen, his “Find Home Detector” uses a GPS module to obtain his location, guiding the way home via a set of alternate indicators. In this case, he uses LEDs which are laid out like a compass rose. When [_macke_] is aimed toward his destination, the LED nearest to his fingertips lights up, letting him know he is on the right path. As he turns away from home, the other LEDs light, indicating the direction in which he should turn.

His forearm-mounted GPS navigator uses a LilyPad Arduino to control the system, much like others we have seen. It is connected to a GPS sensor and a compass module that work in concert to guide him home. The compass is responsible obtaining his heading information, and while it might look as if the LEDs that surround the module are pointing North, they are in fact indicating the heading of his destination instead.

It’s a cool little creation, and we can imagine it would be quite helpful if you happen to be walking home after a long night of drinking.

Be sure to check out the video below for a quick demonstration.

Continue reading “Forearm-mounted GPS Uses LEDs To Light The Way Home”

Arduino Hits The Battlefield — For Real

We’re not sure if this is the first time, but here’s some pretty solid proof that Arduino has found its way into the weapons of war. The creators, [Derek Wales], [John Eischer], and [George Hopkins] are all Electronics Engineering majors at West Point. They came up with this idea after seeing video footage of a firefight in Afghanistan where combat soldiers were calling in artillery strikes using a compasses and GPS devices. It’s an all-in-one unit that can provide the same information quickly and accurately. The prototype above, which they call the DemonEye, contains a laser range finder, digital compass, and a GPS module. The article also states that it contains a mini-computer but we recognize that as an Arduino Mega (thanks to Miguel over at Areopago 21 for noticing this first and sending in the tip about it).

The prototype apparently comes in at $1000. Okay, it seems a bit high but not out of the ballpark. What we can’t understand is how the second generation of devices was billed out at $100,000 for five more units. What’s the going rate for laying out military-grade PCBs?