Latest Story

Using Raspberry Pi’s serial port as a console

11/05/2012

The Raspberry Pi has a built in UART. This can be use as a serial port console. To connect to laptop a 3.3v FTDI breakout board is used.

Read more »

Remote VNC and SSH to your Raspberry Pi from a Mac

06/05/2012

This article will show you how to setup your Raspberry for remote SSH and VNC control.

Read more »

Faster IO on the Arduino

10/11/2011

This article will show you how to control the Arduino IO pins faster, a lot faster.

We all know we can use the digitalWrite() command to set an IO pin high or low. Before we do any mods lets do some measurement to see how long it takes.

With a simple sketch to output a square wave on digital pin 2.

int outPin = 2; // Use digital pin 2 as output
void setup()
{
  pinMode(outPin, OUTPUT);      // sets the digital pin as output
}

void loop()
{
  digitalWrite(outPin, HIGH);   // sets output high
  digitalWrite(outPin, LOW);    // sets output low
}

To measure the time it takes to set the output pin high then low,  we’re going to use a Saleae Logic Analyzer.

Output waveform of Digital pin 2 using digitalWrite().

Read more »

mbed Dev Board Serial LCD – Hello World

12/07/2011

This is a simple Hello World program using a serial LCD on the mbed Dev Board.

Read more »

Laser Cut Acrylic Case for Gameduino

06/07/2011

This is laser cut acrylic case for the Gameduino board.

 

Read more »

Temperature Sensing with DS18S20

07/06/2011

Temperature Sensing with Dallas DS18S20 1-wire device.

Read more »