Deleted my original post after realizing the documentation was already attached.
I'm curious to get answers to pfletch101's questions. Specifically #2: the format of the raw data coming out of TED PRO.
I get this for the first few rows of CSV second data (looks correct):
MTU, Time, Power, Cost, Voltage
MTU1,06/25/2014 09:16:00,1.312,0.14,119.7
MTU1,06/25/2014 09:15:59,1.312,0.14,119.7
MTU1,06/25/2014 09:15:58,1.312,0.14,119.7
MTU1,06/25/2014 09:15:57,1.308,0.14,119.7
MTU1,06/25/2014 09:15:56,1.316,0.14,119.6
And then the corresponding raw second data (might be offset by a second or 2 from CSV, but should be similar). Printed out each row as a raw string, decoded into base64 and then each byte converted to decimal. I see a 14 in there, which seems to line up with the $0.14 present in the cost column of CSV data.
pJDLqlMgBQAADgAAAK0E4A==
'\xa4\x90\xcb\xaaS \x05\x00\x00\x0e\x00\x00\x00\xad\x04\xe0'
(164, 144, 203, 170, 83, 32, 5, 0, 0, 14, 0, 0, 0, 173, 4, 224)
pI/LqlMgBQAADgAAAK0E3w==
'\xa4\x8f\xcb\xaaS \x05\x00\x00\x0e\x00\x00\x00\xad\x04\xdf'
(164, 143, 203, 170, 83, 32, 5, 0, 0, 14, 0, 0, 0, 173, 4, 223)
pI7LqlMgBQAADgAAAK0E3g==
'\xa4\x8e\xcb\xaaS \x05\x00\x00\x0e\x00\x00\x00\xad\x04\xde'
(164, 142, 203, 170, 83, 32, 5, 0, 0, 14, 0, 0, 0, 173, 4, 222)