I recently purchased the CT-2. It works well. I am very pleased with it.
I would like to use one PC to log data from 10 CT-2 units at the same time.
Can the KotomiApp do this?
If not, how can this be accomplished?
Can you expose a python library so that I can write my own scripts to handle the data?
For reading current & voltage, sending "Get Meter Data" in ASCII to the virtual usart port. Baudrate can be anything. It will sends you back a data packet a couple of dozens of milliseconds later, with data structure:
public class USBMeterData_t
{
[FieldOffset(0)]
public float Voltage;
[FieldOffset(4)]
public float Current;
[FieldOffset(8)]
public float Power;
[FieldOffset(12)]
public float VolatgeDP;
[FieldOffset(16)]
public float VoltageDM;
}