Renamed/split some files but forgot to add them

This commit is contained in:
Jeroen Domburg
2014-10-14 21:07:24 +02:00
parent aef27aaa5b
commit c71ec70334
10 changed files with 504 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

+19
View File
@@ -0,0 +1,19 @@
<html>
<head><title>Esp8266 web server</title></head>
<body>
<h1>it Works</h1>
<p>
If you see this, it means the tiny li'l website in your ESP8266 does actually work.
<ul>
<li>If you haven't connected this device to your WLAN network now, you can <a href="/wifi">do so.</a></li>
<li>You can also control the <a href="led.tpl">LED</a>.</li>
<li>And because I can, here's a link to my <a href="http://spritesmods.com/">website</a></ul>
</ul>
</p>
<p>And because we're on the Internets now, here are the required pictures of some cats:<br />
<img src="cats/cross-eyed-cat.jpg"><br />
<img src="cats/junge-katze-iv.jpg"><br />
<img src="cats/kitten-loves-toy.jpg"><br />
</p>
</body></html>
+12
View File
@@ -0,0 +1,12 @@
<html><head><title>Test</title></head>
<body>
<p>
If there's a LED connected to GPIO2, it's now %ledstate%. You can change that using the buttons below.
</p>
<form method="post" action="led.cgi">
<input type="submit" name="led" value="1">
<input type="submit" name="led" value="0">
</form>
</body></html>