Difference between revisions of "LCD/Encoder backpack for Fox Board"

From OpenCircuits
Jump to navigation Jump to search
Line 27: Line 27:
 
The currently selected use for the ATTiny2313's pins:
 
The currently selected use for the ATTiny2313's pins:
  
* Pin 1: RESET/dW: I'll use the debugWire, thankyouverymuch!
+
* Pin 1: reset/dW: I'll use the debugWire, thankyouverymuch!
* Pin 2: UART RXD
+
* Pin 2: uart rx
* Pin 3: UART TXD
+
* Pin 3: uart tx
* Pin 4: Hook up to crystal 3.6864 (necessary for correct UART baudrates)
+
* Pin 4: external crystal 3.6864 (necessary for correct UART baudrates)
* Pin 5: Hook up to crystal
+
* Pin 5: external crystal
* Pin 6-7-8-9: LCD databus (in 4-bit mode)
+
* Pin 6: int0/pd2 : encoder push
* Pin 10: GND. Ashes to ashes, ground to ground. Even for electrons.
+
* Pin 7: int1/pd3 : encoder A
* Pin 11: LCD enable line.
+
* Pin 8: pd4: encoder B
* Pin 12: PINB0/PCINT0: encoder input A
+
* Pin 9: oc0b: LED backlight PWM
* Pin 13: PINB1/PCINT1: encoder input B
+
* Pin 10: gnd.
* Pin 14: PINB2/PCINT2: encoder push input
+
* Pin 11: pd6: LCD enable line.
* Pin 15: OC1A: LED backlight PWM output
+
* Pin 12: pb0: lcd d4
* Pin 16: LCD data/command line.
+
* Pin 13: pb1: lcd d5
 +
* Pin 14: pb2: lcd d6
 +
* Pin 15: pb3: lcd d7
 +
* Pin 16: pb4: lcd command/data
 
* Pin 17-18-19: ISP for programming can be reused for other communication protocols.
 
* Pin 17-18-19: ISP for programming can be reused for other communication protocols.
* Pin 20: Powah!
+
* Pin 20: vcc
  
 
Notes on this:
 
Notes on this:
* I wanted the LCD DB4-7 and E on the same port, so that E stays cleared when I write the next nibble.  
+
* This is a better setup than the previous one, since it would keep the lcd stuff on the same side (might be easier on the routing).
* The encoder inputs need to be on pins that can invoke the pin-change interrupt.
+
* I only need 1 interrupt input for the encoder, the other I can read in to read the direction.
* I don't think it's worth the trouble, but if someone wants to use it with an AT90S2313, I chose Pin 15 for the PWM output, which is the same on that device.
+
* This setup gives me two interrupt vectors, one for the encoder push and the other for the encoder A. This makes programming a bit easier.
 +
* The lcd enable line needs to be toggled, but the command/data bit is written together with the data.
 +
* The downside is that the PWM is not available on the older AT90S2313, so you'll lose "lcd intensity control" on that one. Not that important.
 
* I wanted to keep the dW and ISP pins free.
 
* I wanted to keep the dW and ISP pins free.
 
* I need the crystal for correct baud rates.
 
* I need the crystal for correct baud rates.
 
Things I'm pondering:
 
* I have both 3.3V and 5V available on the Fox Board headers. Would the LCD respond to 3.3V on its inputs when powered from the 5V?
 
** Of course it does. It's been working like that since day one.
 
* I still have no clue what sort of driver to use to power the backlight. Would a simple transistor do?
 
  
 
== Current state ==
 
== Current state ==

Revision as of 03:24, 6 January 2008

Introduction

This is a project that I'm working on at the moment, as a learning tool for other projects in the future. The project aims to develop a small board that acts as a backpack for an LCD and a push encoder to provide a UI for a master system. Communications from/to the device would be over TTL level asynchronous serial. The central component is to be an Atmel ATTiny2313.

Goals

My first target will be the STK500. This will easy development and debugging. I'll hook everything up with those nifty prototyping wires from SparkFun.

Then I'm going to wire it up on a breadboard. I think.

The next targeted master system would be the Fox Board, because I have it readily available. I've been able to get various LC displays working on the Fox Board, but it's pretty clumsy (using these prototyping wires. they're fun, but clumsy). I'm also experimenting with some VFD displays that I was able to obtain. They suck power, but look pretty cool. I will then wire it up using one of their prototyping daughter boards. They are very nice and easy to solder with.

The next target will be a custom board. This board should be mountable behind the LCD with a bit of flexibility. The encoder and the communications would be on a separate header. I'll design it with room for both 16-pin SIL header and 16-pin DIL header for the different types of LCDs that I have. Oh and I want to drive the LCD backlight with a PWM output so that I can "fade" the backlight in and out. I'm keeping the SPI pins available for programming, so you're welcome customize the firmware to use 1-wire, 2-wire or 3-wire interfacing.

Except for the PWM output, the schematic looks like it's compatible with the older AT90S2313. Using surface mount components, you probably wouldn't want to bother trying to find them. If you do, you won't have a PWM output to fade the backlight, but it can still be toggled by driving the pin as a simple digital output.

Motivation

Everybody and their dog has designed an LCD backpack, it seems. I'm not trying to compete with that.

My motivation for this project is the following:

  • Reduce the complexity of supporting an LCD and a push encoder input for a "bigger" master system. Creating kernel drivers to make interrupt based inputs work is such a pain. You don't want to miss one of them quadrature states!
  • Learn to design a schematic and a board. When it works, I'll open a bottle to celebrate!

Board Design Notes

The currently selected use for the ATTiny2313's pins:

  • Pin 1: reset/dW: I'll use the debugWire, thankyouverymuch!
  • Pin 2: uart rx
  • Pin 3: uart tx
  • Pin 4: external crystal 3.6864 (necessary for correct UART baudrates)
  • Pin 5: external crystal
  • Pin 6: int0/pd2 : encoder push
  • Pin 7: int1/pd3 : encoder A
  • Pin 8: pd4: encoder B
  • Pin 9: oc0b: LED backlight PWM
  • Pin 10: gnd.
  • Pin 11: pd6: LCD enable line.
  • Pin 12: pb0: lcd d4
  • Pin 13: pb1: lcd d5
  • Pin 14: pb2: lcd d6
  • Pin 15: pb3: lcd d7
  • Pin 16: pb4: lcd command/data
  • Pin 17-18-19: ISP for programming can be reused for other communication protocols.
  • Pin 20: vcc

Notes on this:

  • This is a better setup than the previous one, since it would keep the lcd stuff on the same side (might be easier on the routing).
  • I only need 1 interrupt input for the encoder, the other I can read in to read the direction.
  • This setup gives me two interrupt vectors, one for the encoder push and the other for the encoder A. This makes programming a bit easier.
  • The lcd enable line needs to be toggled, but the command/data bit is written together with the data.
  • The downside is that the PWM is not available on the older AT90S2313, so you'll lose "lcd intensity control" on that one. Not that important.
  • I wanted to keep the dW and ISP pins free.
  • I need the crystal for correct baud rates.

Current state

  • Got the prototype boards. Fumbled a bit with the soldering but got something to work and a picture to prove it:

IMG 7131 (Small).JPG

  • I'm busy designing the schermatic and the board.
  • I'm busy writing the firmware, even though my STK500 and AVR JTag MkII are still on the road.