Skip to content

Commit 80ff31c

Browse files
Copilotdorkmo
andcommitted
Update Hologram server calibration message to reference BluesOpta version
Co-authored-by: dorkmo <[email protected]>
1 parent d5dd618 commit 80ff31c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

TankAlarm-092025-Server-Hologram/TankAlarm-092025-Server-Hologram.ino

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1255,13 +1255,14 @@ void sendHttpResponse(EthernetClient &client, String path) {
12551255
} else if (path == "/emails") {
12561256
sendEmailManagementPage(client);
12571257
} else if (path == "/calibration") {
1258-
// Calibration page removed for simplification - send proper HTTP response
1258+
// Calibration learning system is available in the BluesOpta server version
12591259
client.println("HTTP/1.1 200 OK");
12601260
client.println("Content-Type: text/html");
12611261
client.println("Connection: close");
12621262
client.println();
1263-
client.println("<html><body><h1>Calibration Feature Removed</h1>");
1264-
client.println("<p>The calibration feature has been removed for simplification.</p>");
1263+
client.println("<html><body><h1>Calibration Learning System</h1>");
1264+
client.println("<p>The calibration learning system is available in the TankAlarm-112025-Server-BluesOpta version.</p>");
1265+
client.println("<p>This feature allows operators to enter manual tank level readings and automatically improves sensor accuracy over time using linear regression.</p>");
12651266
client.println("<p><a href='/'>Back to Dashboard</a></p></body></html>");
12661267
} else {
12671268
send404Page(client);

0 commit comments

Comments
 (0)