Category Archives // Arduino

We’ve been using a Nokia Internet tablet, an Arduino board, and Flash for some rapid prototyping fun (read more here).  We’ve learned some interesting tidbits about the Nokia tablets as prototyping platforms:

  1. How to prevent the tablet from dimming the screen or entering sleep mode
  2. How to hack your own buttons onto the nav controller (up, down, left, right, enter) (770 only)
  3. How to disable all of the hard buttons to prevent accidental use (770 only).
  4. Creating snap-dome hard keys for prototyping small devices with physical buttons.
  5. Application Instructions (Connecting as root, SSH, SCP, changing passwords)
  6. ROM Tool instructions (Flash the ROM, R&D mode, USB Host Mode, new Kernel)

(more…)

Timer1 is an AVR and Arduino compatible software library for the ATmega168 microcontroller. It provides a user friendly interface for taking advantage of two commonly used features of an on-chip hardware timer:

  • pulse width modulated analog voltage
  • timer overflow interrupt handling. 

Initially this library was built to address the fact that Arduino’s analogWrite() function does not provide a mechanism to change the period or frequency of any of the timers which drive hardware based pulse width modulation, but it has since grown to accommodate the interrupt handling features as they are related and just downright useful.

Some of the things we have used the library for on projects in house include:

  • CPU independent servo control
  • Frequency generation in the audible range (digital synthesis)
  • Integrated hardware / software PWM control for independently variable analog voltages on 12 pins simultaneously (4x RGB leds)

You can download the library and learn much more about the project by visiting our page on the Arduino Playground at: http://www.arduino.cc/playground/Code/Timer1