";
break;
case TEST_ALL_COLORS:
- content += "RAINBOW";
+ content += "RGB Testing loop";
break;
default:
break;
}
// Display ssid of network connected to and, if connected to the WiFi, its own IP
content += "
SSID: " + String(ssid) + "
";
- content += "
status: " + wifi_state + "
";
+ content += "
Wifi status: " + wifi_state + "
";
if (wifi_connected == true) {
content += "
IP: " + WiFi.localIP().toString() + "
";
}
+ // Close the block
+ content += "
";
+
+ // Start a new block with a specific background color
+ content += "
";
+
+ // Display which components are used
+ content += "
Inverter protocol: ";
+#ifdef BYD_CAN
+ content += "BYD Battery-Box Premium HVS over CAN Bus";
+#endif
+#ifdef BYD_MODBUS
+ content += "BYD 11kWh HVM battery over Modbus RTU";
+#endif
+#ifdef LUNA2000_MODBUS
+ content += "Luna2000 battery over Modbus RTU";
+#endif
+#ifdef PYLON_CAN
+ content += "Pylontech battery over CAN bus";
+#endif
+#ifdef SMA_CAN
+ content += "BYD Battery-Box H 8.9kWh, 7 mod over CAN bus";
+#endif
+#ifdef SOFAR_CAN
+ content += "Sofar Energy Storage Inverter High Voltage BMS General Protocol (Extended Frame) over CAN bus";
+#endif
+#ifdef SOLAX_CAN
+ content += "SolaX Triple Power LFP over CAN bus";
+#endif
+ content += "