Atten PPS3203T-3S
Status | planned |
---|---|
Channels | 3 |
Voltage/current (CH1) | 0-32V / 0-3A |
Voltage/current (CH2) | 0-32V / 0-3A |
Voltage/current (CH3) | 0-6V / 0-3A |
Connectivity | USB, RS232, GPIB (optional) |
Website | atten.eu |
The Atten PPS3203T-3S is a 3-channel programmable power supply (2x 0-32V, 1x 0-6V at 0-3A) with USB and RS232 connectivity.
See Atten PPS3203T-3S/Info for more details (such as lsusb -v output) about the device.
This device is also sold as the Tenma 72-8795 by Farnell/Newark.
Hardware
TODO
Photos
TODO
Protocol
Communication to/from the device is via the RS232 port or serial-USB port. The serial parameters on the device are by default set to 9600 baud, and "data" set to 9.
Every communication to and from the device occurs in 24-byte packets. The device sends a packet only when it receives one from the host. Values such as voltage and current, when set by the host, contain the current values as shown on the display when received from the device. There is thus no way to receive the set values back from the device.
The 24-byte packet is structured as follows:
Byte | Description |
---|---|
0 | Always 0xaa |
1 | Always 0x20 |
2-3 | Channel 1 voltage multiplied by 100, big-endian |
4-5 | Channel 1 current multiplied by 1000, big-endian |
6-7 | Channel 2 voltage multiplied by 100, big-endian |
8-9 | Channel 2 current multiplied by 1000, big-endian |
10-11 | Channel 3 voltage multiplied by 100, big-endian |
12-13 | Channel 3 current multiplied by 1000, big-endian |
14 | Always 0x01 |
15 | Output enable: bit 0 = channel 1, bit 1 = channel 2, bit 2 = channel 3 |
16 | Always 0x01 |
17 | Inexplicably used to store the vendor software's language choice. 0 = English, 1 = Chinese |
18 | Over current protection (OCP): 0 = OCP off, 1 = OCP on |
19 | Channel output mode: 1=independent (default), 2=series, 3=parallel |
20-22 | Always 0x00 |
23 | Checksum of all 23 preceding bytes ANDed by 0xff. The checksum is calculated by both the vendor software and device firmware. However, both ignore it entirely when receiving it. |