Skip to content

D/A & A/D Converter v1.0

Digital to Analog Converter

Changed to 4 combiners:

GV Combine
1 to 4 Converter
GV Combine
2 to 8 Converter
GV Combine
4 to 16 Converter
GV Combine
8 to 32 Converter
The image of GV Combine 1 to 4 ConverterThe image of GV Combine 2 to 8 ConverterThe image of GV Combine 4 to 16 ConverterThe image of GV Combine 8 to 32 Converter
The converter takes the lowest n bits of each input, and combines them in order, finally outputs the result at the back. For example:
DirectionBaseLeftBottomRightTop
Input VoltageHex0x444444440x333333330x222222220x11111111
The Lowest 1 BitBin0101
The Result of Combine 1 to 4Bin0101
Hex0x5
The Lowest 2 BitsBin00111001
The Result of Combine 2 to 8Bin0011 1001
Hex0x39
The Lowest 4 BitsBin0100001100100001
The Result of Combine 4 to 16Bin0100 0011 0010 0001
Hex0x4321
The Lowest 8 BitsBin0100 01000011 00110010 00100001 0001
The Result of Combine 8 to 32Bin0100 0100 0011 0011 0010 0010 0001 0001
Hex0x44332211

Analog to Digital Converter

In the same way, changed to 4 splitters:

GV Split 4 to
1 Converter
GV Split 8 to
2 Converter
GV Split 16 to
4 Converter
GV Split 32 to
8 Converter
The image of GV Split 4 to 1 ConverterThe image of GV Split 8 to 2 ConverterThe image of GV Split 16 to 4 ConverterThe image of GV Split 32 to 8 Converter

Before splitting, the converter takes the lowest n bits of each input, and outputs the split result in order. For example, if the back input is 0x12345678 V:

DirectionBaseLeftBottomRightTop
Whole 32 bitsBin0001 0010 0011 0100 0101 0110 0111 1000
The Result of Split 32 to 8Bin0001 00100011 01000101 01100111 1000
Hex12345678
The Lowest 16 bitsBin0101 0110 0111 1000
The Result of Split 16 to 4Bin0101011001111000
Hex5678
The Lowest 8 bitsBin0111 1000
The Result of Split 8 to 2Bin01111000
Hex1320
The Lowest 4 bitsBin1000
The Result of Split 4 to 1Bin1000