This is the Revision A version of the Out10 RoboBrick. The status of this project is that it has been replaced by the InOut10 RoboBrick.

Out10 Robobrick (Revision A)

Table of Contents

This document is also available in PDF format.

1. Introduction

The Out10 RoboBrick provides the ability to output 10 bits of data.

A picture of an Out10-A RoboBrick is shown below:
Out10-A RoboBrick Picture

2. Programming

The Out10 RoboBrick supports the standard shared commands in addition to the following commands:

Command Send/Receive Byte Value Discussion
7 6 5 4 3 2 1 0
Write Lower Send 0 0 0 f g h i j Write fghij out to the lower 5 bits.
Write Upper Send 0 0 1 a b c d e Write abcde out to the upper 5 bits.
Bit Clear Send 0 1 0 0 b b b b Turn bit bbbb off.
MSB (bbbb=1010) LSB (bbbb=0000)
Bit Set Send 0 1 0 1 b b b b Turn bit bbbb on.
Bit Toggle Send 0 1 1 0 b b b b Toggle bit bbbb.
Bit Read Send 0 1 1 1 b b b b Read status of bit bbbb.
Receive 0 0 0 0 0 0 0 b Bit state is b.
Read All Send 1 0 0 0 0 0 0 0 Read all ten bits.
Receive 0 0 0 a b c d e Upper five bits abcde
Receive 0 0 0 f g h i j Lower five bits fghij
Read Lower Send 1 0 0 0 0 0 0 1 Read lower five bits.
Receive 0 0 0 f g h i j Lower five bits are fghij
Read Upper Send 1 0 0 0 0 0 1 0 Read upper five bits.
Receive 0 0 0 a b c d e Upper five bits are abcde
Increment Bits Send 1 0 0 1 b b b b Increment bits starting at bit bbbb
Decrement Bits Send 1 0 1 0 b b b b Decrement bits starting at bit bbbb
Shared Commands Send 1 1 1 1 1 a b c Send shared command abc to RoboBrick.

3. Hardware

The hardware consists of a circuit schematic and a printed circuit board.

3.1 Circuit Schematic

The schematic for the Out10 RoboBrick is shown below:

Out10 Schematic

The parts list kept in a separate file -- out10.ptl.

3.2 Printed Circuit Board

The printed circuit files are listed below:

out10_back.png
The solder side layer.
out10_front.png
The component side layer.
out10_artwork.png
The artwork layer.
out10.gbl
The RS-274X "Gerber" back (solder side) layer.
out10.gtl
The RS-274X "Gerber" top (component side) layer.
out10.gal
The RS-274X "Gerber" artwork layer.
out10.drl
The "Excellon" NC drill file.
out10.tol
The "Excellon" tool rack file.

4. Software

The Out10 software is available as one of:

out10.ucl
The µCL source file.
out10.asm
The resulting human readable PIC assembly file.
out10.lst
The resulting human readable PIC listing file.
out10.hex
The resulting Intel® Hex file that can be fed into a PIC12C5xx programmer.

The Out10 test suite is available as one of:

out10_test.ucl
The µCL source file.
out10_test.asm
The resulting human readable PIC assembly file.
out10_test.lst
The resulting human readable PIC listing file.
out10_test.hex
The resulting Intel® Hex file that can be fed into a PIC16F84 programmer.

5. Issues

The following issues came up:


Copyright (c) 2000-2002 by Wayne C. Gramlich. All rights reserved.