Difference between revisions of "Digital Logic Toolbox"

From NeatTools
Line 1: Line 1:
 
==Not==
 
==Not==
[[File:not.gif]]Logical Negate (bitwise).
+
[[File:not.gif]] Logical Negate (bitwise).
 
==And==
 
==And==
[[File:and.gif]]Logical And.
+
[[File:and.gif]] Logical And.
 
==Or==
 
==Or==
[[File:or.gif]]Logical Or.
+
[[File:or.gif]] Logical Or.
 
==Exclusive Or==
 
==Exclusive Or==
[[File:xor.gif]]Logical Xor.
+
[[File:xor.gif]] Logical Xor.
 
==Integer Greater Than==
 
==Integer Greater Than==
[[File:greater.gif]]Greater than for use with integers.
+
[[File:greater.gif]] Greater than for use with integers.
 
==Integer Greater Than or Equal==
 
==Integer Greater Than or Equal==
[[File:greaterequal.gif]]Greater than or equal for use with integers.
+
[[File:greaterequal.gif]] Greater than or equal for use with integers.
 
==Integer Equal==
 
==Integer Equal==
[[File:equal.gif]]Equal for use with integers.
+
[[File:equal.gif]] Equal for use with integers.
 
==Integer Not Equal==
 
==Integer Not Equal==
[[File:notequal.gif]]Not Equal for use with integers.
+
[[File:notequal.gif]] Not Equal for use with integers.
 
==Integer Add==
 
==Integer Add==
[[File:add.gif]]Addition for use with integers.
+
[[File:add.gif]] Addition for use with integers.
 
==Integer Multiply==
 
==Integer Multiply==
[[File:multiply.gif]]Multiplication for use with integers.
+
[[File:multiply.gif]] Multiplication for use with integers.
 
==Integer Subtract==
 
==Integer Subtract==
[[File:subtract.gif]]Subtraction for use with integers.
+
[[File:subtract.gif]] Subtraction for use with integers.
 
==Integer Divide==
 
==Integer Divide==
[[File:divide.gif]]Division for use with integers.
+
[[File:divide.gif]] Division for use with integers.
 
==Integer Absolute Value==
 
==Integer Absolute Value==
[[File:absvalue.gif]]Calculates absolute value.
+
[[File:absvalue.gif]] Calculates absolute value.
 
==Integer Power==
 
==Integer Power==
[[File:power.gif]]Raises integer to a power.
+
[[File:power.gif]] Raises integer to a power.
 
==Integer Maximum==
 
==Integer Maximum==
Outputs the maximum integer value.
+
[[File:max.gif]] Outputs the maximum integer value.
 
==Integer Minimum==
 
==Integer Minimum==
Outputs the minimum integer value.
+
[[File:min.gif]] Outputs the minimum integer value.
 
==Integer Percent==
 
==Integer Percent==
Calculates remainder (for use with integers).
+
[[File:percent.gif]] Calculates remainder (for use with integers).
 
==Integer Random==
 
==Integer Random==
Generates a random integer value.
+
[[File:random.gif]] Generates a random integer value.
 
==Control==
 
==Control==
Opens and closes a switch.
+
[[File:control.gif]] Opens and closes a switch.
 
==Sample==
 
==Sample==
Sample input values on demand.
+
[[File:sample.gif]] Sample input values on demand.
 
==Pulse==
 
==Pulse==
Event production shaped pulse.
+
[[File:pulse.gif]] Event production shaped pulse.
 
==Delay==
 
==Delay==
Delays sending current value until next event is received.
+
[[File:delay.gif]] Delays sending current value until next event is received.
 
==Accumulator==
 
==Accumulator==
Counts events.
+
[[File:accumulate.gif]] Counts events.
 
==Multiplexer==
 
==Multiplexer==
Selects on input to be current output.
+
[[File:mux.gif]] Selects on input to be current output.
 
==DeMultiplexer==
 
==DeMultiplexer==
Sends signal input to selected output.
+
[[File:demux.gif]] Sends signal input to selected output.
 
==Encoder==
 
==Encoder==
Converts bytes to integers.
+
[[File:encode.gif]] Converts bytes to integers.
 
==Decoder==
 
==Decoder==
Converts the byte values of integers.
+
[[File:decode.gif]] Converts the byte values of integers.
 
==Exclusive==
 
==Exclusive==
For radio button.
+
[[File:exclusive.gif]] For radio button.
 
==Clock Divider==
 
==Clock Divider==
Cycling clock.
+
[[File:clockdivide.gif]] Cycling clock.
 
==Time==
 
==Time==
Provides current time (use with date module).
+
[[File:time.gif]] Provides current time (use with date module).
 
==High Performance Counter==
 
==High Performance Counter==
For fast timing.
+
[[File:HPC.gif]] For fast timing.
 
==Calibrate==
 
==Calibrate==
Accommodates signal range (min to max).
+
[[File:calibrate.gif]] Accommodates signal range (min to max).
 
==Average Filter==
 
==Average Filter==
Running average.
+
[[File:average.gif]] Running average.
 
==Delay Sustain==
 
==Delay Sustain==
For use with musical modules.
+
[[File:delaysustain.gif]] For use with musical modules.
 
==State Object==
 
==State Object==
State machine element (advanced).
+
[[File:state.gif]] State machine element (advanced).
 
==Timers==
 
==Timers==
Activates at regular specified time intervals.
+
[[File:timer.gif]] Activates at regular specified time intervals.

Revision as of 09:38, 19 January 2010

Not

Not.gif Logical Negate (bitwise).

And

And.gif Logical And.

Or

Or.gif Logical Or.

Exclusive Or

Xor.gif Logical Xor.

Integer Greater Than

Greater.gif Greater than for use with integers.

Integer Greater Than or Equal

Greaterequal.gif Greater than or equal for use with integers.

Integer Equal

Equal.gif Equal for use with integers.

Integer Not Equal

Notequal.gif Not Equal for use with integers.

Integer Add

Add.gif Addition for use with integers.

Integer Multiply

Multiply.gif Multiplication for use with integers.

Integer Subtract

Subtract.gif Subtraction for use with integers.

Integer Divide

Divide.gif Division for use with integers.

Integer Absolute Value

Absvalue.gif Calculates absolute value.

Integer Power

Power.gif Raises integer to a power.

Integer Maximum

Max.gif Outputs the maximum integer value.

Integer Minimum

Min.gif Outputs the minimum integer value.

Integer Percent

Percent.gif Calculates remainder (for use with integers).

Integer Random

Random.gif Generates a random integer value.

Control

Control.gif Opens and closes a switch.

Sample

Sample.gif Sample input values on demand.

Pulse

Pulse.gif Event production shaped pulse.

Delay

Delay.gif Delays sending current value until next event is received.

Accumulator

Accumulate.gif Counts events.

Multiplexer

Mux.gif Selects on input to be current output.

DeMultiplexer

Demux.gif Sends signal input to selected output.

Encoder

Encode.gif Converts bytes to integers.

Decoder

Decode.gif Converts the byte values of integers.

Exclusive

Exclusive.gif For radio button.

Clock Divider

Clockdivide.gif Cycling clock.

Time

Time.gif Provides current time (use with date module).

High Performance Counter

HPC.gif For fast timing.

Calibrate

Calibrate.gif Accommodates signal range (min to max).

Average Filter

Average.gif Running average.

Delay Sustain

Delaysustain.gif For use with musical modules.

State Object

State.gif State machine element (advanced).

Timers

Timer.gif Activates at regular specified time intervals.