Via Terminal Block

A screw terminal block is a convenient means to take connections from a PICAXE circuit. Wires to an output module or other circuit are inserted into the terminal block and the associated screw clamps the wire into place. Each connection to the terminal block is insulated from the others.

Related Commands:

Print Page

Share

Schematic

PCB

Control an output signal

The following program will set output B.1 high for a second every five seconds.

Code Example:
main: 	high B.1 	; Set output B.1 high
	pause 1000 	; Wait 1 second 
	low B.1 	; Set output B.1 low
	pause 5000 	; Wait 5 seconds 
	goto main 	; Loop back to start
Copy Code Submit an Example

Create Module

An output signal may be taken from the generic terminal block create module.

Bill of Materials

DescriptionCodeQty
3-way 16A Interlocking Terminal Block CON006 1 Buy Now

Simulation

No Image Selected

Submit Your Own Code!

You must be logged in to submit code examples. Login now.