first commit

This commit is contained in:
编码猿
2024-09-27 01:22:07 +08:00
commit 1360daaab0
931 changed files with 131068 additions and 0 deletions

View File

@@ -0,0 +1 @@
8fd89742-7fa9-406e-88af-5b777aaedf96

View File

@@ -0,0 +1 @@
843e65e3-1a68-48c7-b2a0-6b4bcf27034d

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

View File

@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="main.css">
<title>太极创客-零基础入门学用物联网教程</title>
</head>
<body>
<center>
<a href="http://www.taichi-maker.com" target="_blank"><img src="/img/taichi-maker.jpg" alt="太极创客"></a>
<h1>ESP8266 SPIFFS 文件上传</h1>
<p>此页面用于演示如何通过浏览器向ESP8266开发板的SPIFFS上传文件。</p>
<p></p>
<p>本教程可在太极创客网站免费获取。太极创客网址: <a href="http://www.taichi-maker.com">www.taichi-maker.com</a> .
<p> <a href="/upload.html">点击此处进入文件上传页面</a> </p>
</center>
</body>
</html>

View File

@@ -0,0 +1,4 @@
body {
font-family: sans-serif;
color: #444;
}

View File

@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="main.css">
<title>太极创客-零基础入门学用物联网教程</title>
</head>
<body>
<a href="http://www.taichi-maker.com" target="_blank"><img src="/img/taichi-maker.jpg" alt="太极创客"></a>
<h1>ESP8266 SPIFFS 文件上传成功</h1>
<p><a href="/">返回首页</a></p>
</body>
</html>

View File

@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="main.css">
<title>太极创客-零基础入门学用物联网教程</title>
</head>
<body>
<center>
<a href="http://www.taichi-maker.com" target="_blank"><img src="/img/taichi-maker.jpg" alt="太极创客"></a>
<h1>ESP8266 SPIFFS 文件上传</h1>
<p>点击按钮选择需要上传的文件</p>
<form method="POST" enctype="multipart/form-data">
<input type="file" name="data">
<input class="button" type="submit" value="上传">
</form>
</center>
</body>
</html>