|
发表于: 28-02-2018 18:27:15
|
显示全部楼层
If you don't care accessing the device by serial port directly, you can do this thing as following:
Send a command in ASCII: "Get Meter Data", then wait for about 20ms, and it will reply you with a struct, and it's defined as following:
typedef struct {
float Voltage;
float Current;
float Power;
float VoltageDP;
float VoltageDM;
}USBMeterStruct;
I think you know what to do next  |
|