From f24b80238f825c6c896ce6039cc2ab8aa1572db4 Mon Sep 17 00:00:00 2001 From: byun Date: Sun, 5 Oct 2025 07:10:14 +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) 를 설정할 수 있게 하고 여러 신호들을 조합으로 송신할 수 있게, 그리고 특정 시간마다 송신할 수 있게 기능을 추가 할 수 있어? 해당페이지는 차후 수정이 용이하게 파일도 추가했으면 좋겠어 --- transmit.h | 446 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 446 insertions(+) create mode 100644 transmit.h diff --git a/transmit.h b/transmit.h new file mode 100644 index 0000000..bb1659a --- /dev/null +++ b/transmit.h @@ -0,0 +1,446 @@ +#ifndef TRANSMIT_H +#define TRANSMIT_H + +const char transmit_html[] PROGMEM = R"rawliteral( + + + + + + CAN Transmitter + + + +
+
+

📡 CAN Transmitter

+

Send CAN Messages

+
+ + + +
+
+ 🔴 Disconnected + Sent: 0 messages +
+ +

➕ Add CAN Message

+
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ +
+ +
+ + + + + + + + +
+
+ +
+ + +
+
+ +

📋 Message List

+
+ + + +
+ +
+

No messages added yet

+
+
+
+ + + + +)rawliteral"; + +#endif \ No newline at end of file