Compare commits

..

3 Commits

Author SHA1 Message Date
42ea4d08fe Good version 2026-02-28 15:46:39 +00:00
48f0ab881d Move mouse 2026-02-28 15:45:09 +00:00
Serge NOEL
08370809e1 Creation et modification svg 2026-02-27 14:00:02 +01:00
4 changed files with 16 additions and 9 deletions

View File

@@ -61,8 +61,11 @@
<text x="141.847" y="197.573" font-size="14" text-anchor="middle" dominant-baseline="middle" fill="#FFF" transform="rotate(90 141.847 197.573)">180</text>
<text x="111.000" y="187.550" font-size="14" text-anchor="middle" dominant-baseline="middle" fill="#FFF" transform="rotate(90 111.000 187.550)">200</text>
</g>
<line id="needle" x1="150" y1="120" x2="150" y2="70" stroke="#e74c3c" stroke-width="6" stroke-linecap="round" />
<rect x="100" y="172" width="94" height="24" rx="4" ry="4" fill="#FFF" />
<text id="TotalKm" x="190" y="190" font-size="20" text-anchor="end" fill="#AAA">0.0</text>
<text x="130" y="90" font-size="20" fill="#DDD">Km/h</text>
<line id="needle" x1="150" y1="120" x2="150" y2="70" stroke="#e74c3c" stroke-width="6" stroke-linecap="round" />
</svg>
</div>
<div style="text-align:center; margin-top:20px;">

View File

@@ -4,12 +4,12 @@
#include "WebServer.h"
void handlePage(char *page) {
void handlePage(char *page, char *contentType) {
if (LittleFS.exists(page)) {
File file = LittleFS.open(page, "r");
if (file) {
String html = file.readString();
server.send(200, "text/html", html);
server.send(200, contentType, html);
file.close();
return;
}

View File

@@ -1,3 +1,5 @@
#include <ESP8266WebServer.h>
extern ESP8266WebServer server;
void handlePage(char *page);
void handlePage(char *page, char *contentType);

View File

@@ -6,6 +6,7 @@
#include "main.h"
#include <ESP8266WebServer.h>
#include <LittleFS.h>
#include "WebServer.h"
#define SCREEN_WIDTH 128 // OLED display width, in pixels
#define SCREEN_HEIGHT 64 // OLED display height, in pixels
@@ -45,11 +46,12 @@ void setup() {
} else {
Serial.println("[DEBUG] LittleFS mounted");
}
server.on("/", []() { handlePage("/index.html"); });
server.on("/xpressnet.html", []() { handlePage("/xpressnet.html"); });
server.on("/mouse.html", []() { handlePage("/mouse.html"); });
server.on("/js/script.js", []() { handlePage("/js/script.js"); });
server.on("/css/style.css", []() { handlePage("/css/style.css"); });
server.on("/", []() { handlePage("/index.html", "text/html"); });
server.on("/xpressnet.html", []() { handlePage("/xpressnet.html", "text/html"); });
server.on("/mouse.html", []() { handlePage("/mouse.html", "text/html"); });
server.on("/js/mouse.js", []() { handlePage("/js/mouse.js", "application/javascript"); });
server.on("/css/style.css", []() { handlePage("/css/style.css", "text/css"); });
server.on("/img/Speed.png", []() { handlePage("/img/Speed.png", "image/png"); });
server.begin();
Serial.println("[DEBUG] Web server started");
}