minibloq

Drag And Drop Programming Gets Kids Started Early

While programming an Arduino is a piece of cake for EEs who have been around the block a few times, there are some groups who would still find it difficult to get started with the IDE. It is touted for its ease of use, but there is a steep learning curve if say, you are 5 or 6 years old. [Julián da Silva] has been hard at work for a while now, to make the Arduino more accessible than ever.

Earlier today, we posted a story about moldable putty which can be used by children to build rudimentary circuits, enabling them to enter the fun world of hobby electronics at a young age. [Julián’s] project “Minibloq” aims to do the same thing with the Arduino. A work in progress, Minibloq uses a graphical interface to “build” Arduino code a block at a time. The code components are dragged and dropped into place on one side of the screen, while the source code is generated on the other half. This helps gently introduce those people new to the Arduino how to write actual code, a little bit at a time.

[Julián] is working hard to ensure that his application works well on OLPC and other classroom-oriented computers to ensure it can reach as wide an audience as possible. We think this would be a great introduction to the world of micro controllers for children as well as those who have never tinkered with electronics at any point in their lives.

Keep reading to see a quick demo of the software in action.

Continue reading “Drag And Drop Programming Gets Kids Started Early”

Push Notifications For Snail Mail On An IPhone

[Matt] over at Make came up with a way to send push alerts to his iPhone whenever his mailbox is opened.

The electronics are just a switch mounted to the mailbox connected to an Arduino with an ethernet shield, but the interesting part of the build is the code. [Matt] got the Arduino WebClient to request a PHP script sitting on a server. This script connects to the Prowl API to push the notification onto an iPhone.

[Matt]’s project has been up for a few months now, and we still haven’t seen any projects using an Arduino+Push combo, or really any other phone except for the iPhone. We think this could be done on an Android phone with cloud to device messaging, but that can’t be the only solution. Any hackaday readers have an idea of how to implement this outside the iOS world? What would Hackaday readers do with a microcontroller that can send push alerts to your phone?

Video of [Matt] walking us through the project after the break

Continue reading “Push Notifications For Snail Mail On An IPhone”

Real-time GPS Tracker With Mobile Phone Uplink

[jayesh] wasn’t actually trying to solve any clever problems when we built his homebrew GPS tracker. He just had the hacker mentality and wanted to build something fun and useful while geeking out with electronics and software.

On the hardware side, he started with an Arduino, then added a GPS module for location detection and a GMS/GPRS module for the data uplink to his server over AT&T’s network. The Arduino uses several libraries and plenty of custom code. On the server, he worked up some wizardry with open-source packages and the Google Maps API. All of the source code and hardware details are well-documented. Put together, it’s a GPS tracker that can update a map in real-time. Sure, there are commercial products that do roughly the same thing, but where’s the fun in that? The principles here can also be put to good use in other microcontroller-based projects.

knex_plotter

K’nex Whiteboard Plotter

[Jerry] has been wanting to put together a whiteboard plotter for some time and just recently got around to building one.

The plotter draws pretty much about anything he can imagine on a white board measuring just shy of 2′ x 3′. The design first started off with a Basic Stamp board at the helm, which he sourced from another project he no longer had any use for. The Stamp worked for awhile, but eventually he ran into problems due to the board’s limited 128 bytes of program space. Needing a more robust micro controller, he switched to an Arduino mid-project, which he says runs the plotter far faster than the Stamp ever did.

The plotter uses a pair of stepper motors mounted on a horizontal platform situated above the whiteboard. Much like this large-format printer we featured earlier this week, the steppers vary the length of a pair of fishing lines, moving the pen precisely across the board.  As you can see in the image above, [Jerry] has been able to create some pretty intricate patterns with his plotter, and we imagine they will only get better with more refinement.

Be sure to check out his site for more details on his build process as well as several additional samples of the plotter’s capabilities.

Haptic GPS Sneakers For The Visually Impaired

gps_haptic_shoe

The world can be a pretty difficult place to navigate when you lack the ability to see it. There are many visually impaired people across the globe, with some figures claiming up to 40 million individuals affected. While walking canes and seeing-eye dogs can be a huge help, [Anirudh] of Multimodal Interactions Group, HP Labs India, and some students at the College of Engineering in Pune, India (COEP) have been hard at work constructing a haptic navigation system for the blind.

[Anirudh Sharma and Dushyant Mehta] debuted their haptic feedback shoe design during an MIT Media Lab Workshop hosted at COEP. In its current form, Google Maps and GPS data is sourced from an Android device, which is fed to an Arduino via Bluetooth. The Arduino then activates one of four LEDs mounted on a shoe insert that are used to indicate which direction the individual should travel in order to safely reach their destination. While the current iteration uses LEDs, they will be swapped out for small vibrating motors in the final build.

We’re always fans of assistive technology hacks, and we think this one is great. The concept works well, as we have seen before, so it’s just a matter of getting this project refined and in the hands shoes of those who need it.

Stick around for a quick video about the project filmed at the MIT/COEP event.

Continue reading “Haptic GPS Sneakers For The Visually Impaired”

CNC Mill Built From Junk And Hardware Store Parts

[Csshop] is setting a new bar for building an inexpensive CNC mill. Not only did he complete his build at a very low cost, but it seems to work quite well too. Check out the video after the break to see the device cut out thin wood parts for a toy plane.

The majority of the build uses scrap wood for the body of the mill. The business end of the device is a flexible rotary attachment for a Dremel tool which takes a lot of the weight and bulk out of the gantry assembly. Old flat bed scanners were gutted for the precision ground rod and bearings, as well as the three stepper motors used to drive the axes. An Arduino board controls the device, commanding the stepper motors via EasyDriver boards.

Once the hardware is assembled there’s still a fair amount of work to do. [Csshop] builds his designs in Google Sketchup, but some conversion is necessary to arrive at code that the Arduino will understand. He’s got a second project write-up that covers the software side of things.

Continue reading “CNC Mill Built From Junk And Hardware Store Parts”

Dynamic DNS Updating – No PC Required

arduino_ddns

[Boris] from Open Electronics recently wrote us to share their latest creation. Like many of us, he uses DynDNS to keep his home network a FQDN’s reach away. While DynDNS is quite a convenient service, many people don’t like the idea of leaving their computer on all the time to keep the IP updated. That’s where the Arduino DDNS module comes into play.

Built using a standard ATMega328 with the Arduino bootloader installed, the module periodically checks to see if the user’s IP has changed, updating the DynDNS entry as needed. The Arduino talks to the network via a WIZnet Ethernet breakout board, contacting DynDNS’ servers to check and update the user’s IP over a series of standard HTTP requests.

We are aware that several router firmware packages such as DD-WRT have this functionality built-in, but this project makes for a nice alternative when those resources are not available.

As always, a bill of materials, PCB layouts, and Arduino Sketch code are all available for download over at the Open Electronics site.