Barcode Scanner

Hey thanks for responding...

Yes, I have tried to configure the scanner as you suggest but had no luck.
I've added code to the PS2Keyboard library to view the incomming resposes:

"In Part from: PS2Keyboard.ccp"

static char get_iso8859_code(void)
{
static uint8_t state=0;
uint8_t s;
char c;

while (1) {
s = get_scan_code();

if (!s) return 0;

Serial << "c: " << _HEX(s) << endl;
...
Result was:
c: 16
c: F0
c: 16
c: 8A
c: E0
c: 8A
c: 15
c: C1
c: 15
c: 2B
c: 82
c: 2B
c: E6
c: 6
c: E7
c: AE
c: 8
c: AF
c: 58
c: 11
c: 5F
c: 31
c: 31
c: 3F
c: 71
c: 6B
c: 7E

The scanner works fine, as does the sysbol, when connected to a
computers PS/2 connector. Just can't make heads or tails out of the
Metrologic response...

Any Ideas, When connected to the PC I made shure to scan the
factory default configuration scan code first. Then once it worked
connected to the 328 UNO board...

Maybe the key map is different somehow???
Thx!