Monthly Archives: March 2014

[TUTORIAL] Interrupt Driven TWI Interface for AVR (Part 1: MT/MR)


Hello Everyone, I bring to you a tutorial on how the AVR TWI module operates. This is part 1 of the tutorial and deals with Master Transmitter and Master Receiver mode. Stay tuned for part 2 which will build on this to add Slave Receiver and Slave Transmitter functionality.

I2C (Inter Integrated Circuit) or TWI (Two Wire Interface) is a half duplex serial two wire interface for interconnecting low to medium speed peripherals. It uses two open drain signal lines, Serial Data (SDA) and Serial Clock (SCL). As these are open drain lines the device may sink however it cannot drive a line high. In order to allow for high signals the lines must be pulled high using a pull-up resistor. The bus drivers of all TWI compliant devices are open drain and this is essential to the operation of the interface.
TWI is a master/slave protocol. Multiple masters are allowed however only one device may be master at any one time.

The ATMEGA and ATTINY range of ATMEL MCU’s (along with the majority of other ATMEL MCU’s) have a dedicated TWI bus interface which takes care of START/STOP conditions, SCL clock, arbitration and address detection. They also have dedicated shift registers for sending and receiving data on the bus. The TWI pins also have slew rate limiting and a spike detection to remove spikes shorter than 50ns. The internal pull ups can be enabled by setting the PORT bits on the SDA and SCL pins to high.

I will first provide an overview of the TWI interface, followed by an overview of the AVR TWI hardware before I get into designing the interrupt driven TWI library.

Continue reading

RepRap Prusa i3 from MakerFarm


power HS MG1501 servoDesktop 3D printers have come a long way in the past several years. The RepRap community provides open source designs for Fused Deposition Modelling printers. This makes it possible to construct a high quality desktop 3D printer for under $1000
using only a small number of specialized parts (ie. filament extruder components).

3D printers introduce the possibility of fabricating precision parts in a timely and – most important – reliable manner. What would usually take hours to fabricate in the workshop can now be printed, still in a couple of hours, however all that need be done is draw a design in your favorite CAD program and send it off to print.

My love of mechatronics not only attracts me to the 3D printer itself, but the many possibilities for design and prototyping that it opens! For several years I have been building my RepRaps. Or I guess I should say RepStrap. I have been through a couple of Mendel variations which ended up leading me to a custom i3 design. At the end of exam period 2013 however I decided that I would go ahead and pull my existing printer apart and reassemble it into a delta design. So after printing all of the parts and being sure that I could assemble it first try – I went for it. That was a mistake. Several parts were missing and when attempting reassemble my i3 I broke a z-carriage. So now I was left with a broken printer, no spares and no printer to print a spare. Lesson learned – ALWAYS have a full set of spares – especially if you are planning on completely disassembling your printer.

Well, I print everything. So many useless robots that have a lifespan of a week before they are torn apart harvested for their components and a new one is printed. So I may aswell just bite the bullet and spend some money and get a kit, right?

After extensive research into the many RepRap designs and kits out there, I decided on the wood base Prusa i3 from MakerFarm.

Continue reading

Full 3D printed DELTA robot


Assembled DELTA robot
 This is my DELTA robot, the goal of this project is to build a DELTA robot in which all parts may be 3D printed. There is no clear end to this project – and is never likely to be one. This DELTA robot serves as a test platform to experiment with different 3D printable parts and controller designs.

Currently, the project is operational, all parts have bfeen printed and assembled. The main controller is an Atmel ATMEGA328P micro controller which interfaces
via I2C with a PCA9685 PWM controller to set servo positions. Positional data is sent to the controller via a BC417 bluetooth module.

A Windows based control program has been written in C++/CLI.

Continue reading