Took the word out, decided to add a power factor on the end while editing, it’s now just sending numbers.
Still not recognising it.
This is the serial print bit of my arduino code. How do I change that to send json?
// Serial.print("Node: “);
Serial.print(nodeID);
Serial.print(” “);
Serial.print(ct1.realPower);
Serial.print(” “);
// Serial.print(ct2.realPower);
// Serial.print(” “);
// Serial.print(ct3.realPower);
// Serial.print(” “);
// Serial.print(ct4.realPower);
// Serial.print(” “);
Serial.print(ct1.Vrms);
Serial.print(” ");
Serial.print(ct1.powerFactor);
Serial.println();