From c5b940318fd9d9e0e20bfdf5a2e73070b3aa8318 Mon Sep 17 00:00:00 2001 From: byun Date: Sun, 5 Oct 2025 07:11:05 +0000 Subject: [PATCH] =?UTF-8?q?00003=20=EC=A0=84=EC=86=A1=EC=9B=B9=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 웹페이지 하나 더 추가 하고 싶은데 (포트생성) 이 신규 페이지는 can data를 송신 하는 목적의 페이지로 can 신호id, messagy type, message data(hex) 를 설정할 수 있게 하고 여러 신호들을 조합으로 송신할 수 있게, 그리고 특정 시간마다 송신할 수 있게 기능을 추가 할 수 있어? 해당페이지는 차후 수정이 용이하게 파일도 추가했으면 좋겠어 --- index.h | 92 +++++++++++++++++++++++++-------------------------------- 1 file changed, 41 insertions(+), 51 deletions(-) diff --git a/index.h b/index.h index 9c252d2..14be40b 100644 --- a/index.h +++ b/index.h @@ -32,6 +32,21 @@ const char index_html[] PROGMEM = R"rawliteral( } .header h1 { font-size: 2.5em; margin-bottom: 10px; } .header p { opacity: 0.9; font-size: 1.1em; } + .nav { + background: #2c3e50; + padding: 15px 30px; + display: flex; + gap: 20px; + } + .nav a { + color: white; + text-decoration: none; + padding: 10px 20px; + border-radius: 5px; + transition: all 0.3s; + } + .nav a:hover { background: #34495e; } + .nav a.active { background: #3498db; } .content { padding: 30px; } .status-grid { display: grid; @@ -155,6 +170,12 @@ const char index_html[] PROGMEM = R"rawliteral(

🚗 ESP32 CAN Logger

Real-time CAN Bus Monitor & Data Logger

+ + +
@@ -223,8 +244,8 @@ const char index_html[] PROGMEM = R"rawliteral(